0% found this document useful (0 votes)
3 views16 pages

41 Computer Science

The document is an examination paper for a Computer Science subject, featuring a total of 44 questions with a maximum score of 70 marks. It is designed for a duration of 3 hours and includes questions in both Kannada and English. The questions cover various topics within computer science, including programming concepts and hardware components.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views16 pages

41 Computer Science

The document is an examination paper for a Computer Science subject, featuring a total of 44 questions with a maximum score of 70 marks. It is designed for a duration of 3 hours and includes questions in both Kannada and English. The questions cover various topics within computer science, including programming concepts and hardware components.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

  41

Registration No:

LX – 2025

41
 
Subject Code

  / COMPUTER SCIENCE


(Kannada and English Versions)
: 3  00  (   : 44)  : 70
Time : 3 Hours 00 Minutes] [Total No. of Questions : 44] [Max. Marks : 70
(Kannada Version)
 :
1.   A, B, C, D  E   .
-A       
-
2. 
.
 ,       
3. 
 -E  .
 - 
    .    .
I.     .  (20 × 1 = 20)

41   USB  (Port) ?


1) 

a)  (Mouse)

b) 

c)   (Graphics Card)

d)  


2)        (0) 

a)  b) 

c)   (SOP) d)   (POS)

41 COMPUTER SCIENCE
P.T.O. 1
S-18
41

    ?


3) 

1
1 y=?

a) 0 b) 1

c) 0, 1 d) 1, 1


4)   (Stack)  10, 20, 30  40   (Pushed) 
 (Poped)  

a) 10 b) 20

c) 30 d) 40

5) Class sample

private :int x;

public :int y;

};

  (members)   ?

a) x 

b) y 

c) x  y

d) x  y  

2
41

6)        ?

I.    .

II.       .

III.   .

a) I   b) II  

c) III   d)  

   


7) 

a)   b)  

c)    d)   (copy)

  (Operator)  ?


8) 

a) :: b) :

c) * d) ∼

 ptr 1  ptr 2   


9) 

a) ptr 1 + ptr 2 b) ptr 1 * ptr 2

c) ptr 1/ ptr 2 d) ptr 1 + 5

10) RDBMS    (Physical level)  

a)   b)  

c)   d)  

P.T.O. 3
41

11) SQL     (Table) ,    
 ?
a)    b)   

c)    d)   

      


12) 

a) 

b) 

c) 

d) 

13)  (Non dedicated)   


a) --

b) --

c) --

d) --

      


14) 

a)   b)  

c)   d)  

15)        


a) <src>

b) <pic>

c) <ul>

d) <img>

4
41

   /     .


II. 

(  (redundancy), , , ,  , DBMS)

     ,


16) _______
  .

17)       _________ 
.
       __________  .
18) 

19) __________     (Tree)  


.
    _________   .
20) 

 - 
III.    .    . (4 × 2 = 8)

21) X (X + 1) = X   .

22)  (Universal Gate) ?   .


23)      .
24) ' ifstream'     .
25)        .
26) INSERT  (Command)     .
27) SQL   ?    .

 - 
IV.    .    . (4 × 3 = 12)
 -    .
28) 
 (Array)    .
29) 

30)    'new'  .

P.T.O. 5
41

  ?       .
31) 

32) DBMS     .

       .


33) 


34)   (Web Scripting) ?   
 .
 - 
V.    .    . (4 × 5 = 20)


35)    (QUEUE)     .
    .
36) 

37)     ,   .


    .
38) 

 (Destructor) ?   .


39) 


40)   .    
.
41)   ?     .
VI.    .    . (2 × 5 = 10)

42)    -  .


F (A, B, C, D) = Σ (0, 2, 4, 5, 6, 8, 10)

43) Rectangle   (Class)      
 .
i)   : length, breadth

ii)   : getData( ), output( )

iii)     .

6
41

44) EMPLOYEE        SQL
 .
Emp id Name Basic DA
1001 AAAA 7,500
1002 BBBB 5,000
1003 CCCC 9,000
1004 DDDD 6,000

i) DA  basic  45%  .

ii) tot-sal    .

iii)       .

iv)   basic  .

v)    .

 - E
(   )
3)   OR     0  ?
a) 0 b) 1

c) 0, 1 d) 1, 1

P.T.O. 7
41

(English Version)

Instructions:
1. The question paper has five parts, namely A, B, C, D and E.
2. For Part – A questions, only the first written answers will be considered for evaluation.
3. For Questions having diagram, alternate questions are given at the end of the
Question Paper in a separate section (PART-E) for Visually-Challenged Students.

PART – A

Answer ALL the questions. Each question carries ONE mark.

I. Select the correct answers from the choices given below. (20 × 1 = 20)

1) Which of the following is not an USB device?

a) Mouse

b) Keyboard

c) Graphics card

d) Pen drive

2) A Boolean expression which is always false (0) is called

a) Tautology b) Fallacy

c) Sum of products d) Product of sum

3) Given the Logic Diagram,

1
1 y=? the output is

a) 0 b) 1

c) 0, 1 d) 1, 1

8
41

4) When the elements 10, 20, 30 and 40 are pushed into stack respectively which
is the element that popped first?

a) 10 b) 20

c) 30 d) 40

5) Class sample
{
private : int x;
public : int y;
};
Identify the members that can be accessed outside the class.

a) x only

b) y only

c) both x and y

d) both x & y are not accessed

6) 
Which of the following statements are correct with respect to function
overloading?

I. Functions names are same.

II. Number of arguments are same with different data type.

III. Number of arguments are different.

a) Only I is true

b) Only II is true

c) Only III is true

d) All are true

P.T.O. 9
41

7) Constructor with zero argument is

a) Default constructor b) Parameterized constructor

c) Overloaded constructor d) Copy constructor

8) Which is the operator used for inheritance?

a) :: b) :

c) * d) ∼

9) Identify the valid operation with respect to pointer ptr 1 and ptr 2

a) ptr 1 + ptr 2

b) ptr 1 * ptr 2

c) ptr 1/ptr 2

d) ptr 1 + 5

10) In RDBMS architecture, the physical level is also called as

a) Conceptual level b) Internal level

c) View level d) Logical level

11) Which language of SQL provides commands to create, alter and drop the table?

a) Data Definition Language

b) Data Query Language

c) Data Manipulation Language

d) Data Control Language

10
41

12) The device used to boost up a weak signal in the network

a) Router

b) Modem

c) Switch

d) Repeater

13) The network with non-dedicated server is known as

a) Peer-to-server

b) Server-to-server

c) Server-to-peer

d) Peer-to-peer

14) The top level webpage that is displayed when a website is opened

a) Domain page

b) Home page

c) Server page

d) Creative page

15) The tag used to insert an image in the webpage is

a) <src>

b) <pic>

c) <ul>

d) <img>

P.T.O. 11
41

II. Fill in the blanks choosing the appropriate word/words from those given in the bracket.

(Redundancy, Hierarchical, Staging, Domain, Database, DBMS)


16) _______ is a collection of logically related data organised in a way that data can
be easily accessed, managed and updated.

17) Set of values for an attribute is called _____

18) The replication of data in the database is called ________.

19) _______ model organizes the data in tree like structure.

20) Data transformation is often called as _________.

PART – B

III. Answer any FOUR questions. Each question carries TWO marks. (4 × 2 = 8)

21) Prove algebraically that X (X + 1) = X.

22) What is Universal gate? Give an example.

23) Mention two methods for invoking a parameterized constructor.


24) List two member-functions of 'ifstream' class.
25) Write two features of sequential file organization.
26) Give the syntax and example for INSERT command.
27) What are SQL constraints? Mention any one constraint.

PART – C

IV. Answer any FOUR of the following. Each question carries THREE marks. (4 × 3 = 12)
28) Write a note on cache memory.

29) Mention any three advantages of Arrays.

30) Explain 'new' operator with syntax and example.

12
41

31) What is binary file? List two operations that can be performed on binary file.

32) Explain three data types in DBMS.

33) Mention three technologies and services used in E-Commerce.

34) What is scripting? Mention types of scripting.

PART – D

V. Answer any FOUR questions. Each question carries FIVE marks. (4 × 5 = 20)

35) Explain different operations on Queue.

36) Write an algorithm to search an element using binary search method.

37) Mention three advantages and two disadvantages of OOP.

38) Give the advantages of inline function.

39) What is destructor? Give the rules for destructor.

40) Define visibility mode. Briefly explain any two visibility modes.

41) What is Network topology? Explain Star and Bus topology.

VI. Answer any TWO questions. Each question carries FIVE marks. (2 × 5 = 10)

42) Given the Boolean Expression.

F (A, B, C, D) = Σ (0, 2, 4, 5, 6, 8, 10). Reduce the expression using K-map.

43) Define a class 'Rectangle' with the following conditions.

i) Data members: length, breadth

ii) Member functions: getData( ), output( )

iii) Define member functions inside the class

P.T.O. 13
41

44) With reference to the EMPLOYEE table, write suitable query.


Emp id Name Basic DA
1001 AAAA 7500
1002 BBBB 5000
1003 CCCC 9000
1004 DDDD 6000

i) Compute DA as 45% of basic.


ii) Add a new column total-salary.
iii) Display structure of table after adding a new column.
iv) Select lowest basic salary.
v) List all the records.

PART – E
(For Visually-Challenged Students only)

3. What is the output of 2 input OR Gate when both inputs are 0?


a) 0 b) 1
c) 0, 1 d) 1, 1

_________________

14

You might also like