Questions

Q:

The relationship between a cathode and an anode involves

A) Electrons B) Neutrons
C) Protons D) Diodes
 
Answer & Explanation Answer: A) Electrons

Explanation:

The relationship between a cathode and an anode involves the transfer of electric charge between them. The cathode is the negative terminal on the battery, which has zero electric potential. The anode is the positive terminal on the battery and has the battery's maximum electric potential. Current flows from the battery's anode (positive terminal) to the cathode (negative terminal). In electron flow, electrons leave the negative side of the battery and move towards the positive side of the battery.

 

Hence, The relationship between a cathode and an anode involves Electrons.

Report Error

View Answer Report Error Discuss

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

3 2657
Q:

The goal of a market economy is to

A) equity B) security
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) equity

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

1 2657
Q:

Carbon disulfide is prepared by heating sulfur and charcoal.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Yes, Carbon disulfide is prepared by heating sulfur and charcoal. 


S2 + C ----> CS2

Report Error

View Answer Workspace Report Error Discuss

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

2 2656
Q:

What would be the output of the following program?

main()

{

   struct emp

   {

        char *n;

        int age;

   };

   struct emp e1 = { "Dravid", 23};

   struct emp e2 = e1;

   strupr (e2.n);

   printf ("\n%s",e1.n);

}

Answer

DRAVID


When a structure is assigned, passed, or returned, the copying is done monolithically. This means that the copies of any pointer fields will point to the same place as the original. In other words, anything pointed to is not copied. Hence, on changing the name through e2.n it automatically changed e1.n

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2656
Q:

Write a c program for binary search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0,l,u,mid;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2656
Q:

Graphite is a good conductor of electricity.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Graphite is a good conductor of electricity as it contains free electrons to move through the structure of the graphite.

Report Error

View Answer Workspace Report Error Discuss

Subject: Physics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

0 2656
Q:

Who is the author of ' The Accidental Prime Minister - The Making and Unmaking of Manmohan Singh'

Answer

Sanjaya Baru

Report Error

View answer Workspace Report Error Discuss

3 2655
Q:

One of the following companies does have business interest in both oil and shipping sectors. Identify this.

A) Tata Group B) Reliance Group
C) Essar Group D) ONGC
 
Answer & Explanation Answer: C) Essar Group

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

6 2655