Questions

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

What is the Motto of Indian Army?

A) Service Before Self B) We Protect
C) Duty Unto Death D) Service & Loyalty
 
Answer & Explanation Answer: A) Service Before Self

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2422
Q:

Which of the following country is known as Kalaallit Nunaat, meaning "Land of the people"?

A) Estonia B) Iceland
C) Panama D) Greenland
 
Answer & Explanation Answer: D) Greenland

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

0 2422
Q:

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2422
Q:

CM is about managing the different items in the product, and changes in them.

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

Explanation:

Configuration Management is a support for software in managing the different items in the product, and changes in them.

Report Error

View Answer Workspace Report Error Discuss

6 2421
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 2421
Q:

The term facultative anaerobe refers to an organism that

A) Uses oxygen or grows without oxygen. B) Requires less oxygen than is present in air.
C) Prefers to grow without oxygen. D) Is killed by oxygen.
 
Answer & Explanation Answer: A) Uses oxygen or grows without oxygen.

Explanation:

The term facultative anaerobe refers to an organism that which uses oxygen when it is present or grows without oxygen when it is not there.

Report Error

View Answer Report Error Discuss

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

2 2421
Q:

India's heaviest satellite built by ISRO is

A) GSAT - 11 B) GSAT - 09
C) GSAT - 13 D) GSAT - 10
 
Answer & Explanation Answer: A) GSAT - 11

Explanation:

India’s heaviest satellite GSAT-11 launched successfully from French Guiana. GSAT-11 is going to provide high data connectivity of 16 GBPS to the country.

Report Error

View Answer Report Error Discuss

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

0 2420