8 Memory Organisation of 8086

•The address bus of 8086 is 20-bit. • It can addressed 1 MB of memory. •The memory is organized as a linear array of up to 1 MB, from 0...
Read More

7 FLAGS Register of 8086

Flags is a 16-bit register containing 9 one bit flags Status Flag •Carry Flag – CF (bit 0) – Set (1) if an arithmetic operation gen...
Read More

6 Status Lines coding of 8086

•LOCK# •This is output signal. •When it is low, other system bus master will be prevented from gaining the system bus. •It is activat...
Read More

5 Signal Groups/ Pin descriptions of 8086

Pin descriptions of 8086 • The 8086 operates in –minimum mode (single processor mode ) –maximum mode (multiprocessor mode ) high perf...
Read More

4 Register Organization of 8086

• General purpose register •There are four 16 bit general purpose registers, i.e. AX, BX, CX, and DX. These are used to store 16- bit d...
Read More

3 Architecture of 8086

•The 8086 CPU is divided into two independent functional parts, the bus interface unit (BIU), and the execution unit (EU). •The Bus Int...
Read More

19 How to load data dynamically from keyword using java.io.Console in Java?

For Ex:  In this I am reading string data and password data and save password into the file "test.text". ConsoleDemo .java i...
Read More

20 How to load data dynamically from keyword using java.io.DataInputStream in Java?

For Ex:  In this I am reading string and int data from the keyboard. DISDemo .java import java.io.DataInputStream; import java.io.IOE...
Read More

21 How to load data dynamically from file using java.io.DataInputStream in Java?

For Ex: In this I am reading one Boolean , Char, Int and String data from the file. DISDemo .java import java.io.DataOutputStream; im...
Read More

18 How to read the data from files using java.util.Scanner class in Java?

For Ex:  In this program I am showing how the Scanner class is loading data from the file test.txt. text.txt File Contain : ScanDem...
Read More

17 How java.util.Scanner class overcome the problem of Boolean Type Data in Java?

For Ex: In this program I am showing how the Scanner class is giving proper exception details. ScanDemo .java import java.util.Scanner...
Read More

16 How to load data dynamically from keyword using java.util.Scanner in Java?

Introduced in jdk 1.5 under the class java.util to overcome drawbacks of command line argument. If I want to communicate with keyboar...
Read More

12 How to load ".class" file by using Inheritance

In this time .class file is loading but static blocks are not executing but the byte code is loading from Secondary memory to Primary memor...
Read More

11 How ".class" file is loading by using ClassName.class file

Now Suppose we have two file Demo.java and Loading.java Demo.java class Demo{ static{ System.out.println("Demo Static Block&...
Read More

10 How ".class" file is loading by using Reflection API

API  stands for Application Program Interface. It contain collection of classes and interfaces and enum and annotation. With the help of ...
Read More