Questions

Q:

"International Day of Democracy" was observed across the world on _____ ?

A) 12 September B) 15 September
C) 18 September D) 14 September
 
Answer & Explanation Answer: B) 15 September

Explanation:
Report Error

View Answer Report Error Discuss

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

6 2298
Q:

A doctor and a bus driver are both in love with the same woman, named Sana. The bus driver had to go on a long bus trip that would last a week. Before he left, he gave Sana seven apples.

 Why?

Answer

We know a proverb that An apple a day keeps the doctor away. To keep the doctor away from her, he gave seven apples, each apple a day.

Report Error

View answer Workspace Report Error Discuss

4 2297
Q:

How do you get more retailers / customers for your business? What are the steps you would take?

Answer

Applicant should answer that being in a wholesale market, he/she would plan and direct advertising and promotional activities to attract more retailer suppliers. Promotional activities like posters, contests, coupons, give-away to create extra interest in the purchase of a product or services from customers or retailers.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

0 2295
Q:

Write a c program for binary search.

Answer

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

    int a[10],i,n,m,c=0,l,u,mid;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2295
Q:

The most electronegative element among the following is

A) Oxygen B) Chlorine
C) Nitrogen D) Sodium
 
Answer & Explanation Answer: A) Oxygen

Explanation:

Electronegativity measures an element's ability to form chemical bonds. Helium is the most electronegative element followed by Fluorine.

 

Here in the given options, Oxygen is the most electronegative element. Fluorine is followed by Oxygen, Chlorine and Nitrogen is the most electronegative elements list.

Report Error

View Answer Report Error Discuss

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

4 2295
Q:

‘Sea Vigil-21’ is a Defence Exercise undertaken by which country?

 

A) China B) Japan
C) India D) United Kingdom
 
Answer & Explanation Answer: C) India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2295
Q:

The popular Access Method for computer network is

A) Ethernet B) Token Ring
C) Bus Token D) None
 
Answer & Explanation Answer: B) Token Ring

Explanation:
Report Error

View Answer Report Error Discuss

14 2294
Q:

" World Tuberculosis Day " is observed on ?

A) 24th March B) 22nd March
C) 23rd March D) 21st March
 
Answer & Explanation Answer: A) 24th March

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2294