Questions

Q:

Head Quaters of NATO is located in 

A) Newyork B) Brussels
C) Alaska D) California
 
Answer & Explanation Answer: B) Brussels

Explanation:

Head Quaters of NATO is located in Brussels

Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

5 2639
Q:

Why should you use the Ad Preview and Diagnosis tool to check if your ads are live and running on Google?

Answer

By searching for keywords that trigger your ad, you can rack up impressions without clicks, which may lower your Click-Through Rate, which may prevent your ad from appearing as often as it is eligible.

Report Error

View answer Workspace Report Error Discuss

0 2639
Q:

Select the word with the correct spelling.

A) ultimasy B) partime
C) cabarets D) referes
 
Answer & Explanation Answer: C) cabarets

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL
Job Role: Bank Clerk

1 2639
Q:

Would the following program compile?

main()

{

    int a = 10, *j;

    void *k;

    J = k = &a;

    J++;

    k++;

   printf ("\n%u %u", j, k);

}

Answer

An error would be reported in the statement k++ since arithmetic on void pointers is not permitted unless the void pointer is appropriately typecasted.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2638
Q:

Can you tell of a time when you provided excellent customer service?

Answer

Actually Here is asking for providing service, in which way and in which time we are able to serve the customer with flexibility and with relatively. therefore we can say that at the time of service we are able to serve. but from their rise a question:- if the organization is working properly for 24 hrs then what about the service? ence we can say that in the time which m there... otherwise we serve with corporative way 

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

5 2638
Q:

One of the following companies does have business interest in both oil and shipping sectors. Identify this.

A) Tata Group B) Reliance Group
C) Essar Group D) ONGC
 
Answer & Explanation Answer: C) Essar Group

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

6 2637
Q:

Under what section of trade union act, workers are entitled to protection if strike is illegal?

Answer

Dispute Act, 1947 put certain prohibitions on the right to strike. A strike may be illegal if it contravenes the provision of section 22, 23 or 24 of the Act.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: Bank Exams
Job Role: Bank Clerk , Bank PO

5 2637
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 2636