Where do Jains go for pilgrimage?

Rashmi Iyer
Updated on 27-Jun-2020 14:46:51

717 Views

Jainism is one of the oldest religions in India. Its references are traced back to the Harappan Civilization with reference to the nude torso found during the excavations. Vrishabdeva is the first Tirthankara in Jain religion and the 24th is Varadamana Mahavira. This is one of the first religions that gave the concepts of complete non-violence and total vegetarianism.Sects of JainismThe two main sects in the Jain religion are Shvetambara and Digambara. It is the Shvetambara sect which generally forms the part of the mainstream society. The Jains have contributed in trade, art,  and architecture, philosophy and mathematics throughout the ... Read More

Java Program to list Weekday names

Samual Sam
Updated on 27-Jun-2020 14:46:33

2K+ Views

To list weekday names, use the getWeekdays () from the DateFormatSymbols class in Java.DateFormatSymbols is a class for encapsulating localizable date-time formatting data.Get weekday month names in an array −String[] days = new DateFormatSymbols().getWeekdays ();Display the weekdays −for (int i = 0; i < days.length; i++) {    String weekday = days[i];    System.out.println(weekday); }The following is an example −Example Live Demoimport java.text.DateFormatSymbols; public class Demo {    public static void main(String[] args) {       String[] days = new DateFormatSymbols().getWeekdays();       for (int i = 0; i < days.length; i++) {          String weekday ... Read More

Instructions to rotate Accumulator in 8085 Microprocessor

Arjun Thakur
Updated on 27-Jun-2020 14:45:57

2K+ Views

In 8085 Instruction set, there a set of instructions which can Accumulator contents left orright. It is to be noted here that rotate operation can be performedonly on Accumulator contents. These instructions set is listed below– Mnemonics, OperandOpcode(in HEX)BytesRAL171RAR1F1RLC071RRC0F1Mnemonic RLC stands for “Rotate Left Accumulator”. It rotates the Accumulator contents to the left by 1-bit position. The following Fig. shows the operation explicitly – In this fig. it has been depicted that the mostsignificant bit of the Accumulator will come out and left rotate willcreate an empty space at the least significant bit place and thiscome out bit will be copied at ... Read More

Conditional and Unconditional JUMP instructions in 8085 Microprocessor

Chandu yadav
Updated on 27-Jun-2020 14:45:41

7K+ 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 instructionsUnder unconditional jump instructions there is only one mnemonic i.e. JUMP. But under conditional Jump instructions we are having 8 different mnemonics. We know that there are 5 flag bits in 8085 Flag register. They are S, Z, P, Cy, AC. Out of them only on AC flag bit, there ... Read More

Unconditional JUMP instruction in 8085 Microprocessor

Arjun Thakur
Updated on 27-Jun-2020 14:45:21

4K+ Views

In 8085 Instruction set, there are a set of jump instructions, which can transfer programcontrol to a certain memory location. So after these branchingmnemonics we shall have to mention 16-bit target address of thelocation. These jump instructions can be divided into two categories– Unconditional jump instructions andConditional jump instructionsHere in this section we shall discuss only the unconditional jump instruction. Tre required mnemonic is JUMP a16. Here in this instruction a16 denotes 16-bit memory location address.This instruction does not depend on the current conditions of theflag bits in the flag register. It is a 3-Byte instruction. The firstByte will contain the ... Read More

Jump if not Carry (JNC) in 8085 Microprocessor

George John
Updated on 27-Jun-2020 14:45:09

5K+ Views

In 8085 Instruction set, we are having one mnemonic JNC a16, which stands for “Jump if Not Carry” 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 and only if the present carry flag value is 0. If carry flag value is 1, program flow continues sequentially. It is a 3-Byte instruction.Mnemonics, OperandOpcode(in HEX)BytesJNCLabelD23Let us consider one example of this instruction type JNC 4000H. It is a 3-Byte instruction. The result of execution of this instruction ... Read More

Conditional JUMP instructions in 8085 Microprocessor

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

2K+ 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 instructionsHere we shall discuss conditional jump instructions in details. Under conditional Jump instructions, we are having 8 different mnemonics. We know that there are 5 flag bits in 8085 Flag register. They are S, Z, P, Cy, AC. Out of them only on AC flag bit, there is no jump ... Read More

Jump if carry (JC) in 8085 Microprocessor

Chandu yadav
Updated on 27-Jun-2020 14:43:31

4K+ Views

In 8085 Instruction set, we are having one mnemonic JC a16, which stands for “Jump if Carry” 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 and only if the present carry flag value is 1.If carry flag value is 0, program flow continues sequentially. It is a 3-Byte instruction.Mnemonics, OperandOpcode(in HEX)BytesJC LabelDA3Let us consider one example of this instruction type JC 4000H. It is a 3-Byte instruction. The result of execution of this instruction ... Read More

What is the significance of the Khajuraho Monuments?

Rashmi Iyer
Updated on 27-Jun-2020 14:43:17

577 Views

Khajuraho is popular for its group of artistic temples which were built by the Chandela rulers between the 10th and 12th Century. Chandela rulers were the great patrons of art and this is the reason that the Khajuraho group of temples is known for its sculptural wealth. There were some 85 temples constructed during the aforementioned period but only 25 temples remain in the complex today.The Khajuraho temples are even mentioned in the records of Al Biruni and Ibn Battuta. All the temples are built out of fine sandstone except Chausath Yogini, Brahma and Lalguan-Mahadeva temples constructed out of granite.Categories ... Read More

Jump if not zero (JNZ) result in 8085 Microprocessor

George John
Updated on 27-Jun-2020 14:43:01

7K+ Views

In 8085 Instruction set, we are having one mnemonic JNZ a16, which stands for “Jump if Not 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 and only if the present zero flag value is 0. If zero flag value is 1, program flow continues sequentially. It is a 3-Byte instruction.Mnemonics, OperandOpcode(in HEX)BytesJNZLabelC23Let us consider one example of this instruction type JNZ 4000H. It is a 3-Byte instruction. The result of execution of this ... Read More

Advertisements