Ankith Reddy has Published 996 Articles

length() vs char_length() in MySQL?

Ankith Reddy

Ankith Reddy

Updated on 27-Jun-2020 07:39:24

1K+ Views

The char_length() can be used to display the length of a string. Let us see an example to get the length of the string included as a parameter.mysql> select char_length('John');The following is the output.+---------------------+ | char_length('John') | +---------------------+ | 4 ... Read More

How to draw tick mark with circle background shape in android?

Ankith Reddy

Ankith Reddy

Updated on 27-Jun-2020 06:56:20

1K+ Views

This example demonstrates How to draw tick mark with circle background shape in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     ... Read More

How to draw close shape in android?

Ankith Reddy

Ankith Reddy

Updated on 27-Jun-2020 06:46:17

450 Views

 This example demonstrate about How to draw close shape in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In the above ... Read More

How to multiply a given number by 2 using Bitwise Operators in C#?

Ankith Reddy

Ankith Reddy

Updated on 27-Jun-2020 06:43:29

4K+ Views

A number can be multiplied by 2 using bitwise operators. This is done by using the left shift operator and shifting the bits left by 1. This results in double the previous number.A program that demonstrates multiplication of a number by 2 using bitwise operators is given as follows.Example Live Demousing ... Read More

History of Microprocessor

Ankith Reddy

Ankith Reddy

Updated on 26-Jun-2020 15:01:17

21K+ Views

Fair child semiconductors (founded in 1957) invented the first Integrated Circuit in 1959 that marked the microprocessor history. In 1968, Gordan Moore, Robert Noyce and Andrew Grove resigned from the Fair child semiconductors and started their own company: Integrated Electronics (Intel). In 1971, the first microprocessor Intel 4004 was invented. ... Read More

How to find edit text values start from Alphabet or Not?

Ankith Reddy

Ankith Reddy

Updated on 26-Jun-2020 14:45:20

380 Views

This example demonstrate about How to find edit text values start from Alphabet or Not.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.   ... Read More

How to access elements of an array using pointer notation in C#?

Ankith Reddy

Ankith Reddy

Updated on 26-Jun-2020 14:43:07

853 Views

Usage of pointers in C# require the unsafe modifier. Also array elements can be accessed using pointers using the fixed keyword. This is because the array and the pointer data type are not the same. For example: The data type int[] is not the same as int*.A program that demonstrates ... Read More

How to get signal strength in android?

Ankith Reddy

Ankith Reddy

Updated on 26-Jun-2020 14:40:41

3K+ Views

This example demonstrate about How to get signal strength in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In the above ... Read More

How to get information about mobile supports in whole world or not in android?

Ankith Reddy

Ankith Reddy

Updated on 26-Jun-2020 14:35:01

105 Views

This example demonstrate about How to get information about mobile supports in whole world or not in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to ... Read More

How to get device id in android?

Ankith Reddy

Ankith Reddy

Updated on 26-Jun-2020 14:30:39

1K+ Views

This example demonstrate about How to get device id in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In the above ... Read More

Advertisements