Questions

Q:

Which of the following does not occur during Mitosis?

A) spindle formation B) condensation of the chromosomes
C) breakdown of the nuclear membrane D) replication of the DNA
 
Answer & Explanation Answer: D) replication of the DNA

Explanation:

Replication of the DNA does not occur during Mitosis.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

2 2912
Q:

Which poet first popularized the sonnet form?

A) Edmund Spencer B) Francesco Petrarch
C) Shakespeare D) None of the above
 
Answer & Explanation Answer: B) Francesco Petrarch

Explanation:

The sonnet is a fourteen-line poem written in iambic pentameter, which employ one of several rhyme schemes and adhere to a tightly structured thematic organization. Francesco Petrarch first popularized the sonnet form and after that many others like Shakespeare, Edmund Spencer and many other started that.

Report Error

View Answer Report Error Discuss

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

2 2912
Q:

The total number of judges of the International Court of Justice is

A) 10 B) 12
C) 15 D) 18
 
Answer & Explanation Answer: C) 15

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2911
Q:

Tubes that bifurcate from the windpipe

A) Bronchi B) pleura
C) Apex D) Adenoids
 
Answer & Explanation Answer: A) Bronchi

Explanation:

Tubes that bifurcate from the windpipe are called Bronchi.

Report Error

View Answer Report Error Discuss

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

1 2911
Q:

Biogeochemical cycles are crucial to ecosystem function because

A) they keep the planet warm enough for living things to survive B) energy flows through ecosystems in one direction only and is eventually dissipated as heat
C) they prevent catastrophic extinctions D) nutrients and other life-sustaining molecules are in limited supply and must be continually recycled
 
Answer & Explanation Answer: D) nutrients and other life-sustaining molecules are in limited supply and must be continually recycled

Explanation:

Biogeochemical cycles are crucial to ecosystem function because ::

 

1. Chemical elements are available in only limited amounts and must be recycled.

2. Nutrients and other life-sustaining molecules are in limited supply and must be continually recycled.

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

0 2911
Q:

The term fourth estate is used in reference to

A) The executive B) Parliament
C) Judiciary D) The Press and newspaper
 
Answer & Explanation Answer: D) The Press and newspaper

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2910
Q:

Which of the following is an instance of informative speaking?

A) a student sharing ideas about leadership based on a book she has read B) a student on stage telling jokes during the intermission of a play
C) a student urging an instructor to reconsider the due date for an assignment D) All of the above
 
Answer & Explanation Answer: A) a student sharing ideas about leadership based on a book she has read

Explanation:

Informative Speaking is a 10-minute presentation written and performed by the student. Informative requires students to balance that content with delivery and style.

Here in the given options, option A) a student sharing ideas about leadership based on a book she has read, is an instance of informative speaking.

 

Students in Informative must be articulate, engaging, and smooth with their delivery at both a vocal and physical level.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO

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