Questions

Q:

Study of Life in outer space is known as

A) Endobiology B) Neobiology
C) Exobiology D) Intrabiology
 
Answer & Explanation Answer: C) Exobiology

Explanation:

Study of Life in outer space or search of life external to Earth is known as Exobiology.

Report Error

View Answer Report Error Discuss

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

1 2427
Q:

 Which isolation level does a database without logging default to?

A) committed read B) dirty read
C) mode ANSI D) repeatable read
 
Answer & Explanation Answer: B) dirty read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2427
Q:

The largest region of the brain is the

A) Cerebellam B) Cerebrum
C) Medullaoblangata D) None of the above
 
Answer & Explanation Answer: B) Cerebrum

Explanation:

Cerebrum is the largest region of the brain.

the_largest_region_of_the_brain_is_the1551789656.png image

Report Error

View Answer Report Error Discuss

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

2 2427
Q:

The Motto of Defence academy?

A) Do or Die B) Service Before Self
C) YES, OF COURSE WE CAN, RIGHT? D) Yours is here
 
Answer & Explanation Answer: B) Service Before Self

Explanation:

The National Defence Academy is formed by combining the cadets of three services Army, Navy and Air force. The Defence academy established on 7 December 1954. Its motto is "Service Before Self."

Report Error

View Answer Report Error Discuss

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

2 2426
Q:

Which country blocked wikipedia in all languages?

A) China B) Japan
C) India D) North Korea
 
Answer & Explanation Answer: A) China

Explanation:

China blocked wikipedia in all languages recently in May 2019.

Report Error

View Answer Report Error Discuss

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

5 2426
Q:

Which of these did progressives support?

Answer

One of the thing that progressive support would be: Direct election of senators.


 


The progressive wanted this so they could the candidate based on the person and not the party.
Direct election of senators will make it easier for them to elect the person that represent their value for the position.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

4 2426
Q:

The concept of due process refers to

A) banking B) justice
C) politics D) economy
 
Answer & Explanation Answer: B) justice

Explanation:

Due process is the legal requirement that the state must respect all legal rights that are owed to a person.

Therefore, due process refers to the criminal justice system operating within the bounds of the law.

Report Error

View Answer Report Error Discuss

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

2 2426
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,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=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

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

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2426