Questions

Q:

What temperature is considered freezing?

Answer

We have all been taught that water freezes at 32 degrees Fahrenheit, 0 degrees Celsius, 273.15 Kelvin. That's not always the case, though. Scientists have found liquid water as cold as -40 degrees F in clouds and even cooled water down to -42 degrees F in the lab.

Report Error

View answer Workspace Report Error Discuss

Subject: Chemistry Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

2 2267
Q:

Five statements are given below, labelled A, B, C, D and E, among these, four statements are in logical order and form a coherent paragraph/passage. From the given options, choose the option that does not fit into the theme of the passage.

A) The global cooperation that has emerged lately is certainly welcome. B) The ocean has suffered decades of abuse and neglect.
C) It has been treated as a free-for-all garbage bin and race-to-the-bottom buffet. D) We have financed its destruction, with no regard for the consequences.
 
Answer & Explanation Answer: A) The global cooperation that has emerged lately is certainly welcome.

Explanation:

All statements except ‘A’ are based about the same theme which is The Fight for Ocean Health while sentence A talks about The Next Phase of Climate Action.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2267
Q:

Which is not a duty of a member of congress?

A) helping constituents B) educating the public
C) lawmaking D) None of the above
 
Answer & Explanation Answer: D) None of the above

Explanation:

Members of Congress has five main functions:

 

1. lawmaking,

2. representing the people,

3. performing oversight,

4. helping constituents, and

5. educating the public.

Report Error

View Answer Report Error Discuss

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

1 2266
Q:

What would be the output of the following program?

main()

{

  extern int i;

   i = 20;

  printf( "%d", sizeof(i) );

}

Answer

extern int i is a declaration and not a definition, hence Error occured.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2266
Q:

Can you suggest any other way of writing the following expression such that 30 is used only once?

a <= 20 ? b = 30 : c = 30 ;

Answer

*( ( a <= 20 ) ? &b : &c ) = 30;

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2266
Q:

What is Non-Maskable interrupts?

Answer

An interrupt which can be never be turned off (ie. disabled) is known as Non-Maskable interrupt

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2265
Q:

Suppose n is a positive integer such that (n2+ 48) is a perfect square. What is the number of such n?

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

Explanation:
Report Error

View Answer Report Error Discuss

1 2265
Q:

What is 16 bit?

Answer

Anything larger and the computer would need to break the number into smaller pieces.


 


16-bit is a computer hardware device or software program capable of transferring 16 bits of data at a time.


Today, 16-bit hardware and software has been replaced by 32-bit and 64-bit alternatives, which give the computer more memory to work with; increasing overall performance.


 


For example, early computer processors (e.g., 8088 and 80286) were 16-bit processors, meaning they were capable of working with 16-bit binary numbers (decimal number up to 65,535).

Report Error

View answer Workspace Report Error Discuss

2 2265