Chandu yadav has Published 1163 Articles

How to remove button bar at the bottom screen?

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 06:25:15

572 Views

This example demonstrate about How to remove button bar at the bottom screen.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 ... Read More

Number of instructions in 8085 Microprocessor

Chandu yadav

Chandu yadav

Updated on 27-Jun-2020 05:59:32

2K+ Views

INTEL 8085 has a very enriched Instruction Set. Varieties of instructions it can execute. Instructions will have different Byte counts, ranging from 1-Byte to 3-Bytes. Opcode always occupies 1-Byte in the memory. As we know that, with 8 bits for the opcode, 28 = 256 distinct opcodes are possible. In ... Read More

Vcc and Vss pins

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 14:49:57

15K+ Views

VCC (Voltage Common Collector) is the higher voltage with respect to GND (ground). VCC is the power input of a device. It may be positive or negative with respect to GND. When the only positive power supply is used then VSS (Voltage Source Supply) means ground or zero. The Intel ... Read More

C# Program to create Pascal’s Triangle

Chandu yadav

Chandu yadav

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

4K+ Views

A Pascal’s triangle contains numbers in a triangular form where the edges of the triangle are the number 1 and a number inside the triangle is the sum of the 2 numbers directly above it.A program that demonstrates the creation of the Pascal’s triangle is given as follows.Example Live Demousing System; ... Read More

C# program to multiply two matrices

Chandu yadav

Chandu yadav

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

9K+ Views

The program for matrix multiplication is used to multiply two matrices. This procedure is only possible if the number of columns in the first matrix are equal to the number of rows in the second matrix.A program that demonstrates matrix multiplication in C# is given as follows −Example Live Demousing System; ... Read More

How to get information about network roaming is enabled or not in android?

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 14:36:46

424 Views

This example demonstrate about How to get information about network roaming is enabled 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 res/layout/activity_main.xml. ... Read More

How to get device location in android?

Chandu yadav

Chandu yadav

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

535 Views

This example demonstrate about How to get device location 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

Selection Sort program in C#

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 14:32:38

5K+ Views

Selection Sort is a sorting algorithm that finds the minimum value in the array for each iteration of the loop. Then this minimum value is swapped with the current array element. This procedure is followed until the array is sorted.A program that demonstrates selection sort in C# is given as ... Read More

When are static objects destroyed in C++?

Chandu yadav

Chandu yadav

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

2K+ Views

Static objects are declared with the keyword static. They are initialized only once and stored in the static storage area. The static objects are only destroyed when the program terminates i.e. they live until program termination.A program that demonstrates static objects in C++ is given as follows.Example Live Demo#include using ... Read More

How to get default Sim Operator id in android?

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 14:16:18

404 Views

This example demonstrate about How to get default Sim Operator 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 ... Read More

Advertisements