Questions

Q:

Which of the following is a secondary air pollutant?

A) Acid rain B) SO2
C) CO2 D) Dust particles
 
Answer & Explanation Answer: A) Acid rain

Explanation:

Secondary pollutants include ozone, which is formed when hydrocarbons (HC) and nitrogen oxides (NOx) combine in the presence of sunlight.

 

Whereas Primary pollutant are those pollutants that are directly emitted from their sources, like CO2, CO, SO2 as these gases are directly emitted form burning of fossil fuels.

 

Acid rain, which is formed when sulfur dioxide or nitrogen oxides react with water, sulfuric acid etc.

 

Hence, Acidrain is a secondary air pollutant.

 

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 , IT Trainer

5 3360
Q:

Which protocol does ping use?

A) ICMP B) TCP
C) BootP D) ARP
 
Answer & Explanation Answer: A) ICMP

Explanation:

ICMP means Internet Control Message Protocol and is always coupled with the IP protocol (There are 2 ICMP variants one for IPv4 and one for IPv6.) echo request and echo response are the two operation codes of ICMP used to implement ping.

Report Error

View Answer Report Error Discuss

4 3358
Q:

Which of the following is the single most important source of the history of Ashoka?

A) Sri Lankan chronicles_ Dipavamsa and Mahavamsa B) Buddhist works Divyavadana and Ashokavadana
C) Inscriptions of Ashoka D) Archaeological Sources and the Puranas
 
Answer & Explanation Answer: C) Inscriptions of Ashoka

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

3 3358
Q:

What is object repository?

Answer

Object Repository means not a collection of objects


it's a common repository for all the people (testing, developers) for seeing all the data in single login.


for example QA wants to see 5 testers works then he goes  to each person login and see the data. It's very difficult job. for this we can use Object Repository.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 3357
Q:

Which of the following is not an intensive property?

A) Weight B) Density
C) Refractive index D) Melting point
 
Answer & Explanation Answer: A) Weight

Explanation:

An intensive property is a physical quantity whose value does not depend on the amount of the substance for which it is measured. For example, the temperature of a system in thermal equilibrium is the same as the temperature of any part of it. If the system is divided the temperature of each subsystem is identical. The same applies to the density of a homogeneous system, if the system is divided in half, the mass and the volume change in the identical ratio and the density remains unchanged. Additionally, the boiling point of a substance is another example of an intensive property. For example, the boiling point for water is 100 °C at a pressure of one atmosphere, a fact which remains true regardless of quantity.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: GATE , Bank Exams , AIEEE
Job Role: Bank Clerk , Analyst

9 3357
Q:

Which of the following is NOT a Financial Institute/Agency ?

A) IRDA B) BCCI
C) FPSB D) SEBI
 
Answer & Explanation Answer: B) BCCI

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

0 3356
Q:

As per Census 2001, among the following hill states of India, which one has the highest literacy rate

A) Arunachal Pradesh B) Himachal Pradesh
C) Sikkim D) Uttarakhand
 
Answer & Explanation Answer: B) Himachal Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

1 3355
Q:

Point out the error, if any, in the following program.

#include "stdio.h"

main()

{

      unsigned char;

       FILE *fp;

       fp = fopen ("trail", "r");

       while (( ch = getc (fp)) ! = EOF)

               printf ("%c", ch);

       fclose (fp);

}  

Answer

EOF has been defined as #define EOF -1 n the file "stdio.h" and an unsigned char ranges from 0 to 255 hence when EOF is read from the file it cannot be accommodated in ch. Solution is to declare ch as an int.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 3354