Questions

Q:

What is virtual channel?

Answer

Virtual channel is normally a connection from one source to one destination, although multicast connections are also permitted. The other name for virtual channel is virtual circuit.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2675
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 2675
Q:

What is the unit of heredity?

A) cell B) blood
C) gene D) All of the above
 
Answer & Explanation Answer: C) gene

Explanation:

Genes are units of heredity.

Report Error

View Answer Report Error Discuss

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

1 2673
Q:

Which can disrupt the cell cycle?

A) Mutation B) Replication
C) Both A & B D) None of the above
 
Answer & Explanation Answer: D) None of the above

Explanation:

Mutations can disrupt the cell cycle, and can cause certain diseases and conditions.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst

2 2673
Q:

Which of the following is not a video file extension?

A) .flv B) .mov
C) .mp3 D) None of the above
 
Answer & Explanation Answer: C) .mp3

Explanation:

.mp3 is audio file extension.

Report Error

View Answer Report Error Discuss

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

6 2673
Q:

What is the name of the Indian Coast Guard Ship which has been decommissioned by the Indian navy recently ?

A) Sarathi B) Shaurya
C) Varuna D) Ayush
 
Answer & Explanation Answer: C) Varuna

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2673
Q:

What are the operating system components?

Answer

- Process management


- Main memory management


- File management


- I/O system management


- Secondary storage management


- Networking


- Protection system


- Command interpreter system

Report Error

View answer Workspace Report Error Discuss

2 2673
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 2672