Questions

Q:

Bacteria and archaea are similar in which of the following?

A) Plasma membrane ester linkage B) Possessing prokaryotic cells
C) Peptidoglycan cell walls D) Methionine as the start signal for protein synthesis
 
Answer & Explanation Answer: B) Possessing prokaryotic cells

Explanation:

Bacteria and archaea are similar in possessing prokaryotic cells.

Report Error

View Answer Report Error Discuss

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

2 2013
Q:

What is an idle thread?

Answer

The special thread a dispatcher will execute when no ready thread is found.

Report Error

View answer Workspace Report Error Discuss

1 2013
Q:

During India's freedom struggle, the newspaper 'Young India' was published by

A) B.R. Ambedkar B) Subhash Chandra Bose
C) Mahatma Gandhi D) Muhammad Ali Jinnah
 
Answer & Explanation Answer: C) Mahatma Gandhi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

7 2013
Q:

Around twelfth century, Sufi Silsilas began to ciystgdlize in different parts of the Islamic world to signify

1.continuous link between the master and disciple

2. unbroken spiritual genealogy to the Prophet Muhammad

3. the transmission of spiritual power and blessings to devotees

Select the correct answer using the code given below.

A) 1 and 2 only B) 2 only
C) 1 and 3 only D) 1, 2 and 3
 
Answer & Explanation Answer: D) 1, 2 and 3

Explanation:

Sufi silsilas began to crystallise in different parts of the Islamic world around the twelfth century. The word silsila literally means a chain, signifying a continuouslink between master and disciple, stretching as an unbroken spiritual genealogy to the Prophet Muhammad. It was through this channel that spiritual power and blessings were transmitted to devotees. Special rituals of initiation were developed in which initiates took an oath of allegiance, wore a patched garment, and shaved their hair. Thus, all statements are correct.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2013
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 2012
Q:

What is SCSI?

Answer

SCSI - Small computer systems interface is a type of interface used for computer components such as hard drives, optical drives, scanners and tape drives. It is a competing technology to standard IDE (Integrated Drive Electronics).

Report Error

View answer Workspace Report Error Discuss

0 2012
Q:

The Pie Day is observed on?

A) March 13 B) March 14
C) March 3 D) March 4
 
Answer & Explanation Answer: B) March 14

Explanation:

In the month/day format 3/14 i.e, Mrach 14th is celebrated as Pie Day as its value is 3.14.

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2012
Q:

Regulatory policies protect consumers by

A) controlling the supply of money B) providing public assistance programs
C) overseeing and limiting businesses D) deciding how to tax and spend money
 
Answer & Explanation Answer: C) overseeing and limiting businesses

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2012