Dart tutorial : string (explanation with examples)

In dart, a string is a sequence of UTF-16 code units. To create one string variable, we can use either single quote or double quote like below :.

Read

Dart number datatype : integers and double

While creating variables, we need to define its type. For example, if it is string variable or a numerical variable. Dart also provides different datatypes. We will learn about each datatype one by one. This tutorial will explain you about Number datatype in Dart.The first thing that comes to our mind is integers if we talk about numbers. In dart, we have two types of number variables- integers and doubles.

Read

Compare two numbers using compareTo method in Dart

In this dart tutorial, we will learn how to compare two numbers using compareTo methods. We know that numbers in dart can be categorized into two types- integer and doubles. Dart has one inbuilt method compareTo to compare two different integer or double variables. We can define this method as below :.

Read

Dart tutorial : How to use Boolean in Dart

Dart comes with a 'Boolean' datatype for variables. The value of Boolean is either true or false. You cannot assign any other values to Booleans. Keyword bool is used to define a boolean variable. For example, let's take a look at the program below :.

Read

Dart 2 programming language Writing your first program (Introduction)

Dart program was initially developed by Google. It is an open source programming language. It is an object-oriented, class defined, single inheritance language.This is our first tutorial on Dart. Dart is a relatively new programming language and the cool thing about this language is that you can develop almost any type of application using Dart. You can develop Android or iOS applications (using Flutter), create a web app and create command line or server side app.Dart is easy to learn. If you are familiar with any object-oriented language, then it will not take much time to grab. Follow our tutorials and keep practicing.

Read

C program to check if a number is positive,negative or zero using macros

In this programming tutorial, we will learn how to check if a user input number is zero, negative or positive. Our program will ask the user to enter a number. Then it will check if the number is zero, positive or negative using a macro function. Let's take a look at the program first :.

Read

Java program to remove vowels from a string

In this Java programming tutorial, we will learn how to remove all vowels from a user input string. We will learn two different ways to solve this problem. The program will first ask the user to enter a string. After that it will remove all the vowels from the string using two different methods and print out the final string.

Read

Java example to find missing number in an array of sequence

In this Java programming tutorial, we will learn how to find a missing number in an array of continuous numbers.The numbers in the array will be shuffled.For example, for the numbers 1,2,3,5, we know that 4 is missing. Our program will find out this value. In the example below, we will try two different approaches - one to find out one single missing number and the second one to find out multiple missing numbers. Let's take a look at the examples below :.

Read

Java program to merge values of two integer arrays

In this Java programming tutorial, we will learn how to merge two integer arrays . The program will ask the user to enter values for the first and the second array and then it will calculate the final result by merging both the arrays. Let's take a look at the program :.

Read

Java program to find the maximum value between two BigInteger

In this Java programming tutorial, we will learn how to find the maximum value between two BigInteger values. BigInteger has one inbuilt method max() that will find out the maximum value between two values. The declaration of this method is as below :.

Read