Arjun Thakur has Published 1109 Articles

Microcontroller Basics

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 08:01:55

6K+ Views

A Microcontroller is a small and low-cost microcomputer, which is designed to perform the specific tasks of embedded systems like displaying microwave’s information, receiving remote signals etc.The general microcontroller consists of the processor, the memory (RAM, ROM, EPROM), Serial ports, peripherals (timers, counters) etc.Types of MicrocontrollersMicrocontrollers are divided into various ... Read More

How to set ImageView in edittext?

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 06:58:59

181 Views

This example demonstrate about How to set Image View in edit text.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 ... Read More

How to draw profile icon shape in android?

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 06:53:48

546 Views

This example demonstrate about How to draw profile icon 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 ... Read More

How to perform Merge Sort using C#?

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 06:50:48

2K+ Views

Merge Sort is a sorting algorithm that uses the divide and conquer method. It divides the array into two parts and then calls itself for each of these two parts. This process is continued until the array is sorted.A program that demonstrates merge sort in C# is given as follows ... Read More

How can I add an image on EditText?

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 06:44:58

425 Views

This example demonstrate about how can I add an image on EditText.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 ... Read More

How to delete data in a MySQL database with Java?

Arjun Thakur

Arjun Thakur

Updated on 26-Jun-2020 16:58:25

5K+ Views

Delete data from a MySQL database with the help of DELETE command. The syntax is as follows.delete from yourTableName where condition;I will delete data from a MySQL database with the help of JAVA programming language. First, create a table and insert some records. The following is the query to create ... Read More

Interfacing 8253 (Timer IC) with 8085 Microprocessor

Arjun Thakur

Arjun Thakur

Updated on 26-Jun-2020 15:35:12

5K+ Views

The Intel 8253 is programmable Interval Timers (PTIs) designed for microprocessors toper form timing and counting functions using three 16-bit registers. Each counter has 2 input pins, i.e. Clock & Gate, and 1 pin for“OUT” output. To operate a counter, a 16-bit count is loaded in its register. On command, ... Read More

Validate IP Address in C#

Arjun Thakur

Arjun Thakur

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

1K+ Views

An IP Address is an Internet Protocol address that is a series of numbers assigned to each device on a computer network. In C#, the class IPAddress class in the namespace System.Net deals with IP addresses.A program that is used to validate an IP address is given as follows −Example Live ... Read More

How to check activity In landscape mode?

Arjun Thakur

Arjun Thakur

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

367 Views

This example demonstrate about How to check activity In landscape mode.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 ... Read More

How to get Sim service information in android?

Arjun Thakur

Arjun Thakur

Updated on 26-Jun-2020 14:42:03

290 Views

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

Advertisements