Searching for "i"

Q:

Write an RTL Description for D latch and D flip flop?

Answer

For D latch: always@(enable) q<=d;


For D flip flop: always@(opsedge clock) q<=d; 

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:

What is Stack Pointer?

Answer

Stack pointer is a special purpose 16-bit register in the Microprocessor, which holds the address od the top of the stack.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

what are the various flags used in 8085?

Answer

Sign flag, Zero flag, Auxillary flag, Parity flag, Carry flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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

Q:

The car dealer found that there was a tremendous response for the new XYZ's car-booking with long queues of people complaining about the duration of business hours and arrangements.

 

Courses of Action: 

 I. People should make their arrangement of lunch and snacks while going for car XYZ's booking and be ready to spend several hours.

II. Arrangement should be made for more booking desks and increased business hours to serve more people in less time.

A) Only I follows B) Only II follows
C) Neither I nor II follows D) Both I and II follow
 
Answer & Explanation Answer: B) Only II follows

Explanation:

Seeing the tremendous response, the dealer must make suitable arrangements and deploy more personnel to take care of customers so that they don't have to wait excessively long for booking. So, only course II follows.

Report Error

View Answer Report Error Discuss

Q:

What is the strength of the signal transmitted by powerful cell phones?

Answer

the powerful cell phones can transmit a signal of 3 watts.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware