Searching for "B"

Q:

Pointing to a man on the stage, Rita said, "He is the brother of the daughter of the wife of my husband." How is the man on the stage related to Rita ? 

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

Explanation:

Wife of husband — Herself; Brother of daughter — Son. So, the man is Rita's son. 

Report Error

View Answer Report Error Discuss

Filed Under: Blood Relations

Q:

Differ between static and dynamic RAM?

Answer

Static RAM: no refreshing, 6 to 8 MOS transistors are required to form one memory cell, information stored as voltage level in flip flop. 


Dynamic RAM: refreshed periodically, 3 to 4 transistors are required to form one memory cell, information is  stored as a charge in the gate to substrate capacitance.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

Differentiate between RAM & ROM?

Answer

RAM: Read / Write memory, High Speed, Volatile Memory.


ROM: Read only memory, low speed, non volite memory.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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:

Can ROM be used as stack?

Answer

ROM cannot be used as stack because it is not possible to write to ROM.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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

Q:

All snakes are trees. Some trees are roads. All roads are mountains.

Conclusions: 

1. Some mountains are snakes

2. Some roads are snakes

3. Some mountains are trees

A) Only 1 follows B) Only 2 follows
C) Only 3 follows D) Both 1 and 2 follow
 
Answer & Explanation Answer: C) Only 3 follows

Explanation:

All snakes are trees. Some trees are roads.

Since the middle term is not distributed even once in the premises,so no conclusion follows

 

Some trees are roads. All roads are mountains

Since one primise is particular,the conclusion must be particularand should'nt contain the middle term. So,it follows that 'Some trees are mountains'. 3 is the converse of this statement and so it holds.

 

All snakes are trees. Some trees are mountains.

Since the middle term is not distributed even once in the preises, so no definite conclusion follows

Report Error

View Answer Report Error Discuss

Q:

In 8085 name the 16 bit registers?

Answer

Stack pointer and Program counter all have 16 bits.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware