Example of python operator module lt

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 <

Read

5 different ways in Kotlin to find a string in a list of strings

Kotlin 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.

Read

C++ program to invert all bits of a bitset variable

C++ program to invert all bits of a bitset variable. We will use compl keyword to invert the bits with an example.

Read

C program to check if a Hexadecimal number is even or odd

C 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.

Read

C program to convert decimal to hexadecimal value

C program to convert decimal to hexadecimal. This program will take one number as input from the user and print out its hexadecimal value.

Read

Dart program to find the remainder using remainder method

Dart program to find the remainder by taking two numbers as user inputs. We will use remainder() method of dart to find the remainder.

Read

How to find the ceil and floor values of a number in Dart

How 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.

Read

Dart program to check if a year is leap year or not

Dart 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.

Read

JavaScript program to add two numbers - 3 different ways

Learn 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.

Read

How to get all sublists of a list in Python

Python 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