Questions

Q:

Which day is celebrated as United Nations day every year

A) 7th April B) 25th August
C) 24th October D) 27th December
 
Answer & Explanation Answer: A) 7th April

Explanation:
Report Error

View Answer Report Error Discuss

0 2724
Q:

Who Invented Traffic Signal ?

A) Lewis Edson Waterman B) Levi Strauss
C) Percy LeBaron Spencer D) Garrett Augustus Morgan
 
Answer & Explanation Answer: D) Garrett Augustus Morgan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions

0 2723
Q:

Point out the error, if any, in the while loop.

main()

{

  int i = 1;

  while ()

  {

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

     if (i >10) 

     break ;

   }

}

Answer

The condition in the while loop is a must.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2723
Q:

V-RAM is used for access of the following ?

A) Programs B) Video & Graphics
C) Text & Images D) All
 
Answer & Explanation Answer: B) Video & Graphics

Explanation:

VRAM or (video RAM), reference to any type of random access memory (RAM) is a dual-ported variant of dynamic RAM (DRAM) used to store the framebuffer in graphics adapters.

Report Error

View Answer Report Error Discuss

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

9 2722
Q:

What element is found in all organic compounds?

A) Hydrogen B) Calcium
C) Nitrogen D) Carbon
 
Answer & Explanation Answer: D) Carbon

Explanation:

Carbon is found in all organic compounds.

Report Error

View Answer Report Error Discuss

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

0 2721
Q:

Which is not a task of a configuration management?

A) Reporting B) Version control
C) Quality control D) Change management
 
Answer & Explanation Answer: C) Quality control

Explanation:
Report Error

View Answer Report Error Discuss

2 2720
Q:

Which one of the following actors was awarded the Dada Saheb Phalke Award at the 59th National Film Festival

A) Soumitra Chatterjee B) Ketan Mehta
C) Shekhar Kapoor D) Mahesh Bhatt
 
Answer & Explanation Answer: A) Soumitra Chatterjee

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

1 2720
Q:

public static void main string[] args Meaning is?

Answer

Here in this declaration public static void main string[] args, each keyword has its importance.


 


1. public - Here public is an access specifier which allows the main method to be accessible everywhere.


 


2. static - static helps the main method to get loaded without getting called by any instance/object.


 


3. void - void clarifies that the main method will not return any value.


 


4. main - It's the name of the method.


 


5. String[] args - Here we are defining a String array to pass arguments at the command line. args is the variable name of the String array.

Report Error

View answer Workspace Report Error Discuss

8 2719