41
41
SCHEME OF VALUATION
1
III PART – B
21. Write the dual form of :
a) 1 + 0 = 1 0.1=0 1m
b) X . 1 = X X+0=X 1m
2m
Types of UPS :
Online UPS : It supplies power from its own inverter even when the power
line is functioning properly. 1m
Offline or standby UPS : It monitors the power line and switches to battery
power as soon as it detects a problem 1m
3
32. Describe the different levels of RDBMS.
Internal level:
It is the lowest level of data abstraction that deals with the physical
1m
representation of the database. It is also known as physical level.
Conceptual Level:
It is the next higher level of abstraction that deals with the logical structure of
1m
the entire database. It is also known as logical level.
External level:
It is the highest level of abstraction that deals with the user's view of the
database. It is also known as view level. 1m
<HTML> tag m arks the beginning of the HTML and </HTML> tag marks the
end of HTML document.
<HEAD> tag begins the head section of the HTML document and </HEAD>
tag defines the end of the heading.
<TITLE> tag gives title to HTML document that appears on browser title bar.
<BODY> tag defines the body of HTML document. 2m
4
V PART – D
35. What is primitive data structure? Explain the different operations
performed on primitive data structure.
Data structures that are directly operated upon by machine level instructions are 1m
known as primitive data structure.
i) Create: Create operations is used to create a new data structure. Ex: int x;
ii) Destroy: Destroy operation is used to destroy or remove the data structure
from the memory space.
iii) Select: Select operation is used by programmers to access the data within
the data structure.
iv) Update: Update operation is used to change the data of data structures. 4m
Father
Base class
Son
Derived class 1m
Multiple inheritance:
If a class is derived from more than one base class, it is known as multiple
inheritance.
---- Queen
Base class-1 Base class-2 Base class-n King
1m
Derived class Prince
Multilevel inheritance:
The classes can also be derived from the classes that are already derived. This
type of inheritance is called multilevel inheritance.
Hierarchical inheritance:
If a number of classes are derived from a single base class, it is called as
hierarchical inheritance
Base class
Staff
1m
Lecturers Office staff Group - D
7
Hybrid inheritance:
Hybrid inheritance is combination of Hierarchical and multilevel inheritance.
Base class
Derived class 1m
VI
42. Given the Boolean function F(A,B,C,D) = ∑(5,6,7,10,14,15). Simplify it
using K-map.
Quad 1 = B C
Pair 1 = A B D
Pair 2 = A C D 5m
Final SOP = B C + A B D + A C D
9
44. With reference to the table given below, write the SQL query to
perform the following operations:
101 C 5 200
102 Java 10 250
103 Python 20 350
104 HTML 15 150
105 SQL 25 230
*********
10