Questions

Q:

A man was slowly counting but unfortunately he miscounted. A little later he suffered a sharp pain is his back. Why?

Answer

The man want to buy a shirt went to a shop. He was counting the pins as he removed them from a new shirt. unfortunately, he missed one and wore.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: Bank Exams

11 3012
Q:

Nachiket Mor Committee was for

A) Financial Services B) 4G Scam
C) Spot Fixing in IPL D) None of the above
 
Answer & Explanation Answer: A) Financial Services

Explanation:

Nachiket Mor Committee on Comprehensive Financial Services for Small Businesses and Low Income Households (commonly known as the Nachiket Mor Committee) was an expert committee formed by Raghuram Rajan on 23 September 2013, after he was appointed as the governor of the Reserve Bank of India (RBI). It was headed by Nachiket Mor.

Nachiket_Mor_committee_was_for1566191952.jpg image

 

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

6 3012
Q:

Which of these is ATP?

A) 3 Phosphate groups attached to chromosome attached to Adenine B) 3 Phosphate groups attached to a Ribose attached to Adenine
C) 3 Phosphate groups attached to a Ribose attached to Thymine D) None of the above
 
Answer & Explanation Answer: B) 3 Phosphate groups attached to a Ribose attached to Adenine

Explanation:

ATP is a Adenosine Triphosphate.

 

ATP is 3 Phosphate groups attached to a Ribose attached to Adenine.

Report Error

View Answer Report Error Discuss

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

4 3012
Q:

Biological control is to check growth of 

A) plants B) animals
C) weeds D) one pest by another
 
Answer & Explanation Answer: D) one pest by another

Explanation:

Biological Control: This method is very effective. One pest is destroyed by another organism. For example the aphids are killed by lady beetle. The prickly pear is eradicted by cochineal insect. Here the advantage is, one does not use harmful chemicals which may get into the host plants.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

4 3012
Q:

Artocarpus integra is the scientific name of ___________.

A) Guava B) Pineapple
C) Silver Oak D) Jack fruit
 
Answer & Explanation Answer: D) Jack fruit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

2 3012
Q:

India's first-ever autism township will come up in?

A) Telangana B) West Bengal
C) Karnataka D) Gujarat
 
Answer & Explanation Answer: B) West Bengal

Explanation:

India's first-ever autism township will come up in West Bengal.

Report Error

View Answer Report Error Discuss

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

2 3011
Q:

Which of the following books was written by Gandhiji

A) Discovery of India B) My Experiments with Truth
C) India wins Freedom D) Freedom at Midnight
 
Answer & Explanation Answer: B) My Experiments with Truth

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

2 3010
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 3010