Questions

Q:

Where does most weather occur in the atmosphere?

A) Ionosphere B) Stratosphere
C) Troposphere D) Mesosphere
 
Answer & Explanation Answer: C) Troposphere

Explanation:

The troposphere is the lowest layer of the atmosphere and where most clouds are. That means all weather is in the troposphere. Almost all weather occurs in the Troposphere, basically, the lowest layer that goes up to about 10 - 15 kms.

Report Error

View Answer Report Error Discuss

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

3 2897
Q:

The first female to take over the controls of a NASA spaceship is

A) Wilkie Collins B) Eileen Collins
C) Colette D) Kim Clijsters
 
Answer & Explanation Answer: B) Eileen Collins

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

0 2896
Q:

Why is RNA necessary to act as a messenger?

Answer

Why_is_RNA_necessary_to_act_as_a_messenger1548936409.jpg image


RNA acts as a messenger in between the DNA and ribosome as it transforms the genetic information from the DNA and as DNA is big and can't fit into the nuclear pores. 

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

1 2896
Q:

ACTH stimulates the adrenal cortex to release corticosteroid hormones.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

ACTH means Adrenal Corticotrophic Hormone.


CRH - Corticotrophin Releasing Hormone produced by hypothalamus stimulates the pituitary gland to release the ACTH which in turn produces corticosteroid hormones by adrenal glands.


 


Hence, the given statement is TRUE.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2895
Q:

What type of map is best suited for maritime navigation?

A) Mercator projection B) Conic projection
C) Geologic D) Topographic
 
Answer & Explanation Answer: A) Mercator projection

Explanation:

Mercator projection type of maps are best suited for maritime navigations.

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 2895
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 2895
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2895
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 2894