Questions

Q:

Electrostatic precipitator is used to control

A) Water pollution B) Noise pollution
C) Air pollution D) Solid waste
 
Answer & Explanation Answer: C) Air pollution

Explanation:

Electrostatic precipitator is used to control Air pollution. An electrostatic precipitator is a filtration device that removes fine particles, like dust and smoke, from a flowing gas using the force of an induced electrostatic charge minimally impeding the flow of gases through the unit.

                         Electrostatic_precipitator_is_used_to_control1564054124.png image

Report Error

View Answer Report Error Discuss

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

13 2636
Q:

All variables in PHP start with which symbol?

A) % B) !
C) $ D) &
 
Answer & Explanation Answer: C) $

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming
Exam Prep: Bank Exams

38 2636
Q:

Which of the following is the sacred book of Judaism?

A) Old Testament B) Aporypha
C) Avesta D) Both (a) and (b)
 
Answer & Explanation Answer: D) Both (a) and (b)

Explanation:

The sacred books of judaism form the Old Testament and Aporypha. These books contain the history of the Jews and lay down the religious laws and ethics which they must follow.

Report Error

View Answer Report Error Discuss

Filed Under: World History

3 2635
Q:

Would the following program compile?

main()

{

    int a = 10, *j;

    void *k;

    J = k = &a;

    J++;

    k++;

   printf ("\n%u %u", j, k);

}

Answer

An error would be reported in the statement k++ since arithmetic on void pointers is not permitted unless the void pointer is appropriately typecasted.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2633
Q:

What would be the output of the following program?

main()

{

   struct emp

   {

        char *n;

        int age;

   };

   struct emp e1 = { "Dravid", 23};

   struct emp e2 = e1;

   strupr (e2.n);

   printf ("\n%s",e1.n);

}

Answer

DRAVID


When a structure is assigned, passed, or returned, the copying is done monolithically. This means that the copies of any pointer fields will point to the same place as the original. In other words, anything pointed to is not copied. Hence, on changing the name through e2.n it automatically changed e1.n

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2633
Q:

Who was the revolutionary leader who ended his days as a Swami of Ramakrishna Mission ?

A) Ajit Singh B) Aurobindo Ghosh
C) Jatindranath Bandopadhyay D) Hemachandra Kanungo
 
Answer & Explanation Answer: C) Jatindranath Bandopadhyay

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

2 2633
Q:

Movement of cell against concentration gradient is called

A) active transport B) diffusion
C) osmosis D) passive transport
 
Answer & Explanation Answer: A) active transport

Explanation:

The only transport method that can move species against their concentration gradient i.e, from low to high concentration is called Active transport.

 

Facilitated diffusion only moves species down their concentration gradient i.e, from high to low concentration.

Report Error

View Answer Report Error Discuss

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

2 2633
Q:

Translator program used in assembly language

A) Assembler B) Interpreter
C) Compiler D) Operating system
 
Answer & Explanation Answer: A) Assembler

Explanation:

Assemblers are used to translate a program written in a low-level assembly language into a machine code (object code) file so it can be used and executed by the computer.

 

Hence, Assembler is the translator program used in assembly language.

Report Error

View Answer Report Error Discuss

0 2633