Questions

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

When to use colon?

Answer

A colon is used to connect two sentences when the second sentence expands, illustrates, explains, summarizes, or sharpens the first. Both sentences should be complete, and their content should be very closely related.


 


Example:


This girl has two favorite hobbies: watching movies and seeing how long she can hold her breathe.

Report Error

View answer Workspace Report Error Discuss

Subject: English Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO

1 2431
Q:

Which of the following is a healthy blood pressure level?

A) 120/80 B) 140/90
C) 135/75 D) 130/70
 
Answer & Explanation Answer: A) 120/80

Explanation:

A normal reading would be any blood pressure below 120/80 mm Hg and above 90/60 mm Hg in an adult. If you're in the normal range, no medical intervention is needed.

However, you should maintain a healthy lifestyle and healthy weight to help prevent hypertension from developing.

Report Error

View Answer Report Error Discuss

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

4 2431
Q:

After how many years Rajya Sabha is dissolved?

A) It is never dissolved B) 2 years
C) 5 years D) 6 years
 
Answer & Explanation Answer: A) It is never dissolved

Explanation:

Rajya Sabha is a permanent body and is not subject to dissolution. However, one third of the members retire every second year, and are replaced by newly elected members.

Report Error

View Answer Report Error Discuss

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

18 2430
Q:

Which state police has launched e-learning portal 'Nipun' for training its personnel?

A) Delhi B) Uttar Pradesh
C) Telangana D) Maharashtra
 
Answer & Explanation Answer: A) Delhi

Explanation:

Delhi state police has launched e-learning portal 'Nipun' for training all its police officers to give up to date information through specialized courses designed by experts.

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

Improve the bracketed part of the sentence.
(People have been long known) how important the trees are to them.

A) People have to know long B) People had long known
C) People have long known D) No improvement
 
Answer & Explanation Answer: C) People have long known

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2430
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 2430
Q:

The first formed primary xylem elements are called ___________.

A) Metaxylem B) Protoxylem
C) Xylem fibres D) Xylem parenchyma
 
Answer & Explanation Answer: B) Protoxylem

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 2429