C++ program to find student grades using if-else

Learn how to find student grades using if-else in C++. The C++ program will take the marks of the students as input and print the grades.

Read

Dart check for any or every element in a list satisfy a given condition

Dart program to check if any or every element of a list satisfy a specific condition or not.

Read

3 different C++ program to find the largest of three numbers

This post will show you how to find the largest of three numbers in C++. The program will take the numbers as input from the user and print out the result.

Read

How to convert decimal to binary in C++

This post will show you how to convert decimal to binary in C++. Decimal is a base 10 and binary is a base 2 number system.

Read

How to validate an email in Kotlin in Android

Learn how to validate an email in Android(Kotlin) in different ways. We will learn how to use a regular expression, Pattern class,and extension function with examples for each.

Read

repeat in Kotlin explanation with example

repeat is used to repeat any one function for a specific amount of time in Kotlin. This post will show you how to use repeat with example.

Read

2 ways in C++ to find the sum of digits in a String

C++ program to find the sum of digits in a string in two different ways. The program will take the string as input from the user and print the sum of all digits found in that string.

Read

How to use default parameters in Kotlin constructor

Learn how to use default parameters in kotlin constructor and how to initialize a class by using default parameters.

Read

C++ program to delete a file

C++ tutorial to delete a file. This post will show you how to delete a file in C++.

Read

Example to use Numpy log2 method to find natural logarithm of an array of numbers

log2 method of Numpy is used to find out the base-2 logarithm of an array of numbers. This post will show you how to use log2 method with example.

Read