Questions

Q:

The operating system creates _ from the physical computer.

A) Virtual device B) Virtual space
C) Virtual computer D) All of the above
 
Answer & Explanation Answer: C) Virtual computer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2078
Q:

Why does a fountain pen leak in aeroplane flying at a height?

A) Because of reduced viscosity of the ink in the pen B) Because of increased viscosity of the ink in the pen
C) Because of higher atmospheric pressure outside the pen D) Because of lower atmospheric pressure outside the pen
 
Answer & Explanation Answer: D) Because of lower atmospheric pressure outside the pen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2078
Q:

The main source of organic matter in soil is

A) bacteria B) fungi
C) water D) plants
 
Answer & Explanation Answer: D) plants

Explanation:

The main source of organic matter in soil is the plant and animal tissue that decompose at each level of breakdown.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

5 2077
Q:

The Twelfth Five-year Plan focused on inclusive growth. Which of the following were considered as challenges for inclusiveness?

1.Poverty

2.Group inequality

3.Regional imbalance

4.Unemployment

Select the correct answer using the code given below.

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

Explanation:
All are correct except 2, as group inequality was not a challenge.
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 2077
Q:

The most important determinant of consumer spending is

A) consumer expectations B) the level of income
C) the level of household borrowing D) the stock of wealth
 
Answer & Explanation Answer: B) the level of income

Explanation:

The most important determinant of consumer spending is the level of income.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2077
Q:

When was World Meterological Organisation estabilished?

A) 1950 B) 1952
C) 1956 D) 1949
 
Answer & Explanation Answer: A) 1950

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

5 2077
Q:

Which error are you likely to get when you run the following program?

main()

{

  struct emp

  {

      char name[20];

      float sal;

  };

  struct emp e[10];

  int i;

  for ( i = 0 ; i <= 9; i++)

        scanf ( "%s %f" , e[i].name, &e[i].sal );

}

Answer

Floating point formats not linked

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2077
Q:

What is process synchronization?

Answer

A situation, where several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place, is called race condition. To guard against the race condition we need to ensure that only one process at a time can be manipulating the same data. The technique we use for this is called process synchronization.

Report Error

View answer Workspace Report Error Discuss

1 2077