Questions

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 2269
Q:

What building is famously located at 1600 Pennsylvania Ave?

Answer

The White House

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2268
Q:

What was the theme of 'International Day of Forests 2017' that was observed on 21st March ?

A) Our Trees Our Forests B) Save Trees Save Forests
C) Trees and Forests D) Forests and energy
 
Answer & Explanation Answer: D) Forests and energy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

1 2268
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 2268
Q:

Which vitamin is also called as H vitamin?

A) Vitamin B7 B) Vitamin B12
C) Vitamin B3 D) Vitamin B5
 
Answer & Explanation Answer: A) Vitamin B7

Explanation:

Biotin is a water-soluble B vitamin, also called vitamin B7 and formerly known as vitamin H or coenzyme R.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration

2 2268
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 2268
Q:

Government is to set to introduce new Rs. 100 coin with image of former PM

A) Jawaharlal Nehru B) Indhira Gandhi
C) Atal Bihari Vajpayee D) Rajiv Gandhi
 
Answer & Explanation Answer: C) Atal Bihari Vajpayee

Explanation:

Government is to set to introduce new Rs. 100 coin with image of former Prime Minister Atal Bihari Vajpayee.

Report Error

View Answer Report Error Discuss

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

1 2267
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 2267