Questions

Q:

Who Built The Suez Canal?

A) Theodore Roosevelt B) Ferdinand de Lesseps
C) Robert Mills D) James Hoban
 
Answer & Explanation Answer: B) Ferdinand de Lesseps

Explanation:

The Suez Canal in Egypt, is a 101 mile long canal that connects the Mediterranean Sea with the Gulf of Suez, a northern branch of the Red Sea. It was built in 1869 by Ferdinand de Lesseps.

Report Error

View Answer Report Error Discuss

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

6 2903
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 2902
Q:

Most highly intelligent mammals are

A) Elephants B) Kangaroos
C) Whales D) Dolphins
 
Answer & Explanation Answer: D) Dolphins

Explanation:

Dolphins are the most highly intelligent mammals.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

9 2902
Q:

Which of the following planets is known as Earth's twin?

A) Mars B) Saturn
C) Uranus D) Venus
 
Answer & Explanation Answer: D) Venus

Explanation:

Venus is known as earth's twin because of its closeness to the earth with respect to size, mass(weight) and density.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

1 2901
Q:

What two scientists established the structure of dna?

A) Rosalind Franklin and Maurice Wilkins B) James Watson and Francis Crick
C) Rosalind Franklin and Francis Crick D) James Watson and Maurice Wilkins
 
Answer & Explanation Answer: B) James Watson and Francis Crick

Explanation:

In the early 1950s two scientists, Rosalind Franklin and Maurice Wilkins, studied DNA using x-rays. Franklin produced an x-ray photograph that allowed two other researchers, James Watson and Francis Crick to work out the 3D structure of DNA. The structure of DNA was found to be a double helix.

Report Error

View Answer Report Error Discuss

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

0 2901
Q:

When is cladistics more useful than linnaean taxonomy?

A) nomenclature B) classification
C) identification D) evolutionary relationship
 
Answer & Explanation Answer: D) evolutionary relationship

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2901
Q:

What is the retirement age of the Prime Minister of India?

A) 60 years B) 70 years
C) 65 years D) No limit
 
Answer & Explanation Answer: D) No limit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams , CAT

0 2900
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 2899