Questions

Q:

Which defence satellite would be launched by ISRO for DRDO in March 2019?

A) GSAT - 11 B) MICROSAT - R
C) Emisat D) Cartosat - 1
 
Answer & Explanation Answer: C) Emisat

Explanation:

Emisat defence satellite would be launched by ISRO for DRDO in March 2019.

Report Error

View Answer Report Error Discuss

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

2 2126
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 2126
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 2126
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 2126
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 2125
Q:

Prime Minister Narendra Modi inaugurated India's first Multi-Modal Terminal on which river?

A) Ganga B) Godavari
C) Yamuna D) Krishna
 
Answer & Explanation Answer: A) Ganga

Explanation:

Prime Minister Narendra Modi inaugurated India's first Multi-Modal Terminal on The Ganga river.

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

India's largest start up ecosystem has launched in which state?

A) Uttar Pradesh B) Gujarat
C) Uttarakhand D) Kerala
 
Answer & Explanation Answer: D) Kerala

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

2 2125
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 2125