Questions

Q:

Indian state where Uniform Civil Code is applied?

A) Uttarakhand B) Uttar Pradesh
C) Goa D) Delhi
 
Answer & Explanation Answer: C) Goa

Explanation:

Uniform civil code is the ongoing point of debate within Indian mandate to replace personal laws based on the scriptures and customs of each major religious community in India with a common set of rules governing every citizen.

 

Goa is the only state in INdia where Uniform Civil Code is applied. Laws are equal to all religion. Polygamy and triple talaq are illegal. 

Report Error

View Answer Report Error Discuss

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

4 2688
Q:

When should you discard a PFD?

A) When it is too small B) When its been used 1 year
C) When its been used 1 month D) When it has a torn strap
 
Answer & Explanation Answer: D) When it has a torn strap

Explanation:

Personal flotation devices (PFDs), have life span upto it is damaged. Hence, When it has a torn strap you should discard a PFD.

Report Error

View Answer Report Error Discuss

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

2 2686
Q:

Visible light has a higher frequency than

A) Radio waves B) X rays
C) Ultra violet D) All the above
 
Answer & Explanation Answer: A) Radio waves

Explanation:

Radio waves have much longer wavelengths and lower frequencies than do visible light waves. In contrast, X-rays have much shorter wavelengths and higher frequencies. 

Ultraviolet Light (UV). part of the electromagnetic spectrum that consists of waves with frequencies higher than those of visible light and lower than those of x-rays.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

2 2686
Q:

Which of the following CANNOT be considered a single phase?

A) a heterogeneous mixture B) a pure solid
C) a pure liquid D) a homogeneous mixture
 
Answer & Explanation Answer: A) a heterogeneous mixture

Explanation:

A pure solid and a pure liquid are definitely a single phase because they are so united, or homogeneous. This leads to a homogeneous mixture also being a single phase.

 

Hence, the option that cannot be considered a single phase is A. a heterogeneous mixture.

Report Error

View Answer Report Error Discuss

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

5 2686
Q:

Selecting and managing marketing channels :

How are the channel members managed and motivated, once they are selected?

Answer

These days channel members are being accepted by companies as their partners. The intermediaries are even being asked to integrate their business with the companies which results in lesser costs, greater efficiency and improved customer service. Corporates like Airtel are adopting PRM (Partner relationship management) software to give that added advantage to their supply chain. They organise rewards and recognition programs for their channel partners and also organise proper channels though which partners can vent any of their grievances relating to payments, violation of codes etc.

Report Error

View answer Workspace Report Error Discuss

0 2685
Q:

In HTML, ___________ tag is used to construct drop-down list boxes and scrolling list boxes.

A) <SELECT> B) <OPTION>
C) <TEXTAREA> D) <INPUT>
 
Answer & Explanation Answer: A) <SELECT>

Explanation:
Report Error

View Answer Report Error Discuss

58 2685
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

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

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

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2684
Q:

Which memory is nonvolatile?

A) Floppy discs B) Magnetic tape
C) ROM D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

A computer has two types of memory.

1. Non-volatile and

2. Volatile.

 

Volatile memory is computer memory that requires power to maintain the stored information.

* It is a temporary memeory which cannot contain information permanently.

Example :: RAM or Random Access Memory

 

Non-volatile memory is computer memory that can retain the stored information even when not powered.

* It is a permanent memory in which data is stored in permanently.

Examples :: Hard disc, ROM, Floppy discs, Magnetic tape,...

 

Report Error

View Answer Report Error Discuss

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

1 2684