Questions

Q:

The decadal growth in the population of India during 1991-2001 is close to 

A) 13% B) 17%
C) 21% D) 25%
 
Answer & Explanation Answer: C) 21%

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

1 2842
Q:

Which is the longest railway platform in the world?

A) Mumbai B) Gorakhpur
C) Thane D) Kochi
 
Answer & Explanation Answer: B) Gorakhpur

Explanation:

Gorakhpur railway platform in Uttar Pradesh is the longest railway platform in the world.

Report Error

View Answer Report Error Discuss

Filed Under: Longest, Shortest, Deepest
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2842
Q:

The 462nd Kandoori Festival 2019 has celebrated in?

A) Telangana B) West Bengal
C) Tamilnadu D) Uttar Pradesh
 
Answer & Explanation Answer: C) Tamilnadu

Explanation:

Kandoori festival is a festival which is celebrated by the Muslims of South India every year with great enthusiasm and grace. The festival is celebrated in commemoration of the anniversary of the saint's death, and pilgrims participate in the rituals and rites.

The 462nd annual Kandoori festival has commenced at nearby Nagore Dargah, a famous Muslim pilgrim centre in Tamilnadu.

Report Error

View Answer Report Error Discuss

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

3 2842
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 2841
Q:

Stars are held together by

A) Gravitational forces B) Electrical forces
C) Ionic forces D) Magnetic forces
 
Answer & Explanation Answer: A) Gravitational forces

Explanation:

A star is a self luminous astronomical object and shines due to internal radiation from the enrgy sources. All stars are held together by their own gravity called Gravitational force.

Stars_are_held_together_by1560151249.jpg image

Report Error

View Answer Report Error Discuss

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

5 2841
Q:

Systems biology is mainly an attempt to

A) simplify complex problems by reducing the system into smaller, less complex units. B) understand the behavior of entire biological systems.
C) analyze genomes from different species. D) speed up the technological application of scientific knowledge.
 
Answer & Explanation Answer: B) understand the behavior of entire biological systems.

Explanation:

Systems biology is mainly an attempt to understand the behavior of entire biological systems by studying interactions among its component parts.

Report Error

View Answer Report Error Discuss

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

0 2841
Q:

Atacama  desert is located in 

A) dense forest B) grassland
C) Scrub D) all of these
 
Answer & Explanation Answer: D) all of these

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 2841
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 2840