Questions

Q:

Which composition is considered the unofficial national anthem of Austria?

Answer

Johann Strauss's on the Banks of the Beautiful Blue Danube

Report Error

View answer Workspace Report Error Discuss

8 2596
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 2596
Q:

Have you ever been in a situation where significant change was made to your team, department or organisation? How did you adjust?

Answer

The purpose of this question is to check your adaptability and flexibility. Did you feel victimized?


Answer this question by mentioning the change that was made but the main focus should be on how you adjusted in that situation and the results you achieved afterwards.


For example you can say something like, “Being an early joiner in the marketing team, I opened a lot of new customer accounts. Over the time the team grew and we had more people in the team opening more accounts. At one point of time, we had to re-distribute the accounts area wise so that a particular territory can be allotted to each one of us. This re-distribution meant loss of my high performing accounts and a requirement to develop new accounts in the assigned territory. Initially, it looked difficult but I could understand the need for this re-distribution and saw more opportunities for the company and myself. I introduced my colleagues to the old accounts I held and started strategizing for better ways to tap the new territory. Within 6 months, I could develop 50 new accounts with the help of new strategy. Usually we would achieve this result in 9 months to a year.”

Report Error

View answer Workspace Report Error Discuss

Subject: Human Resources

3 2595
Q:

Who is the author of the book 'The Candidate'.

Answer

Anirudh Bhattacharyya

Report Error

View answer Workspace Report Error Discuss

1 2595
Q:

Which among the following is an International river

A) Brahmaputra B) Cauvery
C) Krishna D) Narmada
 
Answer & Explanation Answer: A) Brahmaputra

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

2 2595
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 2594
Q:

CPU speed is measured in

Answer

CPU speed is measured with the processors speed which is measured in MIPS (Million Instructions Per Second), Flops (Floating-point operations per second) and CPU clock speed (usually measured in gigahertz). 

Report Error

View answer Workspace Report Error Discuss

Subject: Computer Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

6 2594
Q:

What type of macromolecule is DNA?

A) Proteins B) Carbohydrates
C) Nucleic acids D) All of the above
 
Answer & Explanation Answer: C) Nucleic acids

Explanation:

DNA stands for Deoxyribo nucleic acid. It is a nucleic acid made up of monomeric unit called Nucleotide.

A nucleotide consist of -

a) Sugar - Deoxyribose in DNA ( ribose in RNA)

b) An organic base- Adenine, cytosine, guanine.

Report Error

View Answer Report Error Discuss

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

5 2593