Questions

Q:

A floppy disk contains

A) Sectors only B) Circular tracks only
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A floppy disk contains both circular tracks and sectors in it.

Report Error

View Answer Report Error Discuss

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

4 1954
Q:

Who is the custodian of Contingency Fund of India?

A) The Prime Minister B) Judge of Supreme Court
C) The President D) The Finance Minister
 
Answer & Explanation Answer: C) The President

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 1954
Q:

Business fluctuations refer to

A) the ups and downs in overall business B) expansion is rapid
C) contraction is severe D) None of the above
 
Answer & Explanation Answer: A) the ups and downs in overall business

Explanation:

Business fluctuations refer to the ups and downs in overall business activity measured by changes in national​ income, employment and the price level.

Report Error

View Answer Report Error Discuss

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

2 1954
Q:

What would be the output of the following program?

main()

{

  int i=2 ;

  printf ("\n%d%d", ++i, ++i );

}

Answer

Output may vary from compiler to compiler.


The order of evaluation of the arguments to a function call is unspecified.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 1954
Q:

What can a location extension do?

Answer

Assist nearby customers in finding or calling your nearest location.

Report Error

View answer Workspace Report Error Discuss

0 1954
Q:

Queen Elizabeth I ascended the throne of England in the year

Answer

1558 AD

Report Error

View answer Workspace Report Error Discuss

Subject: World History

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

Economics is the study of how society manages its

A) Limited resources & limited wants B) Unlimited wants & unlimited resources
C) Limited wants & unlimited resources D) Limited resources & unlimited wants
 
Answer & Explanation Answer: C) Limited wants & unlimited resources

Explanation:

Economics is the study of how society manages its scarce resources i.e, Limited wants & unlimited resources.

Report Error

View Answer Report Error Discuss

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

3 1953