Questions

Q:

Select the related letters from the given alternatives.

HIJ : OPQ :: STU : ?

A) BCD B) ZAB
C) XYZ D) CBA
 
Answer & Explanation Answer: B) ZAB

Explanation:
Report Error

View Answer Report Error Discuss

2 1980
Q:

Which part of flower produces pollen grains that are generally yellowish in color?

A) Sepals B) Petals
C) Stamens D) Carpels
 
Answer & Explanation Answer: C) Stamens

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

0 1980
Q:

What will be output of following c code?

#include <stdio.h>
int main()

{
    int i;
    for(i=10;i<=15;i++){
         while(i){
             do{
                 printf("%d ",1);
                 if(i>1)
                      continue;
             }while(0);
             break;
         }
    }
    return 0;
}

Answer

Output: 1 1 1 1 1 1
For loop will execute six times.


 


 


 


Note: continue keyword in do-while loop bring the program its while condition (while(0)) which is always false.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 1979
Q:

What are types of threads?

Answer

User thread


Kernel thread

Report Error

View answer Workspace Report Error Discuss

1 1979
Q:

Economic growth is measured by

A) % of GDP B) % of NDP
C) % of expenditure D) % of percapita income
 
Answer & Explanation Answer: A) % of GDP

Explanation:

Economic growth is measured by the percentage of gross domestic product. GDP refers to the total value of goods and services produced in the country.

Report Error

View Answer Report Error Discuss

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

3 1978
Q:

Improve the bracketed part of the sentence.
It was so hot during the concert that some spectators passed (out).

A) away B) by
C) over D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE

1 1978
Q:

C program to find the factorial of a given number

Answer

 #include<stdio.h>
int main(){
  int i=1,f=1,num;

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

  while(i<=num){
      f=f*i;
      i++;
  }

  printf("Factorial of %d is: %d",num,f);
  return 0;
}

Sample output:
Enter a number: 5
Factorial of 5 is: 120

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 1977
Q:

What is the difference between a BPO and a call center?

Answer

Call center is a subset of BPO. 

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

0 1977