Questions

Q:

Webbed neck is a characteristic of

A) Down's syndrome B) Turner's syndrome
C) Klinefelter's syndrome D) Cri-du-chat syndrome
 
Answer & Explanation Answer: B) Turner's syndrome

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 2126
Q:

Gaur dance is a popular folk dance of ____________.

A) Chhattisgarh B) Tripura
C) Jharkhand D) Uttarakhand
 
Answer & Explanation Answer: A) Chhattisgarh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2126
Q:

Which one of the following is the correct relation between the Kelvin temperature (T) and the Celsius temperature (fc)?

A) These are two independent temperature scales B) T = tc
C) T = tc - 273.15  D) T = tc + 273.15 
 
Answer & Explanation Answer: D) T = tc + 273.15 

Explanation:

Lord Kelvin, working in Scotland, developed the Kelvin scale in 1848. His scale uses molecular energy to define the extremes of hot and cold. Absolute zero, or 0 K, corresponds to the point at which molecular energy is at a minimum. The Kelvin scale is preferred in scientific work, although the Celsius scale is also commonly used. Temperatures measured on the Kelvin scale are reported simply as K, not °K.

T (in °C) + 273.15 = T (in K)

T (in K) − 273.15 = T (in °C)

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2126
Q:

In each of the questions given below, a passage has been given which are either situational based or describes a scenario. Below each passage, a question has been given which is framed to make you to infer something out of it. Mark out the correct inference as your answer.
India's leading and most popular food delivery start-up, Swiggy landed in a soup on Wednesday, after four people claiming to be current and former employees allegedly revealed fraudulent
and unethical means practiced at the company, in a blog post.
Which of the following can be said about the allegations?

A) Defragmented B) Ambiguous
C) Definitive D) Anecdotal
 
Answer & Explanation Answer:

Explanation:

Defragmented means to run a process that collects fragments of files and sorts them into contiguous sections on one or more hard disks or hard disk partitions, thus speeding up file
management.
Ambiguous means to be of uncertain nature or significance.
Definitive means clearly defined or formulated.
Anecdotal means to have the character of an anecdote.
Speculative means not based on fact or investigation.
Hence, the correct answer is 5.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

0 2126
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best expresses the same sentence in Passive/Active voice.

Ram was singing a beautiful song for his mother.

A) A beautiful song was being sung by Ram for his mother. B) A beautiful song was sang by Ram for his mother.
C) A beautiful song was sung by Ram for his mother. D) A beautiful song was sung for his mother by Ram.
 
Answer & Explanation Answer: A) A beautiful song was being sung by Ram for his mother.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2125
Q:

....... produces a usable form of energy for the cell.

A) Ribosomes B) Plastids
C) Mitochondria D) Chloroplast
 
Answer & Explanation Answer: C) Mitochondria

Explanation:

Mitochondria are organelles that generate most of the chemical energy needed to power the cell's biochemical reactions. Hence, thay are also called as Power house of the cell.

 

mitochondria1593761207.jpg image

 

* Chemical energy produced by the mitochondria is stored in a small molecule called adenosine triphosphate (ATP).

 

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

6 2125
Q:

Name the veteran Agriculture Scientist who was recently awarded the 1st World Agriculture Prize for 2018.

A) Dr. Deepak Kumar B) Prof. Rakesh Agnihotri
C) Prof. MS Swaminathan D) None of the above
 
Answer & Explanation Answer: C) Prof. MS Swaminathan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2125
Q:

Write a c program to check whether a number is strong or not.

Answer

#include<stdio.h>
int main(){
  int num,i,f,r,sum=0,temp;

  printf("Enter a number: ");
  scanf("%d",&num);
 
  temp=num;
  while(num){
      i=1,f=1;
      r=num%10;

      while(i<=r){
         f=f*i;
        i++;
      }
      sum=sum+f;
      num=num/10;
  }
  if(sum==temp)
      printf("%d is a strong number",temp);
  else
      printf("%d is not a strong number",temp);

  return 0;
}

Sample output:
Enter a number: 145
145 is a strong number

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2125