Questions

Q:

The commercial and marketing arm of ISRO is

A) Antrix Corporation Limited B) ISRO Satelliet Corporation
C) Space Applications Center D) None
 
Answer & Explanation Answer: A) Antrix Corporation Limited

Explanation:
Report Error

View Answer Report Error Discuss

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

8 2760
Q:

Which of the following is an example of plagiarism?

A) A student is expected to write a book report about a book that his teacher has assigned. The student doesn't want to read the book and is bored with the subject. He visits websites that provide reviews and book reports and he copies from each of the diffe B) A writer decides that he wants to create an Internet website to generate ad revenue. Instead of writing his own articles, he visits twenty other websites that have articles on the topic in which he is interested. He copies each of the articles, changes th
C) When a writer reuses a mix of word, phrases, and ideas from a source without indicating which words and ideas have been borrowed and/or without properly citing the source. D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Duplicating the content or Copying words or ideas from someone else WITHOUT giving credit is called Plagiarism.

Plagiarism can be a violation of copyright laws and can be considered cheating.

  

Types of Plagiarism :: 

 

1. Direct Plagiarism

 

2. Mosaic Plagiarism

Report Error

View Answer Report Error Discuss

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

2 2760
Q:

Smallest units of meaning in a language

A) Pragmatics B) phoneme
C) morpheme D) syntax
 
Answer & Explanation Answer: C) morpheme

Explanation:

A morpheme is the smallest unit of a word that provides a specific meaning to a string of letters.

Report Error

View Answer Report Error Discuss

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

0 2760
Q:

Genes are made of 

A) Carbohydrates B) Proteins
C) Fats D) Nucleotides
 
Answer & Explanation Answer: D) Nucleotides

Explanation:

Genes : The DNA is the genetic material. The DNA is made of several nucleotides. A nucleotide means, one nitrogenous base one sugar molecule and a phosphate molecule. These nucleotides occur in sequences and several nucleotides form one Gene ( a functional mgene is called a cistron)

Report Error

View Answer Report Error Discuss

Filed Under: Biology

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

Who is the new president and CEO of Nokia?

Answer

Rajeev Suri

Report Error

View answer Workspace Report Error Discuss

2 2759
Q:

Which of the following Articles of Indian Constitution guarantees freedom to press?

A) Article 16 B) Article 19
C) Article 22 D) Article 31
 
Answer & Explanation Answer: B) Article 19

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

1 2759
Q:

Which of the following is the lightest computer?

A) Desktop B) Tablet
C) Laptop D) Ultrabook
 
Answer & Explanation Answer: B) Tablet

Explanation:

The lightest computer is the tablet.

Report Error

View Answer Report Error Discuss

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

3 2759