Questions

Q:

Which indian state banned the forceful religious conversions

Answer

Tamil Nadu

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

43 2502
Q:

The quotation ' Some of born great , Some achieve greatness, and some have greatness, thrust upon them ' is atributed to

A) Bertrand Russell B) Abraham Lincoln
C) William Shakeshpare D) George Orwell
 
Answer & Explanation Answer: C) William Shakeshpare

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

1 2502
Q:

The occasional development of warm ocean surface waters along the coast of Ecuador and Peru is known as 

A) EI Nino and La Nina B) EI Nino
C) La Nina D) Southern Oscillation
 
Answer & Explanation Answer: B) EI Nino

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

4 2502
Q:

Which of the following describes loyalists?

A) They thought Patriots were too radical B) They decided to fight against the British
C) They wanted to return to Britain D) They supported British taxation
 
Answer & Explanation Answer: A) They thought Patriots were too radical

Explanation:

They thought Patriots were too radical is the statement which describes loyalists correctly.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2502
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 2501
Q:

Gasoline is useful in cars because it has

A) chemical potential energy B) electrical potential energy
C) gravitational potential energy D) kinetic energy
 
Answer & Explanation Answer: A) chemical potential energy

Explanation:

Gasoline is a colorless petroleum-derived flammable liquid that is used primarily as a fuel in spark-ignited internal combustion engines. It consists mostly of organic compounds obtained by the fractional distillation of petroleum, enhanced with a variety of additives. It is also called as Petrol. It has chemical potential energy, in combustion it is turned into light, sound, heat and kinetic energy.

Report Error

View Answer Report Error Discuss

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

2 2501
Q:

A gland below the bladder and surrounding the urethra is

A) prostate B) seminal vesicle
C) bartholin D) vas deferens
 
Answer & Explanation Answer: A) prostate

Explanation:

                               prostategland1531291431.jpg image

A gland surrounding the neck of the bladder in male mammals and releasing a fluid component of semen is Prostate gland which is below the bladder and surrounding the urethra.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

3 2500
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 2500