๐“ข๐“ธ๐“ต๐“พ๐“ฝ๐“ฒ๐“ธ๐“ท ๐“ž๐“ฏ ๐“’๐“ธ๐“ถ๐“น๐“พ๐“ฝ๐“ฎ๐“ป๐“ข๐“ฌ๐“ฒ๐“ฎ๐“ท๐“ฌ๐“ฎ ๐“ข๐“ช๐“ถ๐“น๐“ต๐“ฎ ๐“น๐“ช๐“น๐“ฎ๐“ป ๐“–๐“ป๐“ช๐“ญ๐“ฎ 11

 National Academy of Science & Technology

Secondary School

Dhangadhi, Kailali

๐‘บ๐’๐’๐’–๐’•๐’Š๐’๐’ ๐‘ถ๐’‡ ๐‘ช๐’๐’Ž๐’‘๐’–๐’•๐’†๐’“ ๐‘บ๐’„๐’Š๐’†๐’๐’„๐’† 2077

SUBJECT: - Computer Science

1. Define OS. Differentiate between System software and Application software. 5

Grade: XI (Science)                   F.M.: 50

Time: 2 Hrs.                                P.M.: 22

Group - "A" (Multiple Choice Questions)

Attempt all the questions. 9 x 1 = 9

1. The Generation of AI is

--5๐’•๐’‰ ๐’ˆ๐’†๐’

2. Which of the following is the 10’s complement of 9?

=1

3. What is the speed of computer measured in?

=Gigahertz

5. Which operator is used to start for enter the formula in in Excel cell? 

a. $ b. @ c. = d. +

๐’‚๐’๐’”๐’˜๐’†๐’“ ๐’Š๐’” ๐’„.=

6. ……refers to the technique used for verifying the integrity of the message?

=Digital signature

7. HTML is a …… Language

=Markup
8. Which one is not a Function in MS Excel?
a. SUM b. MAX c. AVG d. MIN
=๐‘จ๐‘ฝ๐‘ฎ
9. Which of the following is NOT a bus type? 
a. Address bus b. Data bus c. Memory bus d. Control bus 
=Memory bus


                  Group - "B" 
      (Short Answer Questions)
Attempt all questions.                     5 x 5 = 25

1. Define OS. Differentiate between System software and Application software.                    5



2. Define PowerPoint. Explain Processing Unit in Detail.                                                                      5




3. WAP to find whether the given number is prime or not.                                                         5   




4. Define HTML. Explain different types of CSS.  5












 



5. State and prove DeMorgan’s laws.                      5








Group - “C” 
(Long Answer Questions)
Attempt all questions.                                   8 x 2=16

                                                             

6. WAP to Sort the array in  ascending and descending order.                                                8



  #include <stdio.h>
  int main() {
        int n, data[100], i, j, temp;

        /* get the number of entries */
        printf("Enter your input for n:");
        scanf("%d", &n);

        /* get the input data */
        for (i = 0; i < n; i++)
                scanf("%d", &data[i]);

        /* sort the given data in ascending order */
        for (i = 0; i < n-1; i++) {
                for (j = i + 1; j < n; j++) {
                        if (data[i] > data[j]) {
                                temp = data[i];
                                data[i] = data[j];
                                data[j] = temp;
                        }
                }
        }

        /* data in ascending order */
        printf("Ascending Order:\n");
        for (i = 0; i < n; i++)
                printf("%d\n", data[i]);

        /* data in descending order */
        printf("\nDescending Order:\n");
        for (i = n-1; i >= 0; i--)
                printf("%d\n", data[i]);

        return 0;
  }





Output:
  jp@jp-VirtualBox:~/$ ./a.out
  Enter your input for n:5
  300
  100
  500
  200
  400

  Ascending Order:
  100
  200
  300
  400
  500

  Descending Order:
  500
  400
  300
  200
  100







7. Define Multimedia and list out its componen. What is Cybercrime. Explain Intellectual Property right in detail.                                   8




 


                                  ๐‘ฒ๐’†๐’†๐’‘ ๐‘บ๐’–๐’‘๐’‘๐’๐’“๐’•๐’Š๐’๐’ˆ.........
                                               ๐’๐’•๐’‰๐’†๐’“ ๐’‚๐’“๐’•๐’Š๐’„๐’๐’† ๐’”๐’๐’๐’๐’๐Ÿฅต๐Ÿฅต๐Ÿ‡ณ๐Ÿ‡ต

                                                          @๐‘ฏ๐’Š๐’Ž๐’‚๐’๐’”๐’‰๐’–_๐‘ฉ๐’‰๐’‚๐’•๐’•๐’‚


Post a Comment

Post a Comment (0)

Previous Post Next Post