Computer Science 1 2016-2017 HSC Science (Computer Science) 12th Board Exam Question Paper Solution

Advertisement Remove all ads
Computer Science 1
Marks: 50 Academic Year: 2016-2017
Date: March 2017
Advertisement Remove all ads

[10] 1
[4] 1.1 | Select correct option ·from the following and rewrite sentence :
[1] 1.1.1

The time lost in turning the attention of processor from one process
to another is called as ________

(i) Circuit Switching
(ii) Band Width
(iii) Context Switching
(iv) Packet Switching

Concept: Operating System
Chapter: [1] Operating System
[1] 1.1.2

A record is collection of_______

(i) Files
(ii) Arrays
(iii) Fields
(iv) Maps

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures
[1] 1.1.3

If all visibility labels are missing then by default members of class
are _______

(i)  Public
(ii) Protected
(iii)Private
(iv)Void

Concept: C++ Programming
Chapter: [3] C++ Programming
[1] 1.1.4

_____tag is used to put a line break in HTML Code

(i) <HR>
(ii) <BR>
(iii) <P>
(iv) <LI>

Concept: Hyper Text Markup Language (HTML)
Chapter: [4] HyperTex Markup Language (HTML)
[6] 1.2 | Answer any two of the following :
[3] 1.2.1

What is Friend Function ?

Concept: C++ Programming
Chapter: [3] C++ Programming

State characteristics of Friend Function.

Concept: C++ Programming
Chapter: [3] C++ Programming
[3] 1.2.2

Explain in short the three special characteristic of a static data member in a class.

Concept: C++ Programming
Chapter: [3] C++ Programming
[3] 1.2.3

Explain Virus Detection, Removal and Prevention

Concept: Operating System
Chapter: [1] Operating System
[10] 2
[6] 2.1 | Answer any two of the following :
[3] 2.1.1

Explain with flowchart the following control structure : Iteration Logic

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures

Explain with flowchart the following control structure : Selection Logic

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures

Explain with flowchart the following control structure : Sequence Logic

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures
[3] 2.1.2

Explain Bubble Sort Algorithm with. suitable example.

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures
Advertisement Remove all ads
[3] 2.1.3

What functions are performed by Memory Management of Operating System ?

Concept: Operating System
Chapter: [1] Operating System

State any four Memory Management System.

Concept: Operating System
Chapter: [1] Operating System
[4] 2.2 | Answer any one of the following :
[4] 2.2.1

What is Operator Function? Describe the syntax of an operator Function.

Concept: C++ Programming
Chapter: [3] C++ Programming

Describe the syntax of an Operator Function.

Concept: C++ Programming
Chapter: [3] C++ Programming

Explain difference between Operator Function as Member Function and as a Friend Function

Concept: C++ Programming
Chapter: [3] C++ Programming
[4] 2.2.2

With reference to process management. Explain the terms :
(i) Internal Priority
(ii) External Priority
(iii) Purchase Priority
(iv) Time Slice

Concept: Operating System
Chapter: [1] Operating System
[10] 3
[6] 3.1 | Answer any two of the following :
[3] 3.1.1

write difference between Linear Search and Binary Search.

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures
[3] 3.1.2

Explain different types of inheritance with suitable diagram.

Concept: C++ Programming
Chapter: [3] C++ Programming
[3] 3.1.3

How linked list are represented in Memory ?

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures
[4] 3.2 | Answer any one of the following :
[4] 3.2.1

Define the following terms with reference to Tree : Root

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures

Define the following terms with reference to Tree : Leaf

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures

Define the following terms with reference to Tree : Sibling

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures

Define the following terms with reference to Tree : Depth

Concept: Basic Data Structures (Stack, Queue, Dequeue)
Chapter: [2] Data Structures
[4] 3.2.2

What is Computer Virus ?

Concept: Operating System
Chapter: [1] Operating System

What are the different method by which virus can infect other  programs ?

Concept: Operating System
Chapter: [1] Operating System
[10] 4
[6] 4.1 | Answer any two of the following :
Advertisement Remove all ads
[3] 4.1.1

With syntax diagram explain structure of HTML WebPage.

Concept: Hyper Text Markup Language (HTML)
Chapter: [4] HyperTex Markup Language (HTML)
[3] 4.1.2

What is Function Overloading ? Give examples of Function Overloading.

Concept: C++ Programming
Chapter: [3] C++ Programming
[3] 4.1.3

State features of WINDOWS - NT

Concept: Operating System
Chapter: [1] Operating System
[4] 4.2 | Answer any one of the following :
[4] 4.2.1

State the various steps involved in the allocation of partition in case of fixed partition memory management.

Concept: Operating System
Chapter: [1] Operating System
[4] 4.2.2

Explain the use of Scope resolution Operator and Memory Management Operators in C++ with examples .

Concept: C++ Programming
Chapter: [3] C++ Programming
[10] 5
[10] 5.1 | Solve any two :
[5] 5.1.1

Write a program in C++ to read a set of 10 numbers from keyboard and findout largest number in the given array.

Concept: C++ Programming
Chapter: [3] C++ Programming
[5] 5.1.2

Write a program in C++ to find factorial of entered number.

Concept: C++ Programming
Chapter: [3] C++ Programming
[5] 5.1.3

Write a code in HTML for following table :

Concept: Hyper Text Markup Language (HTML)
Chapter: [4] HyperTex Markup Language (HTML)
[10] 5.2 | Solve any two :
[5] 5.2.1

Impliment class GCD which have member function (a/c), which calculate greatest common divisor of two number entered during program execution. Print( ) will Print GCD of two number.

Concept: C++ Programming
Chapter: [3] C++ Programming
[5] 5.2.2

Write a C++ program to display a series of 15 term of the Fibonacci Series.

Concept: C++ Programming
Chapter: [3] C++ Programming
[5] 5.2.3

Write the exact output of the following HTML Code with font  specification in backet

<html>
<head>
<title> Introduction </title>
</head>
<body>
<h1><b>Computer Science</b></h1>
<hr> 
<u> Paper-I </u>
<hr>
<u> Paper-II </u>
</body>
</html/>

 

Concept: Hyper Text Markup Language (HTML)
Chapter: [4] HyperTex Markup Language (HTML)

Request Question Paper

If you dont find a question paper, kindly write to us





      View All Requests

Submit Question Paper

Help us maintain new question papers on Shaalaa.com, so we can continue to help students




only jpg, png and pdf files

Maharashtra State Board previous year question papers 12th Board Exam Computer Science 1 with solutions 2016 - 2017

     Maharashtra State Board 12th Board Exam Computer Science 1 question paper solution is key to score more marks in final exams. Students who have used our past year paper solution have significantly improved in speed and boosted their confidence to solve any question in the examination. Our Maharashtra State Board 12th Board Exam Computer Science 1 question paper 2017 serve as a catalyst to prepare for your Computer Science 1 board examination.
     Previous year Question paper for Maharashtra State Board 12th Board Exam Computer Science 1-2017 is solved by experts. Solved question papers gives you the chance to check yourself after your mock test.
     By referring the question paper Solutions for Computer Science 1, you can scale your preparation level and work on your weak areas. It will also help the candidates in developing the time-management skills. Practice makes perfect, and there is no better way to practice than to attempt previous year question paper solutions of Maharashtra State Board 12th Board Exam.

How Maharashtra State Board 12th Board Exam Question Paper solutions Help Students ?
• Question paper solutions for Computer Science 1 will helps students to prepare for exam.
• Question paper with answer will boost students confidence in exam time and also give you an idea About the important questions and topics to be prepared for the board exam.
• For finding solution of question papers no need to refer so multiple sources like textbook or guides.
Advertisement Remove all ads
Share
Notifications

View all notifications


      Forgot password?
View in app×