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:

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:

Code coverage is used as a measure of what?

A) Trends analysis B) Time Spent Testing
C) Defects D) Test Effectiveness
 
Answer & Explanation Answer: D) Test Effectiveness

Explanation:

Code coverage is a measure used to describe the degree to which the source code of a program is executed when a particular test suite runs.

Report Error

View Answer Report Error Discuss

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

3 2127
Q:

Which statement best describes perigee?

A) The closet point in the Moon's orbit to Earth B) The farthest point in the Moon's orbit to Earth
C) The closest point in Earth's orbit of the Sun D) The Sun's orbit that is closest to the Moon
 
Answer & Explanation Answer: A) The closet point in the Moon's orbit to Earth

Explanation:

The closet point in the Moon's orbit to Earth is called perigee whereas the farthest point in the Moon's orbit to Earth is called apogee.

Report Error

View Answer Report Error Discuss

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

2 2127
Q:

Which one of the following States of India receives Sunshine at the earliest?

A) Arunachal Pradesh B) West Bengal
C) Himachal Pradesh D) Jammu & Kashmir
 
Answer & Explanation Answer: A) Arunachal Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2127