Questions

Q:

Which startup acquired Google's satellite imaging business in 2017 ?

A) NovaWurks B) PlanetiQ
C) Planet Labs D) UrtheCast
 
Answer & Explanation Answer: C) Planet Labs

Explanation:

American startup Planet Labs, that launches small satellites into orbit and sells the imagery, has announced its acquisition of Google's 'Terra Bella' satellite business. As part of the agreement, 60 Google employees will join the startup founded by ex-NASA scientists. Terra Bella, was acquired by Google in 2014 for $500 million and that time it was known as Skybox Imaging.

Report Error

View Answer Report Error Discuss

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

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

In the diagram, M is the midpoint of YZ, angle XMZ = 32°, and angle XYZ = 16°. The measure of angle XZY is:

A) 68° B) 84°
C) 78° D) 74°
 
Answer & Explanation Answer: D) 74°

Explanation:
Report Error

View Answer Report Error Discuss

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:

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:

Synonym of Sad?

A) Glad B) Lucky
C) Somber D) Fortunate
 
Answer & Explanation Answer: C) Somber

Explanation:

Sad means being unhappy, sorrowful, mournful, wistful,...

 

Hence, Somber means cheerless i.e, unhappy which is synonym of sad. All other options are opposites of Sad.

Report Error

View Answer Report Error Discuss

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

0 2893