Questions

Q:

In photography, the compound of nitrogen used is 

A) Potassium nitrate B) Silver nitrate
C) Ammonium carbonate D) Ammonium bicarbonate
 
Answer & Explanation Answer: B) Silver nitrate

Explanation:

Silver nitrate is the basic substance from which silver bromide is obtained. The photographic films are impregnated with the light sensitive AgBr.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

12 6549
Q:

What is the Maximum clock frequency in 8086?

Answer

5 Mhz is the Maximum clock frequency in 8086.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

2 6549
Q:

The most important official post with vast responsibilities created by Ashoka was

A) Rajuka B) Yukta
C) Dharamamahamatya D) Prativedaka
 
Answer & Explanation Answer: C) Dharamamahamatya

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

5 6535
Q:

Malabar is covered by which types of vegetation

A) Mountain forest B) Thorn
C) Tropical deciduous D) Tropical evergreen
 
Answer & Explanation Answer: D) Tropical evergreen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

13 6533
Q:

Which three dynasties are known as "Muventar"?

A) Pandya, Chola, Chera B) Pallava, Chola, Pandya
C) Pallava, Chera, Pandya D) Pallava, Chola, Chera
 
Answer & Explanation Answer: A) Pandya, Chola, Chera

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

13 6530
Q:

Formation of curd from milk is chemical reaction.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The process of conversion of milk into curd is called fermentation.  It is a chemical change. Milk consists of globular proteins called casein. As the microorganism lactobacillus react with milk and turn it to curd. For it 37 degree temperature is needed. But sometimes when it does not get favourable condition, then other microorganism react and makes the curd taste different.

Report Error

View Answer Workspace Report Error Discuss

Subject: Chemistry
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

6 6525
Q:

Missing letters puzzle

Answer

Answer : F


Explanation :     In each group of 3 boxes, calculate the difference in numerical values between the top two letters, and add 1 to give the value of the letter in the lower box

Report Error

View answer Workspace Report Error Discuss

52 6525
Q:

What do the functions atoi(), itoa() and gcvt () do? Show how would you use them in a program.

Answer

atoi()         Converts a string to an integer.


itoa()         Convert an integer to a string


gcvt()        Converts a floating-point number to a string


 


#include "stdlib.h"


main()


{


      char s[] = "12345";


      char buffer [15], string[20];


      int i;


      


      i = atoi (s);


      printf("\n%d",i);


 


       gcvt (20.141672, 4, buffer);


       printf ("\n%s", buffer);


 


       itoa(15, string,2);


        printf ("\n%s", string);


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 6523