Python operator module method lt is used to find less than value. In this post, we will learn how to use lt with example. lt can be used in place of <
ReadKotlin program to find a string in a list of strings. We will learn five different ways to solve this problem. Using a for loop, using find, first, indexOf, indexOfFirst, contains and filter.
ReadC++ program to invert all bits of a bitset variable. We will use compl keyword to invert the bits with an example.
ReadC program to check if a hexadecimal number is even or odd. We will write one c program that will check one hexadecimal number using switch case and print out the result.
ReadC program to convert decimal to hexadecimal. This program will take one number as input from the user and print out its hexadecimal value.
ReadDart program to find the remainder by taking two numbers as user inputs. We will use remainder() method of dart to find the remainder.
ReadHow to find ceil and floor values of a number in dart. ceilf of a number returns the smallest integer value that is greater than or equal to the number and floor is largest value less than or equal to the number.
ReadDart program to check if a year is leap year or not. We will write one dart program to take one year as input from the user and it will print if the year is leap year or not.
ReadLearn how to add two numbers in javascript. We will learn three different ways to add two numbers in javascript. We will learn to add two numbers using HTML and by taking user inputs.
ReadPython program to get all sublists of a list in Python. We will learn two different ways to get the sublists of a list in Python with examples for each. The program takes one list as input and prints all sublists as output.
Read