Questions

Q:

Where was India's first F1 circuit built?

A) Jaipur B) Coimbatore
C) Noida D) Chennai
 
Answer & Explanation Answer: C) Noida

Explanation:

Fi circuit refers to Formula One, is the highest class of open-wheeled auto racing defined by FIA, motorsport's world governing body.

 

The Buddh International Circuit is an Indian motor racing circuit in Greater Noida, Uttar Pradesh was India's first F1 circuit.

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

5 2499
Q:

Which of the following is an Organic Molecule?

A) Nitrogen gas B) Ammonia
C) Fructose D) Water
 
Answer & Explanation Answer: C) Fructose

Explanation:

Fructose is an Organic molecule among the given options.

  

Organic Molecules :

An organic molecule is one which contains carbon, although not all compounds that contain carbon are organic molecules. Noticeable exceptions are carbon monoxide (CO), carbon dioxide (CO2), carbonates (e.g. calcium carbonate), carbides (e.g. calcium carbide) and cyanides (e.g. sodium cyanide). Pure carbon compounds such as diamond and graphite are also not organic compounds. Organic molecules can range in size from simple molecules to complex structures containing thousands of atoms.

 

Although carbon is present in all organic compounds, other elements such as hydrogen (H), oxygen(O), nitrogen (N), sulfur (S) and phosphorus (P) are also common in these molecules.

 

In simple, Molecules needed for life that have carbon are called Organic Molecules.

Report Error

View Answer Report Error Discuss

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

1 2499
Q:

Which indian state banned the forceful religious conversions

Answer

Tamil Nadu

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

43 2498
Q:

Who wrote the line: ' A thing of beauty is a joy for ever '

A) P.B.Shelley B) William Wordsworth
C) John Keats D) Robert Browning
 
Answer & Explanation Answer: C) John Keats

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

1 2498
Q:

In the following question, select the missing number from the given series.

1, 2, 6, 42, ?

A) 1696 B) 1036
C) 1806 D) 984
 
Answer & Explanation Answer: C) 1806

Explanation:
Report Error

View Answer Report Error Discuss

0 2498
Q:

The parliament of Great Britain is housed in which of these buildings?

A) Palace of Westminster B) The town of London
C) Buckingham palace D) Old Bailey
 
Answer & Explanation Answer: A) Palace of Westminster

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

10 2498
Q:

Which of the following is not a monosaccharide? 

A) Fructose B) Glucose
C) Galactose D) Sucrose
 
Answer & Explanation Answer: D) Sucrose

Explanation:

Sucrose is not a monosaccharide.

 

Monosaccharides are simple carbohydrates molecules that cannot be broken down into smaller molecules of other carbohydrates.

 

Glucose, galactose and fructose are examples of Monosaccharides.

Report Error

View Answer Report Error Discuss

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

1 2497
Q:

Write a c program to create dos command type.

Answer

#include
int main( int count,char * argv[] ) {
    int i;
    FILE *ptr;
    char *str;
    char ch;
    if( count == 1) {


         printf( "The syntax of the command is incorrect.\n" );
    }
    for( i=1;i<cout;i++ ){
         ptr=fopen(argv[i],"r");
         if(ptr==NULL){
             printf("The system cannot find the file specified.");
             if(count>2)
                 printf("\nError occurred while procesing : %s.\n",argv[i]);
         }
         else {
             if(count>2) {
                 printf("%s\n\n",argv[i]);
             }
             while((ch=getc(ptr))!=-1)
                 printf("%c",ch);
         }
         fclose(ptr);
    }
    return 0;
}


 


Save the above file as open.c, compile and execute the go to command mode (current working directory) and write: open xy.c (xy.c any file present in that directory)
To run the open command in all directories and drive you will have to give the path of current working directory in command mode. Write:
C:tc\bin>PATH c:\tc\bin
Now press enter key. Now your open command will work in all directory and drive.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2496