Searching for "assignments"

Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence in Passive/Active Voice.

 

The teacher told him to collect assignments.

 

A) He was told to collect assignments by the teacher. B) He is told by the teacher to collect assignments.
C) The teacher asked him to collect assignments. D) He was asked to collect assignments.
 
Answer & Explanation Answer: A) He was told to collect assignments by the teacher.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

 In 1:n assignments, the operational charts of accounts in all assigned company codes and in the controlling area must be the same.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The charts of accounts must be the same.

Report Error

View Answer Workspace Report Error Discuss

Subject: SAP CO

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