9 computer 10 set

SET 2

Group 'A'
Choose the correct answer and write it in your answer sheet.
(10 × 1 = 10)

  1. The wheel of the mouse helps to scroll the page:
    (a) Up-down (b) Left-right
  2. Which memory is located closest to the CPU for quick access?
    (a) Cache memory (b) Virtual memory (c) ROM (d) Cloud storage
  3. Which operating system is an example of multi-user OS?
    (a) Windows 95 (b) Linux (c) Palm OS (d) Android
  4. Which of the following is NOT a block programming platform?
    (a) Scratch (b) Blockly (c) Snap! (d) Python
  5. Which of the following are character formatting tags?
    (a)
    <sup> tag (b) <b> tag (c) <i> tag (d) All of them
  6. Why is CSS used with HTML?
    (a) CSS reduces HTML code (b) CSS reduces file size (c) CSS can be defined and used in multiple places (d) All of them
  7. Which of the following is the correct extension of a python file?
    (a) PYth (b) .Ph (c) .Py (d) .PF
  8. Where was WWW developed?
    (a) NASA (b) CERN (c) Microsoft (d) Apple
  9. ______ is not an example of antivirus software,
    (a) Kaspersky (b) Firewall (c) Avast (d) Norton 360
  10. In Python, a list is a data type used to store data within
    (a) Curly brackets (b) Square brackets (c) Parentheses (d) None of the above

Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. Why is a computer called an information processing machine?
  2. Differentiate between licensed and open source software.
  3. Convert (1101101010)₂ into the decimal number system and (1562)₁₀ into the octal number system.
  4. Perform (111010 + 10100)₂ and (110011 – 10100)₂ binary operations.
  5. Write HTML code to display one text input and a reset button using HTML.
  6. What is the internet? Write one use.
  7. Write two features of blog.
  8. Study the following Python code and answer the question below:

a = 25

b = 4

c = a % b

print(c)

(a) What will be printed?
(b) Which operator is used to find the remainder?

  1. Write the output of the given program and show it in a dry run table:

s = 0

for n in (2, 1, 6, 4, 5, 7):

    if (n % 2 == 0):

        print(n)

    s = s + n

print("sum", s)

  1. Write a python program to input length and breadth then find the area of a rectangle. (A = L × B)

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. How does a scanner work? Explain the process of scanning and how software like OCR enhances the usability of scanned images. [1+3]
  2. Arrange the blocks so that a sprite keeps moving 10 steps forever and bounces back when it touches the edge.
  3. Create an HTML Student Information Table to display details of 5 students including Name, Age, Class, and Grade.
  4. Explain the methods of preventing cybercrime.
  5. Write a python program to check whether a number is positive, negative, or zero using if ... elif ... else statements.

 

 

 

 


 

SET 3

Group 'A'
Choose the correct answer and write it in your answer sheet.
(10 × 1 = 10)

  1. In which device you get in-built keyboard:
    (a) Laptop (b) Mobile phone (c) Tablet (d) All of the above
  2. Primary objective of web cam is for:
    (a) Live streaming (b) Video conferencing (c) Video telephony (d) All of the above
  3. 3D printers create objects using which technology:
    (a) Subtractive manufacturing (b) Additive manufacturing (c) Impact printing (d) Non-impact printing
  4. Block programming is similar to:
    (a) Writing essays (b) Solving puzzles (c) Drawing maps (d) Solving equations
  5. Which of the following is an empty tag?
    (a) <html> (b) <head> (c) <body> (d) <br>
  6. Which of the following is not a type of CSS?
    (a) Embedded CSS (b) Inline CSS (c) Internal CSS (d) External CSS
  7. Which was the first web browser?
    (a) Chrome (b) Mosaic (c) Firefox (d) Safari
  8. Which of the following is not cyber security?
    (a) Network security (b) Information Security (c) Application software (d) Quantum Security
  9. What will be the value of the expression A.B = 5,87?
    (a) A = 5, B = 5 (b) A = 8, B = 8 (c) A = 5, B = 8 (d) None of them
  10. Which of the following is not a valid variable name in Python?
    (a) my-var (b) _var2 (c) 2_var (d) var_2

Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. Describe the roles of Control Unit and Register.
  2. What are ports in a computer system? Explain with any two examples.
  3. Convert (7533)₈ into the decimal number system and (2989)₁₀ into the binary number system.
  4. Perform (11011 × 1011)₂ and (111010 + 110)₂ binary operations.
  5. Create an ordered list of four favorite subjects using HTML.
  6. What is a web browser? Give examples.
  7. Define protocol with examples.
  8. Study the following Python code and answer the questions below:

val = int(input("Enter a value "))

if val > 0:

    print("Positive")

else:

    print("Negative or Zero")

(a) What will happen if the user enters -1?
(b) What is the data type of val?

  1. Write the output of the given program:

a = b = k = 1

c = 0

while(k <= 10):

    print(a, end=" ")

    c = a + b

    a = b

    b = c

    k += 1

print("loop Terminated")

  1. Write a python program to input two different numbers and to print smaller number.

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. What is virtual memory, and why is it important? Provide a real-life example of its use. [1+2+1]
  2. You are given a program where the cat sprite rotates 90° and says "Namaste" when the sprite is clicked. List and explain the block components used in this program.
  3. Write an HTML code to prepare your own bio-data.
  4. What do you mean by netiquette? Mention three good online behaviors.
  5. Write a python program to input two numbers from the user and display their sum, difference, product and quotient.

 

 

 

 

 

 

SET 4

Group 'A'
Choose the correct answer and write it in your answer sheet.
(10 × 1 = 10)

  1. Each bit of data is stored in the:
    (a) Memory transistors (b) Capacitors (c) Both a. and b. (d) None of these
  2. What is a key advantage of LED monitors over LCD monitors?
    (a) High power consumption (b) Better image quality and power efficiency (c) Larger size and weight (d) Lower cost
  3. Which of the following is an open source software?
    (a) Microsoft Office (b) Linux (c) Windows 11 (d) Adobe Photoshop
  4. In Scratch, the character that performs actions is called:
    (a) Stage (b) Sprite (c) Backdrop (d) Block
  5. Why are comments useful in HTML?
    (a) Write program codes (b) Add notes for developers without affecting output (c) Make text bold (d) Design web pages
  6. Which CSS property is used to change background color?
    (a) bgcolor (b) background (c) background-color (d) color
  7. Which one is secure?
    (a) HTTP (b) HTTPS (c) FTP (d) SMTP
  8. Which Act deals with cybercrime issues?
    (a) IT Act 2000 (b) ETA 2063 (c) Cyber Law 2010 (d) Privacy Act 2020
  9. How do you insert a comment that spans multiple lines in Python?
    (a) # This is a multi-line comment #
    (b) " This is a multi-line comment "
    (c) // This is a multi-line comment //
    (d) /* This is a multi-line comment */
  10. Which of the following is true about Python dictionaries?
    (a) Keys must be unique
    (b) Values must be unique
    (c) Dictionaries are ordered in Python 3.5
    (d) Dictionaries cannot be nested

Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. Why are registers considered faster storage or execution than RAM?
  2. Explain why primary memory is called volatile.
  3. Convert (100110110)₂ into the hexadecimal number system and (12BF)₁₆ into the binary number system.
  4. Perform (1001011 + 110010)₂ and (101101 × 11001)₂ binary operations.
  5. How do you display an image using HTML?
  6. Write two uses of email.
  7. Define social media with examples.
  8. Study the following Python code and answer the question below:

word = "HELLO"

print(word.lower())

(a) What is the output?
(b) Which string function is used here?

  1. Write the output of the given program:

# To print & find the sum of all numbers from 1 to 10

s = 0

for n in range(1, 11):

    print(n)

    s = s + n

print("Sum=", s)

  1. Write a program to read two different numbers. Find out the sum and product.

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. What are the applications of 3D printing? Discuss its importance in fields like medicine, manufacturing, and construction. [1+3]
  2. Arrange the blocks so that a sprite asks "What is your name?", waits for input, and then says "Hello, [name]".
  3. Write HTML codes to display the following output:

Computer System

 

Computer Hardware

· CPU

· Monitor

· Keyboard

· Mouse

 

Computer Software

· Operating Software

· Application Software

· Utility Software

  1. What are secure websites? Write any three ways to check if a website is secure or not.
  2. Write a python program that checks if a given character is a vowel or not (a, e, i, o, u). The input character should be a single letter.

 

SET 5

Group 'A'
Choose the correct answer and write it in your answer sheet.
(10 × 1 = 10)

  1. The QWERTY layout is associated with:
    (a) Mouse (b) Scanner (c) Keyboard (d) Joystick
  2. The main disadvantage of SSDs compared to HDDs is:
    (a) Slower performance (b) Higher cost per GB (c) More moving parts (d) Less storage capacity
  3. Which port is commonly used for connecting external storage devices?
    (a) VGA (b) HDMI (c) USB (d) Ethernet
  4. Which Scratch block is used to make characters move?
    (a) Motion block (b) Event block (c) Sensing block (d) My block
  5. Which tag is used to create a hyperlink in HTML?
    (a) <b> tag (b) <a> tag (c) <link> tag (d) <href> tag
  6. Which attribute is used to apply inline CSS in HTML?
    (a) style (b) css (c) font (d) design
  7. Which one is used to remove login?
    (a) Team Viewer (b) Facebook (c) Google Meet (d) Social media
  8. ______ are individual entities called in a blog.
    (a) Pages (b) Section (c) Posts (d) Articles
  9. In the following expression 5 ** 2 - 5 = ?
    (a) 30 (b) 25 (c) 20 (d) None of them
  10. Which of the following is a looping statement?
    (a) if statement (b) for statement (c) if-else statement (d) None of them

Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. Explain why the motherboard is often called the "backbone" of a computer.
  2. What is the difference between a monitor and a printer?
  3. Convert (CADA1)₁₆ into the decimal number system and (10101100101110)₂ into the octal number system.
  4. Perform (10100 – 1011)₂ and (111111 × 111)₂ binary operations.
  5. Write HTML code to display a short paragraph about "My Hobby".
  6. Define blog. Write two advantages of blog.
  7. Why is HTTPS more secure than HTTP? Give one reason.
  8. Study the following Python code and answer the question below:

subject = ["computer", "maths", "science"]

for L in subject:

    print(L)

(a) How many items are in the list?
(b) What will be the second output?

  1. Write the output of the given program and show it in a dry run table:

numbers = [2, 5, 7, 8, 10]

s = 0

for n in numbers:

    if n > 5:

        print(n)

    s += n

print("Total =", s)

  1. Write a python program to input a number and then print whether the number is 'odd' or 'even'.

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. "Computers can perform different tasks depending on the programs fed to them." Justify this statement.
  2. Arrange the blocks so that a sprite plays the sound "meow" 3 times using a repeat loop.
  3. Write the HTML code to display this table:

<table>

<caption>Mark-Sheet</caption>

<tr>

<th>Name</th>

<th>Percentage</th>

<th>Division</th>

</tr>

<tr>

<td>Santosh</td>

<td>91</td>

<td>1.54</td>

</tr>

<tr>

<td>Yuzin</td>

<td>90</td>

<td>18%</td>

</tr>

<tr>

<td>Aasha</td>

<td>89</td>

<td>1st</td>

</tr>

</table>

  1. Explain the importance of using strong passwords.
  2. Write a Python program to input a number n and print the first n Fibonacci numbers using a loop.

 

SET 6

Group 'A'
Choose the correct answer and write it in your answer sheet.
(10 × 1 = 10)

  1. Which slot on the motherboard is used to install a graphics card?
    (a) PCIe (Peripheral Component Interconnect Express)
    (b) SATA (Serial Advanced Technology Attachment)
    (c) IDE (Integrated Drive Electronics)
    (d) DIMM (Dual Inline Memory Module)
  2. USB is used to:
    (a) Data transfer (b) Power delivery (c) Both (a) and (b) (d) None of these
  3. What is the main function of the RAM in a computer system?
    (a) To store permanent data (b) To process graphics (c) To store temporary data for quick access (d) To connect the computer to the internet
  4. The default character (sprite) in Scratch is:
    (a) Dog (b) Cat (c) Bird (d) Fish
  5. Which HTML tag is used to display the smallest heading?
    (a) <h0> tag (b) <h1> tag (c) <h2> tag (d) <h6> tag
  6. Which HTML tag is used to link an external CSS file?
    (a) <css> (b) <style> (c) <link> (d) <script>
  7. Which social media platform is famous for professional networking?
    (a) Facebook (b) LinkedIn (c) Twitter (X) (d) Instagram
  8. Which of the following is a weak password?
    (a) Admin123 (b) Qwerty (c) 123456 (d) All of the above
  9. Find the value of variable n in the following expression:
    n = int(9.8)
    (a) n = 10 (b) n = 9 (c) n = 9.8 (d) None of them
  10. What will be the output of print(10 // 3)?
    (a) 3.33 (b) 3 (c) 3.0 (d) 4

Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. Differentiate between primary memory and secondary memory.
  2. Why is software essential for computer functionality?
  3. Convert (1011101)₂ into the octal number system and (5121)₁₀ into the binary number system.
  4. Perform (1010011 × 11011)₂ and (1000110 + 111)₂ binary operations.
  5. Explain the internal style sheet and the external style sheet.
  6. Define Blog. Write down any two disadvantages of blog.
  7. Write two differences between HTTP and HTTPS.
  8. Study the following Python code and answer the questions below:

for i in range(2, 11, 2):

    print(i, end="")

(a) Which numbers will be printed?
(b) How many times does the loop execute?

  1. Write the output of the given program and show it in a dry run table:

s = 0

for n in (1, 2, 3, 4, 5):

    s = s + n

    print("Sum =", s)

  1. Write a python program to input two different numbers and print the greater number.

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. Explain how the CPU interacts with both primary and secondary memory during data retrieval.
  2. What is an Arduino UNO? Write down its types of components.
  3. Design an HTML registration form that includes Name (text), Email (email), Password (password), Submit and Reset buttons.
  4. Write four rules to create a strong password.
  5. Write a Python program to input a number and print whether it is an Armstrong number or not.

 

SET 7

Group 'A'
Choose the correct answer and write it in your answer sheet.
(10 × 1 = 10)

  1. Which of the following is an example of non-volatile storage?
    (a) RAM (b) ROM (c) Cache memory (d) Registers
  2. What is the main advantage of Ethernet over Wi-Fi?
    (a) Higher speed and reliability (b) Wireless connectivity (c) Portability (d) Lower cost
  3. What type of software is used for managing files on your computer?
    (a) Application software (b) System software (c) Utility software (d) Mobile Apps
  4. Which component in micro-bit displays images, text, or animations?
    (a) Buttons (b) 5 × 5 LED matrix (c) Microphone (d) Sensors
  5. Which tag is used to insert an image in a webpage?
    (a) <Photo> (b) <img> (c) <picture> (d) <image>
  6. CSS stands for:
    (a) Cascading Style Sheets (b) Computer Style Sheets (c) Creative Style System (d) Colorful Style Sheets
  7. ".edu" in a domain represents which type of site?
    (a) Educational (b) Organizational (c) Governmental (d) Commercial
  8. Which of the following is an example of a secure search engine?
    (a) Google (b) Bing (c) DuckDuckGo (d) All of the above
  9. Find the correct output of the following expression:
    >>> len("Dang")
    (a) 2 (b) 3 (c) 4 (d) 5
  10. Which operator is used for exponentiation in Python?
    (a) ^ (b) ** (c) % (d) *

Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. What is optical storage? Write with examples.
  2. What is a printer? What are its types?
  3. Convert (6451)₈ into the hexadecimal number system and (A90F)₁₆ into the octal number system.
  4. Perform (1010010 – 11011)₂ and (1000101 × 1101)₂ binary operations.
  5. Write HTML code to make a horizontal line on the webpage.
  6. Define Social media. List two uses of social media.
  7. Explain remote login with examples.
  8. Rewrite the given program after correcting the bug:

n = 10

for m in range(1, 10):

    print(n, end=" ")

    n = n + 1

  1. Write the output of the given program and show it in a dry run table:

for i in range(1, 6):

    print(i * i)

  1. Write a Python program to input the radius of a circle and calculate its area (A = π × r²).

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. Explain the concept of utility software and its role in enhancing performance and functionality of a computer system.
  2. Define block programming. Write any three advantages of block programming.
  3. Design an HTML Contact Us page including:
    (a) Name, Email, Subject
    (b) Message (text area)
    (c) Submit button
  4. Define digital footprint. Write two differences between active and passive digital footprint.
  5. Write a Python program to input a list of numbers and print the second largest number.

 

SET 8

Group 'A'
Choose the correct answer and write it in your answer sheet.
(10 × 1 = 10)

  1. What is the storage capacity range of a pen drive?
    (a) 1 MB to 1 GB (b) 1 GB to 10 GB (c) 128 MB to a few terabytes (d) 10 GB to 100 GB
  2. What is the primary function of the data bus?
    (a) To carry control signals (b) To connect the power supply (c) To carry physical address (d) To transmit data between the CPU, memory, and input/output devices
  3. What is the final step in the CPU's function of processing instructions?
    (a) Fetching instructions (b) Decoding instructions (c) Executing instruction (d) Storing results
  4. In Scratch, which block would you use to repeatedly move a sprite 10 steps until it touches the edge?
    (a) forever [move 10 steps]
    (b) if touching edge → move 10 steps
    (c) repeat until [touching edge] → move 10 steps
    (d) wait until [touching edge] → move 10 steps
  5. Which of the following tag is used to draw horizontal lines?
    (a) <br> (b) <hr> (c) <h1> (d) <line>
  6. Which tag is used to create a text input field?
    (a) <textarea> (b) <input type="text"> (c) <input type="password"> (d) <form>
  7. In a blog, what is the use of "Archives"?
    (a) To edit photos (b) To view old posts (c) To chat with users (d) To make video calls
  8. Who is a digital citizen?
    (a) Someone who knows how to use the internet responsibly
    (b) Someone who plays games online
    (c) Someone who buys online only
    (d) Someone who owns a smartphone
  9. What is the output produced by the following expression:
    >>> print(round(3.7))
    (a) 3 (b) 4 (c) 3.7 (d) 2
  10. Which function is used to take input from the user in Python?
    (a) input() (b) scanf() (c) read() (d) cin()

Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. What is meant by versatility in terms of features of a computer?
  2. Why is the QWERTY keyboard layout designed in its current form?
  3. Convert (1110010)₂ into the hexadecimal number system and (12345)₁₀ into the octal number system.
  4. Perform (1001011 × 1101)₂ and (10110011 + 110)₂ binary operations.
  5. Name three ways to apply CSS to an HTML page.
  6. How can we use social media in a safe way?
  7. Define the concept of WWW.
  8. Rewrite the given program after correcting the bugs:

import math

n = int(input("Enter a number"))

s = math.sqrt(n)

print("Square root of", n, "=", s)

  1. Write the output of the given program and show it in a dry run table:

for n in range(2, 11, 2):

    print(n)

  1. Write a Python program to input the base and height of a triangle and calculate its area. (A = 1/2 × base × height)

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. Explain the architecture of a computer system, detailing the functions of the CPU, memory, input/output devices, and storage. [1+3]
  2. List and explain the main features of Scratch programming.
  3. Write an HTML code to prepare a web page about your school. The web page should contain the following:
    (a) Write an introduction about your school.
    (b) Write about any two extracurricular activities of your school.
  4. What is cyber security? Why is it important for individuals and businesses?
  5. Write a Python program to input a number and print its factorial using a function.

 

SET 9

Group 'A'
Choose the correct answer and write it in your answer sheet.
(10 × 1 = 10)

  1. What is Computer Based Training (CBT)?
    (a) Training conducted by robots
    (b) Training in computer repair
    (c) Training for computer games
    (d) Training using computer software and program
  2. What type of memory temporarily stores frequently accessed data for quicker retrieval?
    (a) RAM (b) Cache memory (c) ROM (d) Hard Disk
  3. What is the primary advantage of laser printers?
    (a) Low cost (b) High-quality text and graphics (c) Slow printing speed (d) Noisy operation
  4. Which of the following best describes the use of "My Blocks" in Scratch?
    (a) Used to store data
    (b) Used to add new sprites
    (c) Used to create custom blocks for repeated use
    (d) Used to control events
  5. Which tag is used to insert a table row in HTML?
    (a) <tr> tag (b) <td> tag (c) <table> tag (d) <th> tag
  6. Which input type creates small round buttons?
    (a) checkbox (b) radio (c) select (d) option
  7. What is the primary purpose of a Virtual Private Network (VPN)?
    (a) Securely connect to the internet and access resources
    (b) Used for online meetings
    (c) Play online games
    (d) Edits images online
  8. Which of the following is an active digital footprint?
    (a) Phone calls (b) Social media post (c) Emails (d) All of the above
  9. Which of these is a Python data type?
    (a) integer (b) float (c) string (d) All of the above
  10. Which of the following creates an infinite loop?
    (a) a = 1; while (a <= 3): print(a)
    (b) b = 1; while (b <= 3): print(b*b)
    (c) c = 5; while (c >= 1): print(c)
    (d) Both (a) and (b)

Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. Explain functions of the data bus in a computer system.
  2. Why is the SSD more popular than the hard disk in a modern computer today?
  3. Convert (BADE)₁₆ into the octal number system and (23045)₁₀ into the hexadecimal number system.
  4. Perform (100111 + 11011)₂ and (1010011 × 1001)₂ binary operations.
  5. Explain the basic tags of HTML.
  6. Write any two advantages of remote login.
  7. Write two advantages of social media.
  8. Rewrite the given program after correcting the bugs:

n = "nepal"

print(n.upper())

print(n.lower())

print(len(n))

  1. Write the output of the given program and show it in a dry run table:

a = 10

b = 3

c = a + b

d = a // b

e = a % b

print(c, d, e)

  1. Write a Python program to input a temperature in Celsius and convert it to Fahrenheit.

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. What is a device driver? Explain its importance with examples.
  2. Arrange the following blocks in correct order to make a sprite move to a random position, wait for 1 second, and play a sound.
  3. Write the HTML code to create the given form:

First Name: 

Last Name: 

Address: 

  1. Define digital footprint. Write three guidelines of being a good digital citizen.
  2. Write a Python program to input a string and check whether it is a palindrome.

 

SET 10

Group 'A'
Choose the correct answer and write it in your answer sheet.     (10 × 1 = 10)

  1. What does the IPOS cycle stand for?
    (a) Input, Process, Output, Storage
    (b) Install, Process, Operate, Store
    (c) Input, Print, Output, Save
    (d) None of these
  2. What does the motherboard typically contain?
    (a) Only the CPU
    (b) Only BIOS
    (c) CPU, BIOS, Memory and various ports
    (d) None of these
  3. What are the cost effective features of secondary memory?
    (a) High cost per bit
    (b) Low cost per bit
    (c) High speed
    (d) None of these
  4. Which component in micro-bit displays images, text, or animations?
    (a) Buttons (b) 5 × 5 LED matrix (c) Sensors (d) Microphone
  5. Which HTML tag is used to make text bold?
    (a) <i> (b) <u> (c) <b> (d) <strong>
  6. Which tag is used to write a small piece of text?
    (a) <textarea> (b) <input type="text"> (c) <input type="password"> (d) <small>
  7. The main purpose of social media is:
    (a) Editing document (b) Sharing and communication (c) Playing online games (d) None of these
  8. Multi-factor authentication requires:
    (a) Only a username
    (b) Only a password
    (c) More than one verification factor
    (d) None of these
  9. Which keyword is used to define a function in Python?
    (a) def (b) function (c) define (d) fun
  10. What will be the output of the following code?

n = "KATHMANDU"

print(n.lower())

(a) kathmandu (b) Kathmandu (c) None of them (d) Error


Group 'B'
Write a short answer to the following questions.
(10 × 2 = 20)

  1. Which output device would be most suitable for displaying a digital presentation? Explain why.
  2. How does system software differ from application software?
  3. Convert (71373)₈ into the binary number system and (1011100111)₂ into the hexadecimal number system.
  4. Perform (1001101 × 11001)₂ and (10010011 + 111)₂ binary operations.
  5. Write HTML code to create a hyperlink to www.google.com.
  6. Write two disadvantages of social media.
  7. List the components of a URL.
  8. Re-write the given program after correcting the bugs:

for i in range(1, 6):

    print(i)

    if i % 2 == 0:

        print("Even")

  1. Write the output of the given program and show it in a dry run table:

x = 5

y = 3

print(x > y)

print(x == y)

print(x != y)

  1. Write a Python program to input a number and check whether it is a multiple of 7.

Group 'C'
Write the long answer to the following questions.
(5 × 4 = 20)

  1. What is packaged software? How is it different from tailor-made software? Explain.
  2. Explain with examples how packaged software is used in daily life.
  3. Write HTML code to prepare a web page that contains a heading and a paragraph about your favorite subject.
  4. Explain the importance of cyber security in protecting personal and organizational data.
  5. Write a Python program to input a number and check whether it is prime or not.

 


Comments

Popular posts from this blog

9 Computer Note

Business English