Questions

Q:

Which one of the following factors contributes to hypertension? 

A) A vigorous exercise regimen B) A diet that lacks protein
C) A high-fat diet D) A lack of sleep
 
Answer & Explanation Answer: C) A high-fat diet

Explanation:

In the given options, a high-fat diet is the only factor that contributes to hypertension.

Report Error

View Answer Report Error Discuss

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

1 2380
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 2378
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 2377
Q:

MOV extension refers usually to what kind of files?

A) Audio B) Movies or other Videos
C) Images D) Documents
 
Answer & Explanation Answer: B) Movies or other Videos

Explanation:

A .MOV file is a common multimedia container file format developed by Apple. It may contain multiple tracks that store different types of media data and is often used for saving movies and other video files.

Report Error

View Answer Report Error Discuss

3 2377
Q:

The chief constituent of gobar gas is

A) Methane B) Carbon dioxide
C) Ethane D) Hydrogen
 
Answer & Explanation Answer: A) Methane

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2377
Q:

The relationship between a cathode and an anode involves

A) Electrons B) Neutrons
C) Protons D) Diodes
 
Answer & Explanation Answer: A) Electrons

Explanation:

The relationship between a cathode and an anode involves the transfer of electric charge between them. The cathode is the negative terminal on the battery, which has zero electric potential. The anode is the positive terminal on the battery and has the battery's maximum electric potential. Current flows from the battery's anode (positive terminal) to the cathode (negative terminal). In electron flow, electrons leave the negative side of the battery and move towards the positive side of the battery.

 

Hence, The relationship between a cathode and an anode involves Electrons.

Report Error

View Answer Report Error Discuss

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

3 2377
Q:

Select the antonym of
celibate

A) chaste B) virtuous
C) promiscuous D) continent
 
Answer & Explanation Answer: C) promiscuous

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

1 2377
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 2377