Questions

Q:

Serious dehydration may cause all of the following, EXCEPT

A) muscle cramps B) torn ligaments
C) reduced blood volume D) increased heart rate
 
Answer & Explanation Answer: B) torn ligaments

Explanation:

Serious_dehydration_may_cause_all_of_the_following,_EXCEPT1558508048.jpg image

 

Dehydration is a loss of body fluid that impairs normal bodily functions. Serious dehydration may cause muscle cramps, reduced blood volume and increased heart rate.

Report Error

View Answer Report Error Discuss

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

4 2511
Q:

Which indian state banned the forceful religious conversions

Answer

Tamil Nadu

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

43 2511
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 2510
Q:

How long are profissional Golf tour players alloted per shot

A) 45 seconds B) 25 seconds
C) 1 minutes D) 2 minutes
 
Answer & Explanation Answer: A) 45 seconds

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

2 2509
Q:

Who invented Radar ?

Answer

Robert Watson Watt

Report Error

View answer Workspace Report Error Discuss

Subject: Inventions

1 2509
Q:

Which of the statements given below are correct?

A) In 2017, Gary Cahill captained the Premier League team Arsenal.

B) In 2018 IPL auctions, Kolkata Knight Riders retained Sunil Narine.

C) Roger Federer won the Tennis 2017 Wimbledon Championships Men's Singles.

A) Only B B) B and C
C) A, B and C D) None of these
 
Answer & Explanation Answer: B) B and C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 2509
Q:

Improve the bracketed part of the sentence.

 

It was hard to believe that she (were) dead for three months.

 

A) was B) has been
C) is D) no improvement
 
Answer & Explanation Answer: B) has been

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2509
Q:

Infection of salivary glands by a virus leads to 

A) tetanus B) mumps
C) pyorrhoea D) ulcers
 
Answer & Explanation Answer: B) mumps

Explanation:

Mumps : This is a swelling caused by information of parotid glands placed in front of our ear region. The inflammation is caused by a virus.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

3 2509