Questions

Q:

If the current flowing through a circuit is 0.6 A for 6 mins, the amount of electric charge flowing through it is .......

A) 360C B) 216 C
C) 60 C D) 36 C
 
Answer & Explanation Answer: B) 216 C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams

0 2440
Q:

Which of the following is a false statement?

A) As bond order increases the strength of the bond increases B) Bond order is proportional to the bond length
C) Molecules with negative bond order are highly unstable D) Bond order is inversely proportional to the bond length
 
Answer & Explanation Answer: B) Bond order is proportional to the bond length

Explanation:

Bond order is proportional to the bond length is a False statement since Bond order is inversely proportional to the bond length.

Report Error

View Answer Report Error Discuss

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

3 2440
Q:

The UNESCO World Heritage Site, Victoria Memorial Hall is located in which Indian city?

A) Mumbai B) Chennai
C) Kolkata D) Delhi
 
Answer & Explanation Answer: C) Kolkata

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

6 2439
Q:

What is the first step when supervising detainee operations?

Answer

The first step is to disarm and secure detainees when supervising detainee operations.

Report Error

View answer Workspace Report Error Discuss

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

1 2439
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 2439
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 2438
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 2438
Q:

Every hot object emits _________________

A) X -­ rays B) Visible light
C) Infrared rays D) Ultraviolet rays
 
Answer & Explanation Answer: C) Infrared rays

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2438