Questions

Q:

Which name was given to cyclone that struck AndhraPradesh recently?

A) Gaja B) Ockhi
C) Phethai D) Neelam
 
Answer & Explanation Answer: C) Phethai

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2004
Q:

Who was the town-planner of Chandigarh?

A) Le Corbusier B) Christopher Wren
C) Charles Correa D) Edward Lutyens
 
Answer & Explanation Answer: A) Le Corbusier

Explanation:

Le Corbusier was the town-planner of Chandigarh.

Who_was_the_town-planner_of_Chandigarh1551090897.jpg image

He was a Swiss-French architect, designer, painter, urban planner, writer, and one of the pioneers of what is now called modern architecture.

 

Report Error

View Answer Report Error Discuss

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

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

What is SMP?

Answer

To achieve maximum efficiency and reliability a mode of operation known as symmetric multiprocessing is used. In essence, with SMP any process or threads can be assigned to any processor.

Report Error

View answer Workspace Report Error Discuss

1 2004
Q:

With YouTube Analytics, you can track metrics on

A) TrueView ad skip rates B) Playback locations
C) Cost-per-channel visit D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

With YouTube Analytics, you can track metrics on Playback locations. Playback locations gives you how many views your channel got and what videos they watched. 

 

With_YouTube_Analytics,_you_can_track_metrics_on1554273173.jpg image

 

With YouTube Analytics we can Find out who's watching, what they like to watch, and which videos could make you the most money.

Report Error

View Answer Report Error Discuss

4 2003
Q:

In the following question, the sentence given with blank to be filled in with an appropriate word. Select the correct alternative out of the four and indicate it by selecting the appropriate option.

Ramesh ______ into his own trap

A) falling B) was fell
C) fell D) fall down
 
Answer & Explanation Answer: C) fell

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2003
Q:

What are the major flags in 8086?

Answer

In 8086 Carry flag, Parity flag, Ausiliary caarry flag, Zero flag, Overflow flag, Trace flag, Interrupt flag, Direction flag, and Sign flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2002
Q:

Blisters are a sign of which classification of burn?

A) First-degree B) Second-degree
C) Third-degree D) Fourth-degree
 
Answer & Explanation Answer: B) Second-degree

Explanation:

Burns are classified into 4 degrees. They are ::

 

1. First-degree (superficial) burns. First-degree burns affect only the epidermis, or outer layer of skin.

2. Second-degree (partial thickness) burns. Second-degree burns involve the epidermis and part of the dermis layer of skin.

3. Third-degree (full thickness) burns.

4. Fourth-degree burns.

 

Blisters are a sign of Second-degree burns.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

2 2002