Searching for "NO"

Q:

Should the parents inIndia in future be forced to opt for one child against the 2 or many at present?

  1. Yes.This the only way to check the ver increasin population of India
  2. No.This type of pressure tactic is not adopted by any other country in the world

A) Only 1 is true B) Only 2 is true
C) Either 1 or 2 is true D) Neither 1 nor 2 is true
 
Answer & Explanation Answer: A) Only 1 is true

Explanation:

Clearly adoptindg such a policy help to regulate the population gowth,which inturn will facilitate the proper growth of economy and optimum utilization of country resources.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

Q:

Some tapes are discs. Some discs are cassettes. Some cassettes are songs

Conclusions:

1. Some songs are discs

2. Some cassettes are tapes

3. Some songs are tapes

4. No song is a disc

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

Explanation:

Since each combiantion of premise contain 2 particular premises, no definite conclusion can be drawn. However, 1 and 4 involve the extreme terms of 2nd and 3rd premises and form a complementary pair. Thus either 1 or 4 follows.

Report Error

View Answer Report Error Discuss

Q:

A large number of people in ward X of the city are diagnosed to be suffering from a fatal malaria type.

 

Courses of Action:

I. The city municipal authority should take immediate steps to carry out extensive fumigation in ward X.

II. The people in the area should be advised to take steps to avoid mosquito bites.

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

Explanation:

Clearly, prevention from mosquitoes and elimination of mosquitoes are two ways to prevent malaria. So, both the courses follow.

Report Error

View Answer Report Error Discuss

Q:

Some mountains are hillocks. Some mountains are rivers. Some mountains are valleys.

Conclusions:

1. All mountains are either hillocks or rivers or valleys

2. No valley is river

3. Some river are valleys

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

Explanation:

2 and 3 are the satements involving the extreme terms of the last 2 premises and form a complementary pair. Thus either 2 or 3 follows

Report Error

View Answer Report Error Discuss

Q:

A man pointing to a photograph says, 'The lady in the photograph is my nephew's maternal grandmother." How is the lady in the photograph related to the man's sister who has no other sister ?  

A) Cousin B) Sister-in-law
C) Mother D) Mother-in-law
 
Answer & Explanation Answer: C) Mother

Explanation:

Clearly, the lady is the grandmother of man's sister's son i.e.. the mother of the mother of man's sister's son 

i.e., the mother of man's sister. So, the lady is man's mother.  

Report Error

View Answer Report Error Discuss

Filed Under: Blood Relations

Q:

The Asian Development Bank has approved a $285 million loan to finance a project to construct coal ports by Paradip and Madras Port Trusts.

 

Courses of Action:

I. India should use financial assistance from other international financial organisations to develop such ports in other places.

II. India should not seek such financial assistance from the international financial agencies.

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

Explanation:

Clearly, such projects shall be an asset and a source of income to the country later on. So, course I shall follow.

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

Q:

Which interrupts is not level-sensitive in 8085?

Answer

TST 7.5 is a raising edge-triggering interrupt.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware