Skip to main content

ads1

CH-2 INPUT, OUTPUT and STORAGE DEVICES

CH-2 INPUT, OUTPUT and STORAGE DEVICES


 A. Tick () the correct answer. 

1.___________ is a pointing device which is used to play games on computer. 

Mouse 

Keyboard 

Joystick 

Webcam 

2. OCR stands for 

Optical Character Reader 

Optical Compile Recognition 

Optimal Character Reader 

Optional Character Reserve 

3.____________ scans text and images that are less than a page wide. 

Handheld Scanner 

Flatbed Scanner 

Drum Scanner 

Scanner 

4._______________is a type of scanner which scans the handwritten or printed text on paper and converts it into the actual text which can be edited using a word processor. 

MICR OMR OCR OPR 

5. In___________ no memory card is required for storing images. 

Digicam 

Webcam 

Graphic Tablet 

Smart Card Reader

6.____________ are basically an extension of ATMs.

Smart Card Reader 

Graphic Tablet 

Touch Screen Device 

Biometric Sensor 

7. The images on the monitor are formed with the help of thousands of picture elements present on the 

screen called__________ 

Pixels 

Dots 

Display 

Pix 

8. The full form of TFT is ___________

Thin Film Transistor 

Thick Film Transistor 

Thin Fluorescent Transistor 

Thick Fluorescent Transistor 

9. An impact printer is also called _______________

Character Printer 

Dot Matrix Printer

Daisy Wheel Printer 

Line Printer 

10. ____________ is the main secondary storage device that stores large amount of data permanently. 

Memory Card 

Hard Disk 

Pen Drive 

Flash Card 


B. Write T for True and F for False statement. 

1. Keyboard and mouse are the only input devices that can be used to enter data in the computer. True

2. An optical mouse uses LED or LASER technology to track the movement. True

3. Handheld scanners are used to scan high quality graphical images. False

4. MICR is one of the output devices used in the banks. True

5. A document scanned using OCR can be edited like a normal document. True 

6. Printer is an output device used to produce hard copy output. True

7. Laser printer is an example of impact printer. False

8. ROM is one of the non-volatile electronic memory fixed on the motherboard of the computer system. False

9. Cache memory helps to enhance the performance of the CPU. True 

10. Hard disk, floppy disk, magnetic tapes are the examples of optical storage devices. True

 Fill in the blanks. 

1. Optical mouse uses Laser technology to track the movement.

2.Drum scanner is mostly used for commercial graphics production.

3. Plotter are generally used to generate large printouts of construction maps, engineering drawings and big posters that require high quality. 

4. The storage capacity of CD is  700 MB 

5. Memory card is also known as multimedia card. 

6. A combination of 4 bits is called nibble 

7. Pen drive and External hard disk are the examples of external storage devices used for permanent data storage. 

8.  blue-violet laser technology is used to read/write data on the Blu-ray disc


Link to download Chapter 


ads2

Popular posts from this blog

11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following:

    11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following: Basic Salary <= 10000 : HRA = 20%, DA = 80% Basic Salary <= 20000 : HRA = 25%, DA = 90% Basic Salary > 20000 : HRA = 30%, DA = 95% Static Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     if(basic <=10000)     {         da = basic * 0.8;         hra = basic *0.2;     }              else if(basic <=20000)     {         da = basic * 0.9;         hra = basic *0.25;     }     else     {         da = basic * 0.95;         hra = basic * 0.3;     }     gross = basic + da + hra;     System.out.println("The Gross Salary is :-"+gross);     } } Output :-  Dynamic Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     Scanner in = new Scanner(System.in);     System.out.println("Enter the Basic Salary

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise or class wise.

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise  or class wise. Solution :-   # x-axis is shows the subject and y -axis # shows the markers in each subject # import pandas and matplotlib  import pandas as pd  import matplotlib.pyplot as plt # Simple Line Chart with setting of Label of X and Y axis, # title for chart line and color of line  subject = ['Physic','Chemistry','Mathematics', 'Biology','Computer'] marks =[80,75,70,78,82] # To draw line in red colour plt.plot(subject,marks,'r',marker ='*')     # To Write Title of the Line Chart plt.title('Marks Scored') # To Put Label At Y Axis plt.xlabel('SUBJECT')           # To Put Label At X Axis plt.ylabel('MARKS')             plt.show() Output :- 

24.Create a Data Frame quarterly sales where each row contains the item category, item name, and expenditure. Group the rows by the category and print the total expenditure per category.

24.Create a Data Frame quarterly sales where each row contains the item category, item name, and expenditure. Group the rows by the category and print the total expenditure per category. import pandas as pd  # initialize list of lists data = [['CAR','Maruti',1000000],['AC','Hitachi',55000],['AIRCOLLER','Bajaj',12000], ['WASHING MACHINE','LG',15000],['CAR','Ford',7000000],['AC','SAMSUNG',45000],['AIRCOLLER','Symphony',20000],['WASHING MACHINE','Wirlpool',25000]] Col=['itemcat','itemname','expenditure'] # Create the pandas DataFrame qrtsales = pd.DataFrame(data,columns=Col) # print dataframe.  print (qrtsales) qs=qrtsales.groupby('itemcat')  print('Result after Filtering Dataframe')  print(qs['itemcat','expenditure'].sum()) Output :-