Searching for "V"

Q:

Give examples for 8/16/32 bit Microprocessor?

Answer

8-bit processor - 8085/Z80/6800;


16-bit processor - 8086/68000/Z8000;


32-bit processor - 80386/80486

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

Pointing to a photograph, Vipul said, "She is the daughter of my grandfather's only son." How is Vipul related to the girl in the photograph ?

A) Father B) Brother
C) Cousin D) Data inadequate
 
Answer & Explanation Answer: B) Brother

Explanation:

My grandfather's only son — My father. So, the girl is the daughter of Vipul's father i.e., Vipul is the girl's brother. 

Report Error

View Answer Report Error Discuss

Filed Under: Blood Relations

Q:

main() {

int i;

printf("%d",scanf("%d",&i)); // value 10 is given as input here

}

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: A) 1

Explanation:

Scanf returns number of items successfully read and not 1/0. Here 10 is given as input which should have been scanned successfully. So number of items read is 1.

Report Error

View Answer Report Error Discuss

Filed Under: Java

Q:

What is the disadvantage of microprocessor?

Answer

1.Limitations on the size of data. 


2.Most Microprocessors does not support floating-point operations. 


3.Over heating physically


4. Not bit addressable

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

Showing the man receiving the prize, Saroj said, "He is the brother of my uncle's daughter." Who is the man to Saroj ? 

A) Son B) Cousin
C) Nephew D) Brother-in-law
 
Answer & Explanation Answer: B) Cousin

Explanation:

Brother of uncle's daughter — Uncles son — Cousin.

So, the man is Seema's cousin. 

Report Error

View Answer Report Error Discuss

Filed Under: Blood Relations

Q:

Some blades are hammers. Some hammers are knives. Some knives are axes.

Conclusions:

1. Some axes are hammers

2. Some knives are blades

3. Some axes are blades

A) None follows B) Only 1 follows
C) Only 2 follows D) Only 3 follows
 
Answer & Explanation Answer: A) None follows

Explanation:

Since each combination has of premises has 2 particular premises, so no defenite conclusion follows

Report Error

View Answer Report Error Discuss

Q:

Some hills are rivers. Some rivers are desrets. All desrets are roads.

Conclusions:

1. Some roads are rivers

2. Some roads are hills

3. Some deserts are hills

A) None follows B) Only 1 follows
C) Only 1 and 2 follows D) All follow
 
Answer & Explanation Answer: B) Only 1 follows

Explanation:

Some hills are  rivers. Some rivers are deserts.

Since both the premises are particular, no defenite conclusion follows.

 

Some rivers are deserts. All deserts are roads

Since one premise is particular,the conclusion must be particular and should'nt contain the middle term. Since it follows that 'Some rivers are roads'. 1 is the converse of this conclusion and so it holds.

Report Error

View Answer Report Error Discuss

Q:

What are the blocking and non-blocking assignments in Verilog and which is preferred in Sequential Circutis?

Answer

A blocking assignment is one in which the statements are executed sequentially, i.e., first statement is executed and variable is assigned  a value then second is executed and so on. A non blocking assignment is  one in which statements occurs conturrently, only non blocking assignments should be used in sequential circuit.


 


e.g.


initial


begin


a=b; //blocking


c<=a; //nonblocking


d=c; // blocking


end


 


In this example firstly the value of b is assigned to a and this value is assigned to c only after execution of first statement. the second and the third statements are executed simultaneously, i.e. value a ais assigned to c and previous value if c is assigned to d.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware