Questions

Q:

What is microprocessor?

Answer

Micro processor is a program-controlled device, which fetches the instruction from memory, decodes and executes the instructions. Most Micro Processor are single-chip devices.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2128
Q:

What are the different functions of Scheduler?

Answer

Scheduler deals with the problem of deciding which of the process in the ready queue is to be allocated the CPU. Short Term Schedulers, Long Term Schedulers

Report Error

View answer Workspace Report Error Discuss

1 2128
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 2127
Q:

Who are the winners of the WTA Portugal open 2014 women's doubles title?

Answer

Sania Mirza and Cara Black

Report Error

View answer Workspace Report Error Discuss

Subject: Sports

1 2127
Q:

_______ optical data storage is a technology where data is stored in multiple layers in the optical disc.

A) 3D B) 30D
C) 300D D) 3000D
 
Answer & Explanation Answer: A) 3D

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2127
Q:

Which state decided to set up anti-poaching tiger protection force?

A) Andhra Pradesh B) Karnataka
C) Telangana D) Haryana
 
Answer & Explanation Answer: C) Telangana

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2127
Q:

A sentence with one blank is given, indicating that something has been omitted. Choose the word that best fits the blank appropriately.

As the festival approaches, the number of customers _________

A) Will have increased B) Has increasing
C) Will be increased D) Increases
 
Answer & Explanation Answer: D) Increases

Explanation:

The given sentence is in simple present tense and states a general fact, hence the latter half of the sentence with the blank will also be in the simple present tense. Since the subject in the latter part of the sentence is singular .i.e. 'the number', the verb will be followed accordingly. Hence, option 4 is the correct answer.

Report Error

View Answer Report Error Discuss

Filed Under: English

0 2127
Q:

Improve the bracketed part of the sentence. Human beings are social animals, (who are living in communities), regulated by social norms and laws.

A) living in communities B) living amongst a community
C) living in midst of communities D) no improvement
 
Answer & Explanation Answer: A) living in communities

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

0 2127