Skip to main content

Healthcare Systems Article Category

Medical Factors Which make it The most effective  just by Sejal Kakadiya  Medicine and health agencies with now consentrate on top quality, charge together with great satisfaction health of their solutions. These are typically that support beams which a lot of these agencies redefine the direction they trade. The following really results in thrilled clients.  How come Serious Treatment Direction Can be a Trend Inside Medicine and health Sector  just by Steven Orange  A whole lot of North american healthcare systems' options are generally about that direction together with procedure with serious circumstances. Direction with serious health conditions which include diabetes, excessive circulation demand, cardiovascular disease, together with hypothyroidism can be a vital component of easiest treatment healthcare provider's succeed. Inside standard product, that general practitioner spots someone on an automobile accident with treatment, inspects that condition ...

Computer Fundamental Questions and Answers set-10


1) The computer memory holds data and .....

A. Bytes

B. Program

C. Registers

D. Bits


2) A file that has been transferred to a lower level in the memory hierarchy is known as ....

A. Random File

B. Archive File

C. Serial File

D. Sequential File


3) The computer that process both analog and digital is called ..

A. Mainframe Computer

B. Hybrid Computer

C. Analog Computer

D. Digital Computer


4) The binary number 1000 is equivalent to decimal number ..

A. One thousand

B. Eight

C. One

D. Sixteen


5) A general purpose single use microcomputer designed to be operated by one person at time is ...

A. Special Purpose computer

B. KIPS

C. AI

D. PC


6) ASCII Stand for

A. American Standard Code for Information Interchange

B. American Stable Code for International Interchange

C. American Standard Case for International Interchange

D. American Standard Code for Interchange Information


7) The checking operation performed in input data is called the ...

A. Validation of data

B. Verification of data

C. Cross check

D. Control data


8) Most important advantage of an IC is its ..

A. Easy replacement in case of circuit failure

B. Extremely high reliability

C. Reduced Cost

D. Low power consumption


9) Software in computer ....

A. Enhanced the capabilities of the hardware machine

B. Increase the speed of central processing unit

C. Both of the above

D. None of the above


10) The larger RAM of computer, the fastest processing speed is, since it eliminates ..

A. Need for external memory

B. Need of ROM

C. Frequent disk I/Os

D. Need for wider data path



11) The earlier device the qualifies as a digital computer is ...

A. EDSAC

B. Abacus

C. ENIAC

D. EDVAC


12) Latency time is ...

A. Time to spin the needed data under head

B. Time to spin the needed data under track

C. Time to spin the needed data under sector

D. All of the above


13) Which of the following printer can be classified as a page at a time printer?

A. Laser Printer

B. Dot matrix printer

C. Thermal Printer

D. Ink-jet printer


14) What are the units used to count the speed of a printer?

A. CPM

B. DPI

C. PPM

D. BIT



15) Who is the founder of Oracle Corporation?

A. Bill Gates

B. Laris Ellison

C. Andrew S Grove

D. Marc Andreson


16) Plotter prints ...

A. with ballpoint pens

B. with ink pens

C. electristatically

D. All of the above


17) Which of the following organizations looks at standards for representation of data on the Internet?

A. ISOC

B. W3C

C. IEEE

D. IETE


18) Who is the founder of BSD Unix?

A. Bill Gates

B. Dennis Ritche

C. Bill Joy

D. Linux Torvalds


19) Which of the following topologies is highly reliable?

A. Star

B. Bus

C. Fully connected mesh

D. All of the above


20) People typically interface with a computer based system when ...

A. Information must be output

B. Data must be input

C. Information must be reviewed

D. All of the above


Answers:

1) B. Program
2) B. Archive File
3) B. Hybrid Computer
4) B. Eight
5) D. PC
6) A. American Standard Code for Information Interchange
7) A. Validation of data
8) B. Extremely high reliability
9) A. Enhanced the capabilities of the hardware machine
10) C. Frequent disk I/Os
11) B. Abacus
12) A. Time to spin the needed data under head
13) A. Laser Printer
14) C. PPM
15) B. Laris Ellison
16) D. All of the above
17) B. W3C
18) C. Bill Joy
19) C. Fully connected mesh
20) A. Information must be output


Related Posts:

 For More Multiple Choice Questions(MCQ's): Click Here

Comments

Popular posts from this blog

Solved MCQ on Fundamental of C Language set-7

1) 'C' allows a three way transfer of control with the help of A. Unary Operator B. Relational Operator C. Ternary Operator D. Comparison Operator 2) Operators have hierarchy. It is used to know which operator .... A. is most important B. is used first C. is faster D. operators on large numbers 3) The statement that transfers control to the beginning of the loop is called .. A. break statement B. exit statement C. continue statement D. goto statement 4) C programming language was developed by .. A. Dennis Ritche B. Ken Thompson C. Bill Gates D. Peter Norton 5) The value that follows the keyword CASE may only be A. constants B. variable C. number D. semicolon 6) In a C language 'a' represents ... A. a digit B. an integer C. a character D. a word 7) The statement which is used to terminate the control from the loop is A. break B. continue C. goto D. exit 8) The continue command cannot be used with .... A. for B. switch C. do D. while 9) A self contained block of statement...

How to create a Simple calculator Using HTML and JavaScript

Here are the steps to create a simple calculator using HTML and JavaScript which can evaluate simple arithmetic on integer numbers. Two types of inputs text and button are used here on a table within a form element and OnClick event was used to insert button values on the screen or to evaluate the numbers. Steps to create a Simple calculator Using HTML and JavaScript 1. At first Insert a <form> element within <body> tag. 2. Create a table using <table> .....</table> tag. 3. Insert two types of Input text and button within table data of table row using <tr><td>....</td></tr> tag. 4. Assign OnClick event for all the buttons having numbers and arithmetic operators. 5. Give blank value for Clear(C) button. 6. Use eval() function to evaluate the numbers on OnClick event of equal to sign button. Full HTML code for a Simple HTML calculator <html> <head></head> <body> <h3>Simple Calculator</h3> <br/> <...

How to Show Pop Up Window Using JavaScript

You can show pop up window By using JavaScript window.open() method which loads specified URL into a new or existing window and returns the window object that represents that window. The window.open() method takes four optional arguments which are URL of the window, Window name, attributes of window, the boolean value to replace or not the current window. Syntax: window.open("windowname.html", "New Window", "width=width in pixel, height=height in pixel, status=yes or no, resizable=yes or no"); The first argument of window.open() method allows to display given URL in the new window. If the argument is omitted, the special blank-page URL:about:blank is used. The second argument of window.open() method is a string which specifies a window name. If the argument is omitted, the special name "_blank" is used which opens a new, unnamed window. The third optional argument of window.open() method is a comma-separated list of size and features attributes f...