Questions

Q:

For how many months is a cheque valid from the date of issue?

A) 1 month B) 2 months
C) 3 months D) 6 months
 
Answer & Explanation Answer: C) 3 months

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

31 2428
Q:

_____ ranked No.1 in world's Happiest country's list 2017 ?

A) Pakistan B) Spain
C) India D) Norway
 
Answer & Explanation Answer: D) Norway

Explanation:

Norway is the top most country in the world's happiest country's list 2017 and India ranks 122nd in the list below than the Pakistan and Bangladesh. 

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank Clerk

2 2428
Q:

Is cholesterol Hydrophobic or Hydrophilic?

A) Hydrophobic B) Hydrophilic
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Cholesterol is referred as an amphipathic molecule, that it contains its hydrophilic and hydrophobic parts.

Report Error

View Answer Report Error Discuss

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

1 2427
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 2427
Q:

Missing letters puzzle

Answer

Answer:  U


Explanation:  Start with the D on the outer left of the diagram, and move clockwise around the outer segments, then start on the N anti-clockwise around the inner segments. Letters advance through the alphabet in steps of 3, then 4, 5, and 6, repeating this sequence.

Report Error

View answer Workspace Report Error Discuss

5 2427
Q:

Read each sentence to find out whether there is any grammatical error or idiomatic error in it. The error, if any, will be in one part of the sentence. The letter of that part is the answer. If there is no error, mark the answer as No error. (Ignore errors of the punctuation if any).It was a long/ and uncomfortable journey / but he managed / to reach with time.

A) It was a long B) and uncomfortable journey
C) but he managed D) to reach with time.
 
Answer & Explanation Answer: D) to reach with time.

Explanation:

Here, “to reach in time” should be used. Idiom in times mean, not late. with enough time, to be able to do something

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2427
Q:

The purpose of hydrogenating unsaturated fats is to

The_purpose_of_hydrogenating_unsaturated_fats_is_to1552999400.jpg image

A) to make them more solid at room temperature B) to recommend daily intake as fiber
C) to make them more liquid D) None of the above
 
Answer & Explanation Answer: A) to make them more solid at room temperature

Explanation:

The purpose of hydrogenating unsaturated fats is to make them more solid at room temperature as it is easy store the product.

Report Error

View Answer Report Error Discuss

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

3 2426
Q:

Improve the bracketed part of the sentence.
I (have done) my exercises when keshav came to see me.

A) had done B) done
C) doing D) No improvement
 
Answer & Explanation Answer: A) had done

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2426