Questions

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:

The sentence that states the main idea of the paragraph

A) Thesis B) Topic sentence
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The sentence that states the main idea of the paragraph is called as Thesis or the topic sentence.

Report Error

View Answer Report Error Discuss

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

0 2596
Q:

One major cause of floods is

A) light rain over a large area B) a decrease in stream discharge
C) rapid spring snowmelt D) increased capacity of stream channels
 
Answer & Explanation Answer: C) rapid spring snowmelt

Explanation:

There are lots of reasons behind the flood in any area but the main reason is a heavy downpour or rapid snowmelt can flood canyons with a mixture of soil, rock, and water is a major cause of floods.

 

When the spring times come, sometimes there's a lot of warmth that suddenly comes, especially nowadays when there are things such as global warming. So the snow melts and large amounts of water can flood the fields that are often found at the foot of a mountain or similar things.

 

But they may also be caused by deforestation, drainage channel modification from a landslide, earthquake or volcanic eruption. Examples include outburst floods and lahars.

 

 

Report Error

View Answer Report Error Discuss

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

1 2596
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:

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

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

Answer

Anirudh Bhattacharyya

Report Error

View answer Workspace Report Error Discuss

1 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 2595