Questions

Q:

A boy multiplied 987 by a certain number and obtained 559981 as his answer. If in the answer both 98 are wrong and the other digits are correct, then the correct answer would be ?? please explain in detail

A) 553681 B) 555181
C) 555681 D) 556581
 
Answer & Explanation Answer: C) 555681

Explanation:
Report Error

View Answer Report Error Discuss

1 2595
Q:

Which is the official language of Bank of Central African States

A) English B) Hindi
C) German D) French
 
Answer & Explanation Answer: D) French

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2595
Q:

How would you design and promote an advertising campaign?

Answer

An advertisement campaign must comprise of the following:


      - A solid marketing plan


      - Advertising budget


      - Media buying and planning


      - Choosing the right target audience


      - Selection of relevant advertising medium


      - Consistency in campaign theme 


      - Frequency 

Report Error

View answer Workspace Report Error Discuss

0 2595
Q:

The SQL keyword BETWEEN is used:

A) for ranges B) as a wildcard
C) to limit the columns displayed D) All the above
 
Answer & Explanation Answer: A) for ranges

Explanation:

In SQL, BETWEEN Keyword is used for ranges like Number Ranges, Date Ranges, etc...

Report Error

View Answer Report Error Discuss

0 2595
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2593
Q:

Study of inter relationship between living organism and their environment is called _______

A) Plant Geography B) Plant social science
C) Ecology D) Ecosystem
 
Answer & Explanation Answer: C) Ecology

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

4 2593
Q:

What is name of capital of MARSHALL ISLANDS ?

A) Tunis B) Accra
C) Tripoli D) Majuro
 
Answer & Explanation Answer: B) Accra

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2593
Q:

How many periods in National Hockey League?

A) 2 B) 3
C) 4 D) 5
 
Answer & Explanation Answer: B) 3

Explanation:

National Hockey League game is divide into 3 Periods each of 20 minutes. During the regular season, if the game ends in a tie, a 5 minute, sudden death overtime is played. In the playoffs, the overtime is 20 minutes long.

Report Error

View Answer Report Error Discuss

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

12 2592