Arjun Thakur has Published 1109 Articles

How to check android mobile supports dynamic sensor?

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

172 Views

This example demonstrate about How to check android mobile supports dynamic sensorStep 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 do I put a border around an Android textview?

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

10K+ Views

If you wants to see text view as 3D view as we seen in Microsoft power point 3d texts. This example demonstrate about how do I put a border around an Android text view.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and ... Read More

RST5.5 and RST6.5 pins in 8085

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

592 Views

 Both the pins RST5.5 and RST6.5 pins are inputs which are level sensitive. RST6.5 is of higher priority than RST5.5 but the pin RST5.5 is of higher priority than INTR. RST5.5 and RST6.5 have similar functions. The point to be noted that these pins must remain high till the 8085 ... Read More

How to SELECT all values from a table only once if they're duplicated?

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

6K+ Views

You can use distinct keyword to select all values from a table only once if they are repeated.The syntax is as followsselect distinct yourColumnName from yourTableName;To understand the above syntax, let us create a table. The query to create a table is as follows.mysql> create table displayOnlyDistinctValue    -> ( ... Read More

Multiple memory address range in 8085 Microprocessor

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

691 Views

Suppose we have the chip select circuit as shown in the below figure, then what is the address range for the RAM?Fig. Chip selection that results in multiple address range.A15 and A14 pins are used for the selection of Random Access Memory, and pins ranging from A10 to A0 are ... Read More

Need for masking in 8085

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

760 Views

 Let us say that the 8085 which is interrupted because of RST6.5 pin and has been branched to the ISS for the pin RST6.5. Then, except the DI instruction at the beginning of this ISS, all the interrupts gets disabled except TRAP. So, even if RST7.5 pin is in activated ... Read More

How to make a background 20% transparent on Android

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

4K+ Views

If you want to give transparent background for your view, This example demonstrate about How to make a background 20% transparent on Android.All hex value from 100% to 0% alpha100% — FF99% — FC98% — FA97% — F796% — F595% — F294% — F093% — ED92% — EB91% — E890% ... Read More

How to use action up event in android?

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

202 Views

This example demonstrate about How use action up event 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 set all values in a single column MySQL Query?

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

10K+ Views

To set all values in a single column MySQL query, you can use UPDATE command.The syntax is as follows.update yourTableName set yourColumnName =yourValue;To understand the above syntax, let us create a table. The query to create a table is as follows.mysql> create table setAllValuesDemo    -> (    -> Id ... Read More

Program for decimal down counter in 8085 Microprocessor

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:25

278 Views

We write a program in 8085 assembly language for implementing a decimal down counter (from 99 to 00). The program must be working in the following conditions.We load the accumulator with 99.Displaying the count value in the accumulator which is present in the accumulator. RST5.5 is in unmasked condition and ... Read More

Advertisements