Questions

Q:

The organs of the urinary system are

A) Kidney B) Urinary bladder
C) Ureter D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

the_organs_of_the_urinary_system_are1537338921.png image

 

The urinary system purpose in the human body is to eleminate the waste from the body. The urinary system is also called as Rena system. It consists of kidney, ureter, urinary bladder and urethra.

Report Error

View Answer Report Error Discuss

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

3 2421
Q:

Support staff in the office of the president include

A) Repoters B) Cabinet members
C) Administrators D) All of the above
 
Answer & Explanation Answer: C) Administrators

Explanation:

Support staff in the office of the president include Administrators.

Support_staff_in_the_office_of_the_president_include1539257220.jpg image

Report Error

View Answer Report Error Discuss

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

1 2421
Q:

Which country has the oldest National Anthem?

A) India B) Denmark
C) Japan D) China
 
Answer & Explanation Answer: C) Japan

Explanation:

The Japanese national anthem, "Kimigayo", has the oldest lyrics, which were taken from a Heian period (794–1185) poem.

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

How would you obtain segment and offset addresses from a far address of a memory location?

Answer

#include "dos.h"


main()


{


    Char far *scr = ( char far *) 0xB8000000;


    Char *seg, *off;


    Seg = (char *) FP_SEG ( scr );


    Off = ( char *) FP_OFF ( scr );


}


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2421
Q:

Which one of the following climates is found in coastal areas of California in north America, Central Chile in South America and South-west tip of West Australia?

A) Tropical savanna B) Mediterranean
C) Humid continental D) Low-latitude steppe
 
Answer & Explanation Answer: B) Mediterranean

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

3 2421
Q:

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2420
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2420
Q:

Rearrange the parts of the sentence in correct order.
 
Gender inequality has
 
P :it reduces economic growth
Q :development goals as
R :adverse impact on

A) RPQ  B) RQP
C) PRQ D) QPR
 
Answer & Explanation Answer: B) RQP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2420