Questions

Q:

Which is the longest National Highway in India?

A) NH - 47 B) NH - 4
C) NH - 7 D) NH - 44
 
Answer & Explanation Answer: D) NH - 44

Explanation:

NH - 44 covering Srinagar to Kanyakumari is the longest National Highway in India by the NHDP. It covers a distance of 3,745 Kms. It was previously known as NH - 7.

Report Error

View Answer Report Error Discuss

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

1 2904
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 2903
Q:

Where is the Forest Reserve Institute of India located

A) Bhopal B) Dehradum
C) Lucknow D) Delhi
 
Answer & Explanation Answer: B) Dehradum

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

7 2903
Q:

Which of the following CANNOT be considered a single phase?

A) a heterogeneous mixture B) a pure solid
C) a pure liquid D) a homogeneous mixture
 
Answer & Explanation Answer: A) a heterogeneous mixture

Explanation:

A pure solid and a pure liquid are definitely a single phase because they are so united, or homogeneous. This leads to a homogeneous mixture also being a single phase.

 

Hence, the option that cannot be considered a single phase is A. a heterogeneous mixture.

Report Error

View Answer Report Error Discuss

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

5 2903
Q:

Which of the following commands will allow a Linux on iSeries administrator to quickly scan backup tapes for files saved via a tar command on a Linux system?

A) The Linux command mt B) The Linux command cpio
C) The OS/400 command RST option(*print) D) The OS/400 command DSPTAP option(*savrst)
 
Answer & Explanation Answer: B) The Linux command cpio

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2902
Q:

I come in different colors and shapes. Some parts of me are curvy some are straight. You can put me anywhere you like but there is only one right place for me. What am I?

Answer

A Jig saw puzzle pieces are in different colors which have different shapes. 


You can put it anywhere you like but there is only one right place for it to be fit in it.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , CAT , Bank Exams , AIEEE
Job Role: IT Trainer , Bank PO , Bank Clerk , Analyst

4 2901
Q:

Largest district in Bangladesh?

A) Narayangunj B) Chittagong
C) Khagrachari D) Rangamati
 
Answer & Explanation Answer: D) Rangamati

Explanation:

The largest district in Bangladesh is Rangamati. And smallest district is Narayangunj.

Largest_district_in_Bangladesh1554457968.png image

Report Error

View Answer Report Error Discuss

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

5 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 2900