Questions

Q:

The electrical domestic tube light gives white fluorescent light because of

A) colision between molecules of filled gas under electric current B) heavy current
C) vacuum inside the tube D) falling of ultra violet rays on the white inner coating of the tube
 
Answer & Explanation Answer: D) falling of ultra violet rays on the white inner coating of the tube

Explanation:

The ultraviolet rays have high frequency and shorter wavelength are converted to visible white light with lower frequency and greater wave length

Report Error

View Answer Report Error Discuss

Filed Under: Physics

2 4557
Q:

Persistence of vision is the principle behind

A) Telescope B) Periscope
C) Cinema D) Microscope
 
Answer & Explanation Answer: C) Cinema

Explanation:

Optical illusion is what that refers to persistence of vision with a principle that multiple images blend into a single image in human mind and what is showed in cinema.

 

Hence, Persistence of vision is the principle behind cinema.

Report Error

View Answer Report Error Discuss

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

0 4556
Q:

The invasion of which of these countries in 1939 widely regarded to have started World War II ?

A) Italy B) Germany
C) Poland D) France
 
Answer & Explanation Answer: C) Poland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

6 4556
Q:

The Earthquake at Sagami bay in Japan which killed two and half lakh people was an example of

A) Tectonic earthquake B) Plutonic earthquake
C) Main induced evarthquake D) Isostatic earthquake
 
Answer & Explanation Answer: A) Tectonic earthquake

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 4555
Q:

When was the Jawahar Rojgar Yojana Launched

A) 1985 B) 1987
C) 1991 D) 1989
 
Answer & Explanation Answer: D) 1989

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 4555
Q:

 The first step in database development is which of the following?

A) Enterprise data modeling B) Logical database design
C) Physical database design and definition D) Database Implementation
 
Answer & Explanation Answer: A) Enterprise data modeling

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 4554
Q:

MS-EXCEL is based on

A) OS/2 B) UNIX
C) WINDOWS D) DOS
 
Answer & Explanation Answer: C) WINDOWS

Explanation:

Microsoft Excel is a spreadsheet developed by Microsoft for Windows, macOS, Android and iOS. It features calculation, graphing tools, pivot tables, and a macro programming language called Visual Basic for Applications.

Report Error

View Answer Report Error Discuss

4 4553
Q:

What is the difference between malloc() and calloc() functions?

Answer

As against malloc(), calloc() needs two arguments, the number of elements  to be allocated and the size of each element. For example,


 p = (int *) calloc (10, sizeof (int));


would allocate space for a 10- integer array. Additionally, calloc() would also set each of this element with a value 0.


Thus the above call to calloc() is equivalent to:


p = (int *) malloc (10 * sizeof (int));


memset (p, 0, 10 * sizeof( int ));

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4551