Ankith Reddy has Published 1070 Articles

HTML value Attribute

Ankith Reddy

Ankith Reddy

Updated on 29-Jun-2020 08:28:31

93 Views

The value attribute of the element specifies the current value of the gauge. This is a required attribute.Following is the syntax −Above, num represents the current value as a floating-point number.Let us now see an example to implement the value attribute of the element −Example Live Demo ... Read More

HTML href Attribute

Ankith Reddy

Ankith Reddy

Updated on 29-Jun-2020 08:18:07

203 Views

The href attribute of the element is used to set the url of the external resource.Following is the syntax −Above, the url is the url of the linked document. Let us now see an example to implement the href attribute of the element −Example ... Read More

Which element is used to add special styles to the first line of the text in a selector with CSS

Ankith Reddy

Ankith Reddy

Updated on 29-Jun-2020 07:16:49

111 Views

Use the :first-line element to add special effects to the first line of elements in the document. ExampleYou can try to run the following code to add special styles to the first line of textLive Demo                    p:first-line {       ... Read More

Generate Random Float type number in Java

Ankith Reddy

Ankith Reddy

Updated on 29-Jun-2020 06:11:10

3K+ Views

In order to generate Random float type numbers in Java, we use the nextFloat() method of the java.util.Random class. This returns the next random float value between 0.0 (inclusive) and 1.0 (exclusive) from the random generator sequence.Declaration −The java.util.Random.nextFloat() method is declared as follows −public float nextFloat()Let us see a ... Read More

Register indirect addressing mode in 8085 Microprocessor

Ankith Reddy

Ankith Reddy

Updated on 29-Jun-2020 06:01:50

3K+ Views

In this mode, the data is transferred from one register to another by using the address pointed by the register. Register indirect addressing mode also used to call as indirect addressing mode. For example MOV A, M: means data is transferred from the memory address pointed by the register pair ... Read More

Architecture of 8259

Ankith Reddy

Ankith Reddy

Updated on 29-Jun-2020 05:53:02

4K+ Views

8259 Microprocessor is architected in a unique style. It can program by means of some interrupts conditions by means of level or interrupt level often called edge-triggered interrupt level. Masking is done to individual interrupt bits. As the number of 8259 increases interrupt pins up to 64 can be obtained. ... Read More

Instruction to complement Accumulator in 8085 Microprocessor

Ankith Reddy

Ankith Reddy

Updated on 27-Jun-2020 14:56:14

6K+ Views

In 8085 Instruction set, logical type there is one complement instruction with the mnemonic CMA. It actually stands for “CoMplement the Accumulator”. It performs1's complement operation on the current contents of Accumulator, and the result is stored back in the Accumulator replacing its previous contents. It is to be noted ... Read More

Conditional JUMP instructions in 8085 Microprocessor

Ankith Reddy

Ankith Reddy

Updated on 27-Jun-2020 14:44:57

3K+ Views

In 8085 Instruction set, there are a set of jump instructions, which can transfer program control to a certain memory location. So after these branching mnemonics, we shall have to mention 16-bit target address of the location. These jump instructions can be divided into two categories– Unconditional jump instructions andConditional jump ... Read More

Jump if zero (JZ) result in 8085 Microprocessor

Ankith Reddy

Ankith Reddy

Updated on 27-Jun-2020 14:42:29

2K+ Views

In 8085 Instruction set, we are having one mnemonic JZ a16, which stands for “Jump Zero” and “a16” stands for any 16-bit address. This instruction is used to jump to the address a16 as provided in the instruction. But as it is a conditional jump so it will happen if ... Read More

Jump if parity even (JPE) in 8085 Microprocessor

Ankith Reddy

Ankith Reddy

Updated on 27-Jun-2020 14:41:43

1K+ Views

In 8085 Instruction set, we are having one mnemonic JPE a16,  which stands for “Jump if Parity Even” and “a16” stands for any 16-bit address. This instruction is used to jump to the address a16 as provided in the instruction. But as it is a conditional jump so it will ... Read More

Previous 1 ... 6 7 8 9 10 ... 107 Next
Advertisements