Questions

Q:

Who has Indian gymnast become the first Indian to win an individual medal at the Gymnastics World Cup?

A) Dipa Karmakar B) Swati Narang
C) Veenita Kumari D) Aruna Budda Reddy
 
Answer & Explanation Answer: D) Aruna Budda Reddy

Explanation:

Aruna Budda Reddy has created history by becoming the first Indian to win an individual medal at the Gymnastics World Cup in Melbourne, Australia. She clinched a Bronze medal in the Women’s Vault.

Report Error

View Answer Report Error Discuss

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

4 2420
Q:

AT&T designed its first commercial modem, specifically forconverting digital computer data to analog signals fortransmission across its long distance network. What is thename of the modem?

A) Telex B) Memex
C) CompuServe D) Bell 103 dataset
 
Answer & Explanation Answer:

Explanation:

In 1960s AT&T introduces its Data phone, the firstcommercial modem. The first commercial modem made for converting digital computer data at analog signalsfor transmission across long distance networks

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

2 2420
Q:

Which of these did progressives support?

Answer

One of the thing that progressive support would be: Direct election of senators.


 


The progressive wanted this so they could the candidate based on the person and not the party.
Direct election of senators will make it easier for them to elect the person that represent their value for the position.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

4 2420
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:

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

Majuli, the largest river island in the world is located in which state of India?

A) Tripura B) Nagaland
C) Assam D) Manipur
 
Answer & Explanation Answer: C) Assam

Explanation:

Majuli or Majoli is a river island in the Brahmaputra River, Assam and in 2016 it became the first island to be made a district in India.

Report Error

View Answer Report Error Discuss

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

5 2419