Questions

Q:

A permanent magnet can affect

A) Magnets B) Electromagnets
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A permanent magnet can affect both magnets and electromagnets.

a_permanent_magnet_can_affect1559196137.jpg image

A permanent magnet has natural magnetic properties while a temporal magnet is created by artificial means. Permanent magnets do not lose their magnetic ability.

Report Error

View Answer Report Error Discuss

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

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

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

Which Malayalam actor received the Special Jury National Award for the Telugu film 'Janatha Garage'?

A) Mohanlal B) Prithviraj
C) Suresh Gopi D) Mammooty
 
Answer & Explanation Answer: A) Mohanlal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 2012
Q:

What is virtual memory?

Answer

Virtual memory is hardware technique where the system appears to have more memory that it actually does. This is done by time-sharing, the physical memory and storage parts of the memory one disk when they are not actively being used.

Report Error

View answer Workspace Report Error Discuss

0 2011
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 2011
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 2011