Questions

Q:

Is vitamin B12 fat soluble?

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

Explanation:

Vitamin B12 is the only water-soluble vitamin that can be stored in the liver for many years. There are 9 water soluble vitamins.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

1 2891
Q:

Which one of the following National Highways is the longest

A) NH-2 B) NH-7
C) NH-8 D) NH-15
 
Answer & Explanation Answer: B) NH-7

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 2891
Q:

What is the purpose of balancing chemical equations?

A) law of conservation of energy B) law of conservation of mass
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) law of conservation of mass

Explanation:

The main purpose of balancing chemical equations is to make the mass of reactants is equal to mass of products obtained after the reaction. Hence, to make law of conservation of mass is purpose of balancing chemica equations.

Report Error

View Answer Report Error Discuss

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

1 2890
Q:

Organisms that depend only on raw plant products are said to be 

A) herbivorous B) vegetarian
C) carnivorous D) omnivorous
 
Answer & Explanation Answer: A) herbivorous

Explanation:

Herbivorous organisms are those that take for their food, plant parts like leaves raw in contrast to vegetarian, which means that plant products are taken raw or after being cooked.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

3 2890
Q:

Muscles get tired when there is shortfall of ___________.

A) Lactic acid B) Na+ ions
C) ATP D) Sulphates
 
Answer & Explanation Answer: C) ATP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

4 2890
Q:

Who designed the Bombay Secretariat in the 1870s?

A) H.St. Clair Wilkins B) Sir Cowasjee Jehangir Readymoney
C) Purushottamdas Thakurdas D) Nusserwanji Tata
 
Answer & Explanation Answer: A) H.St. Clair Wilkins

Explanation:

The Bombay Secretariat was completed in 1874 and designed by Captain Henry St. Clair Wilkins in the Venetian Gothic style. With its arcaded verandahs and huge gable over the west facade, it was a monument to the civic pride of Bombay's British rulers.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2890
Q:

In the below puzzle, a word starts and ends with the same letter. Can you figure out what the word is?

_otato_

Answer

rotator

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles

18 2890
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 2889