Questions

Q:

In the following question, out of the four alternatives, select the alternative which will improve the bracketed part of the sentence. In case noimprovement is needed, select "no improvement".

Opening the door to her each morning is like (lets) a breath of fresh air into my world.

A) let B) to let
C) letting D) no improvement
 
Answer & Explanation Answer: C) letting

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2105
Q:

Which process requires no energy from the cell?

A) Osmosis B) Diffusion
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The processes both osmosis and diffusion come under passive transport and require no energy. The movement of solute from the region of higher concentration to the region of lower concentration is nothing but diffusion.

Report Error

View Answer Report Error Discuss

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

2 2105
Q:

Who is the Chief Minister of Punjab as of 1st March 2018?

A) Navjot Singh Sidhu B) Captain Amarinder Singh
C) Parkash Singh Badal D) Naveen Mahindra
 
Answer & Explanation Answer: B) Captain Amarinder Singh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: CAT , Bank Exams

0 2105
Q:

In the following question, out of the four alternatives, select the alternative which will improve the bracketed part of the sentence. In case no improvement is needed, select "no improvement".

 

He had had a short illness, there (had been) a brief time of acute suffering, then all was over.

 

A) have been B) have being
C) had being D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

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

Candidate Key in DBMS?

Answer

A candidate key is a column, or set of columns, in a table that can uniquely identify any database record without referring to any other data. Each table may have one or more candidate keys, but one candidate key is unique, and it is called the primary key.

Report Error

View answer Workspace Report Error Discuss

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

Point out the error, if any, in the following program.

main()

{

    int i = 4, j = 2;

    switch(i)

    {

     case 1 :

       printf (''\n To err is human, to forgive is against company policy.");

        break;

      case j :

       printf (''\n if you have nothing to do, don't do it here.");

       break;

    }

}

Answer

Constant expression required in the second case, we cannot use j.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2105