Questions

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 2669
Q:

In Which three languages is the Rosetta Stone written?

Answer

Greek, demotic Egyptian and hieroglyphics.

Report Error

View answer Workspace Report Error Discuss

Subject: World History

0 2669
Q:

Who has Indian gymnast become the first Indian to win an individual medal at the Gymnastics World Cup?

A) Dipa Karmakar B) Swati Narang
C) Veenita Kumari D) Aruna Budda Reddy
 
Answer & Explanation Answer: D) Aruna Budda Reddy

Explanation:

Aruna Budda Reddy has created history by becoming the first Indian to win an individual medal at the Gymnastics World Cup in Melbourne, Australia. She clinched a Bronze medal in the Women’s Vault.

Report Error

View Answer Report Error Discuss

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

4 2668
Q:

First country to appoint Lokpal or equivalent to a Lokpal is ________.

A) Brazil B) Burma
C) Sweden D) India
 
Answer & Explanation Answer: C) Sweden

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

1 2668
Q:

What command would you use to create a backup control file?

Answer

Alter database backup control file to trace

Report Error

View answer Workspace Report Error Discuss

3 2667
Q:

What are the operating system components?

Answer

- Process management


- Main memory management


- File management


- I/O system management


- Secondary storage management


- Networking


- Protection system


- Command interpreter system

Report Error

View answer Workspace Report Error Discuss

2 2667
Q:

The Nobel Prize in Economics was started in

A) 1901 B) 1936
C) 1957 D) 1967
 
Answer & Explanation Answer: D) 1967

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

4 2666
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 2666