0% found this document useful (0 votes)
42 views3 pages

Computer Science Exam Paper - Grade XI

This document is an examination paper for Grade XI Computer Science at Paradise Campus, Rajbiraj, consisting of multiple choice questions, short answer questions, and long answer questions. It covers topics such as input devices, scheduling algorithms, operating systems, CSS, and cybercrime prevention. The exam has a total duration of 2 hours and is worth 50 marks, with a passing mark of 16.

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)
42 views3 pages

Computer Science Exam Paper - Grade XI

This document is an examination paper for Grade XI Computer Science at Paradise Campus, Rajbiraj, consisting of multiple choice questions, short answer questions, and long answer questions. It covers topics such as input devices, scheduling algorithms, operating systems, CSS, and cybercrime prevention. The exam has a total duration of 2 hours and is worth 50 marks, with a passing mark of 16.

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

Paradise Campus
Rajbiraj-07, Saptari

GRADE XI
Computer Science
Time : 2 Hrs. Full Marks: 50
Subject :- Computer Science Pass Marks:16
Candidates are required to give their answers in their own words as far as practicable. The figures in the
margin indicate full marks.

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

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.

Best of Luck

Common questions

Powered by AI

Organizations can prevent cybercrime through a multi-faceted approach: implementing strong access controls with user authentication, regularly updating and patching systems, establishing comprehensive security policies, and training employees in cybersecurity awareness. Intrusion detection systems should monitor networks for suspicious activity, while data encryption protects sensitive information. Conducting regular security audits can identify vulnerabilities, and maintaining rigorous backup policies ensures data recovery after breaches. These layered defenses help in minimizing cybersecurity risks effectively .

First-come, first-served (FCFS) scheduling is simple and straightforward, allocating CPU access based on arrival order, which minimizes processing overhead. However, this algorithm can lead to inefficiencies, like the convoy effect where short processes wait behind long ones, increasing turnaround and response times. FCFS can degrade system performance, particularly under heavy load or varied job lengths, where more dynamic scheduling like shortest job next might optimize system efficiency by reducing average waiting time .

The control bus in a computer system's architecture carries control signals from the CPU that manage and coordinate the operations of the computer. These signals include commands for memory read/write, input/output operations, and ensuring proper timing across the system. The control bus facilitates the flow of control information between the CPU and other components, ensuring that data is processed correctly and in synchronization, which is crucial for overall system stability and performance .

Spyware is a type of malware specifically designed to collect data from users unknowingly, transmitting it to external entities. Unlike viruses which replicate, or ransomware which demands payment, spyware operates covertly, typically tracking user actions, logging keystrokes, or capturing screen data. Spying activities facilitate marketing data collection or unauthorized access to sensitive information. Recognizing and countering spyware involves using specific anti-spyware tools, system monitoring, and maintaining up-to-date security software .

The 'do-while' loop guarantees at least one execution of the loop body before condition testing, which is advantageous when the loop must execute at least once regardless of condition, such as post-processing tasks or repeated menus in user interfaces until a valid response is given. Contrast this with 'for' or 'while' loops, which may not execute if the condition is false initially, making 'do-while' particularly useful for initial task run-throughs that demand at least one trial .

The key components of computer architecture include the Central Processing Unit (CPU), memory (both primary and secondary), input/output devices, and the system bus. The CPU, comprising the control unit and arithmetic logic unit, executes instructions. Memory stores data and instructions: primary memory for active data, secondary for long-term storage. Input/output devices enable interaction with the user. The system bus facilitates communication between the CPU, memory, and other components. In a block diagram, these components are interconnected, illustrating data flow pathways essential for task execution .

The primary functions of an operating system include managing the computer's hardware resources, providing a user interface, executing and providing services for application software, and ensuring security and efficient use of the computer. The operating system acts as an intermediary between users and the computer hardware. It controls and allocates memory, prioritizes system requests, controls input and output devices, facilitates networking, and manages files. Key components include the kernel, which communicates directly with the hardware, and system libraries, which provide application programs access to OS resources. Together, these functions ensure that various applications can run smoothly on a computer system .

CSS types include inline, internal, and external stylesheets, differing in application scope and reusability. Inline CSS applies styles directly to HTML elements via the 'style' attribute, useful for quick, unique styling. Internal CSS, within the 'style' tag in the HTML '<head>', applies styles to a single document, aiding in section-based styling. External CSS, in separate '.css' files linked via '<link>', provides styles across multiple pages, promoting consistency and easing maintenance. External CSS is most efficient for large projects needing uniform design .

The primary difference between 'do' and 'while' loops lies in their execution check point; 'do' loops check the condition after the execution of the loop body, ensuring that the loop executes at least once, while 'while' loops check the condition before, possibly never executing if the condition is false. 'Do' loops are useful when the loop must run at least once, such as user prompt input validation. 'While' loops are better suited for iterative processes that depend on pre-evaluation, like monitoring a variable's state until it changes .

To convert a decimal number to its binary equivalent, divide the number by 2 and record the remainder. Continue dividing the quotient by 2 until the quotient is 0, recording each remainder. The binary number is the sequence of remainders read in reverse order. For example, converting decimal 13 to binary: 13 ÷ 2 = 6 remainder 1; 6 ÷ 2 = 3 remainder 0; 3 ÷ 2 = 1 remainder 1; 1 ÷ 2 = 0 remainder 1. Thus, the binary representation of 13 is 1101 .

You might also like