Questions

Q:

Infiltration is the process by which rainwater becomes

A) river water B) ground water
C) salt water D) ocean water
 
Answer & Explanation Answer: B) ground water

Explanation:

The process of absorbtion of rain water by the soil on the earth is called infiltration. By this process, the rain water that falls on the soil becomes ground water.

Report Error

View Answer Report Error Discuss

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

3 2114
Q:

In economics, the cost of something is

A) the dollar amount of obtaining it B) what you give up to get it
C) often impossible to quantify, even in principle D) always measured in units of time given up to get it
 
Answer & Explanation Answer: B) what you give up to get it

Explanation:

In economics, the cost of something is what you give up to get it.

Report Error

View Answer Report Error Discuss

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

4 2114
Q:

India's Multi Application Solar Telescope (MAST) was operationalized at the ____ Solar Observatory.

A) Udaipur B) Jaipur
C) Kodaikanal D) Ahmedabad
 
Answer & Explanation Answer: A) Udaipur

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

2 2114
Q:

In the following question, some part of the sentence may have errors. Find out which part of the sentence has an error and select the appropriate option. If a sentence is free from error, select 'No Error'.
 
1. Cybercrime cases pose various kinds of
2. Challenges which requires strengthening of
3. The institutional mechanism.
4. No error

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2114
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2114
Q:

What are the minimal cost and minimal risk solution?

Answer

In binary representation there are some states that believed to be never occurred due to some particular functionality of a given circuit. If zero output is assigned to such states then it is called minimal risk solution as  we are resetting the formidable states which could be occurred accidentally. Another approach is to assigned a don't care to them so it results in lesser logic and hence is called minimal cost solution.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2114
Q:

Male is the Capital of ___________.

A) Algeria B) Maldives
C) Kenya D) Mauritius
 
Answer & Explanation Answer: B) Maldives

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals
Exam Prep: Bank Exams

5 2113
Q:

Explain the concept of the batched operating systems?

Answer

In batched operating system the users gives their jobs to the operator who sorts the programs according to their requirements and executes them. This is time consuming but makes the CPU busy all the time.

Report Error

View answer Workspace Report Error Discuss

1 2113