0% found this document useful (0 votes)
119 views2 pages

Class 11 Computer Science Model Questions

This document contains model questions for Grade XI Computer Science, structured into three groups: multiple choice questions, short answer questions, and long answer questions. It covers topics such as input devices, CPU scheduling algorithms, HTML tags, secondary memory types, operating system functions, CSS types, and cybercrime prevention methods. The total duration for the exam is 2 hours, with a full mark of 50.

Uploaded by

adityarajarya111
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
119 views2 pages

Class 11 Computer Science Model Questions

This document contains model questions for Grade XI Computer Science, structured into three groups: multiple choice questions, short answer questions, and long answer questions. It covers topics such as input devices, CPU scheduling algorithms, HTML tags, secondary memory types, operating system functions, CSS types, and cybercrime prevention methods. The total duration for the exam is 2 hours, with a full mark of 50.

Uploaded by

adityarajarya111
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Sub.

Code :4271
GRADE XI
Computer Science
Model questions
ljBfyL{n] ;s];Dd cfkm\g} zAbdf pQ/ lbg'kg]{5 . bfofF lsgf/fdf lbOPsf] cª\sn] k"0f{fª\s hgfpF5 .
Candidates are required to give their answers in their own words as far as practicable. The figures in the
margin indicate full marks.
Time : 2 Hrs. Full Marks: 50

Group A: Multiple Choice Questions (9 x 1=9)


Tick the best alternative.
1. Which one of the following is an input device?
a) speaker b) printer c) monitor d) mouse
2. Which of the following is NOT a bus type?
a) Address bus b) Data bus c) Memory bus d) Control bus
3. How to represent Boolean F(x,y)=x.y in logic gate?

4. Which scheduling algorithm allocates the CPU first to the process that requests the CPU first?
a) first-come, first-served scheduling c) shortest job scheduling
b) priority scheduling d) Round robin scheduling
5. Which operator is used to start for enter the formula in in Excel cell?
a) $ b) @ c) = d) +
6. Which looping process checks the test condition at the end of the loop?
a) for b) while d) do-while d) Nested loop
7. How to insert an image in web page using HTML tag?
a) <img=...> a) <img source=...> c) <img src=...> d) <img href=..>
8. Which image format is best used for photographs and offers a small file size? (U)
a) PNG b) GIF c) BMP d) JPEG
9. Which of following is monitors user activity on internet and transmit that information in
the background to someone else? (U)
a) Malware b) Spyware c) Adware d) Virus

Group 'B'
Give short answer to the following questions. (5 x 5=25)
1. Explain different types of secondary memory of computer system.
OR

Source : Curriculum Development Centre, Sanothimi, Bhaktapur


Describe the decimal to binary number conversion process with example.
2. What are the functions of operating system? Describe.
3. Define different types of CSS.
OR
Explain the different components of multimedia.
4. Differentiate between the do and while loop.
5. Suggest the prevention methods of cybercrime.

Group 'C'
Give long answer to the following question (2 x 8=16)
6. Explain computer architecture with block diagram and functions of its components.
OR
Write a program to input the elements of 4 x 3 matrix and prints its elements properly using array.
7. Draw AND, OR, XOR and XNOR gates with truth table and logic gates.

Source : Curriculum Development Centre, Sanothimi, Bhaktapur

Common questions

Powered by AI

Bus architecture, including address, data, and control buses, impacts data flow and system performance significantly. The address bus determines the location for data retrieval or storage, with a wider bus allowing more addressable memory. The data bus facilitates the flow of data between components, influencing speed directly proportional to its width. The control bus manages commands sent between the CPU and peripherals. Efficient bus architecture ensures optimal communication between the CPU, memory, and I/O devices, enhancing overall system performance and scalability .

Logic gates perform fundamental operations in digital circuits. The AND gate outputs true only if all inputs are true. The OR gate outputs true if at least one input is true. XOR outputs true when inputs differ, whereas XNOR outputs true when inputs are the same. Their truth tables define these relations: AND: (1,1->1), OR: (1,0->1), XOR: (1,0->1), XNOR: (1,1->1). These gates form the building blocks for complex circuits and computational logic .

An operating system manages computer resources such as the CPU, memory, and I/O devices, acting as an intermediary between users and the computer hardware. It enhances system performance by providing efficient scheduling of processes, managing memory distribution, and ensuring that different applications can operate concurrently without interfering with each other. The OS handles device drivers to communicate with hardware, manages storage to keep data organized and accessible, and ensures security by controlling access to resources .

To convert the decimal number 25 to binary, divide the number by 2 and record the remainder. Continue dividing the quotient by 2 until the quotient is zero. Write down the remainders in reverse order: 25 / 2 = 12 R1 12 / 2 = 6 R0 6 / 2 = 3 R0 3 / 2 = 1 R1 1 / 2 = 0 R1 Thus, the binary equivalent of decimal 25 is 11001 .

JPEG format is advantageous for photographs due to its balance of quality and compression, reducing file size without significantly compromising image quality. While PNG offers lossless compression, making it ideal for images with transparency, it results in larger files compared to JPEG. GIF is limited to 256 colors, more appropriate for simple graphics rather than photographs. BMP provides high quality but at a cost of substantial file size. JPEG thus remains optimal for efficient storage and web use of photographic content .

A computer architecture block diagram highlights the CPU, memory, and I/O systems. The CPU, comprised of the ALU and Control Unit, executes instructions and processes data. Memory stores instructions and data, essential for CPU operations. The I/O systems allow data exchange between the computer and external environments. Efficient collaboration among these components facilitates quick data access, timely execution of processes, and the overall functionality of computing tasks. Their orchestration determines the efficiency and speed of task processing within a computer system .

Preventing cybercrime requires a multifaceted approach, including maintaining strong, unique passwords, regular software updates to patch vulnerabilities, and using two-factor authentication. Implementing firewalls and anti-virus software can prevent unauthorized access and protect against malware. Educating users about phishing and social engineering tactics reduces susceptibility to attacks. Organizations should establish data encryption policies to secure sensitive information and conduct regular security audits to identify and mitigate risks .

CSS enhances web development through inline, internal, and external styles, each serving different purposes. Inline CSS applies styles directly within the HTML element, providing specific style only to that element. Internal CSS uses the <style> tag in the HTML header, useful for adding styles to a single HTML document. External CSS, contained in a separate .css file, applies styles across multiple web pages, enabling consistent styling and easy maintenance. This separation of style from content allows for cleaner HTML code, reusability, and reduced duplication .

The choice between do-while and while loops affects program structure and efficiency based on condition evaluation. A do-while loop executes the body at least once as the condition is checked after execution, which is useful when the loop must run at least once regardless of the condition. A while loop checks the condition first, making it ideal for zero or more iterations when precondition checks are essential. While loops are typically more efficient for scenarios requiring condition pre-checks, whereas do-while loops simplify code when at least one execution is guaranteed .

Volatile memory is temporary and requires power to maintain the stored information, with examples including RAM (Random Access Memory). Non-volatile memory retains data even when the power is turned off; examples include hard drives, SSDs (Solid State Drives), and flash memory. Volatile memory is faster, used for temporary data storage, while non-volatile memory is used for long-term data storage .

You might also like