Questions

Q:

Who owns Tradestation?

A) SBI Group B) Monex Group, Inc.
C) CME Group D) None of the above
 
Answer & Explanation Answer: B) Monex Group, Inc.

Explanation:

Tradestation is owned by its parent organization Monex Group, Inc.

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

In a certain code language, "PUNISHED" is written as "288" and "TAILOR" is written as "225". How is "RELEASED" written in that code language?

A) 207 B) 237
C) 225 D) 243
 
Answer & Explanation Answer: A) 207

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2428
Q:

All India Kisan Sabha was founded in

A) 1936 B) 1946
C) 1956 D) 1966
 
Answer & Explanation Answer: A) 1936

Explanation:

All India Kisan Sabha was founded in Lucknow in 1936. Swami Sahajanand Saraswati was elected as its first President.

Report Error

View Answer Report Error Discuss

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

2 2428
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 2428
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 2428
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 2428
Q:

What was the strength of Indus economy?

A) Trading B) Agriculture
C) Electricity D) Mining
 
Answer & Explanation Answer: B) Agriculture

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2427
Q:

Coagulation during water treatment is designed to remove

A) Sand and gravel B) Bad smells
C) Pathogenic microorganisms D) Particles suspended in water
 
Answer & Explanation Answer: D) Particles suspended in water

Explanation:

Coagulation is a chemical process that involves neutralization of charge. Coagulation during water treatment is designed to remove particles suspended in water.

Report Error

View Answer Report Error Discuss

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

11 2427