Skip to main content

CBSE 2018 Question Paper Design - Informatics Practices


CBSE 2018 Question Paper Design
Class:  XII Subject: Informatics Practices
Q. No.
Topic/ Unit
Question Type
Marks
1
NETWORKING AND OPEN STANDARDS
a). Network Type & Communication Medium
2
b). Communication Media - Wired & Wireless Media Selection
2
c). Two examples of Open Source Operating System & Open Source Web Browser
2
d). Expand – GSM – Mobile Communication,
IP – Web Technology
2
e). Device Name – Firewall & Switch
2



10
2
PROGRAMMING IN JAVA
a). Variable Name – valid/ invalid
1
b). Data Type identification
1
c). Properties & Method or Swing Components (jButton)
2
d). HTML - <P> & <BR> tag
2
e). Difference b/w ComboBox & ListBox.
2
f). if to switch conversion
2



10
3
RELATIONAL DATABASE MANAGEMENT SYSTEM
a). MySql – use & source
1
b).Identification & Correction of error – UPDATE
1
c). SQL Data Type – “ ”, ‘ ’
2
d). SQL OUTPUT – SELECT & AGGREGATE FUNCTIONS
2
e). SQL OUTPUT - TRANSACTION & SELECT
2
f).SQL SINGLE ROW FUNCTIONS – Date, String & Math
2



10
4
PROGRAMMING IN JAVA
a). Identification of error – SWITCH
1
b). OUTPUT – While & JOptionPane, Operators
2
c). while to for loop Conversion
2
d). OUTPUT – values of variable after execution – if
2
e). OUTPUT - values of variable after execution – do while
2
f). GUI Problem – Use of for/ while/ if/ operators/ variables
CLEAR – setText(“”)/ setSelected(false)
EXIT – System.exit(0)
6



15
5
RELATIONAL DATABASE MANAGEMENT SYSTEM
i). SELECT Query Where Clause
1
ii). SELECT Query – LIKE Clause
1
iii). SELECT Query – DISTINCT Clause
1
iv). SELECT Query – Use of + operator
1
v). SELECT Query – ORDER BY Clause
1
vi). SELECT Query – BETWEEN Clause
1
vii). SELECT Query – WHERE Clause & AGGREGATE Function
1
viii). SELECT Query – WHERE/ AGGREGATE Function/ GROUP BY
1
ix). OUTPUT – AGGREGATE Function/ WHERE
1
x). OUTPUT – AGGREGATE Function/ WHERE/ DISTINCT
1



10
6
RELATIONAL DATABASE MANAGEMENT SYSTEM
a). CREATE TABLE
2
b). PRIMARY & FOREIGN Key with reason
2
c). i) JOIN – SELECT Query – BETWEEN Clause/ Where Clause
ii). JOIN – SELECT Query – LIKE Clause/ Where Clause
iii). UPDATE Query – Where Clause
2
2
2



10
7
IT APPLICATIONS
a). e-governance – Advantage
2
b). e-learning – Advantage
1
c). Control Selection
2



5
MAXIMUM MARKS:
70


Popular posts from this blog

Project Work for Class XII Informatics Practices (065) - CBSE 2020-2021

  Marks  allotted : 05 Marks A. PROJECT GUIDELINES The aim of the class project is to create tangible and useful IT application. The learner may identify a real-world problem by exploring the environment. e.g. Students can visit shops/business places, communities or other organizations in their localities and enquire about functioning of the organization, and how data are generated, stored, and managed. The learner can take data stored in csv or database file and analyze using Python libraries and generate appropriate charts to visualize. If an organization is maintaining data offline, then the learner should create a database using MySQL and store the data in tables. Data can be imported in Pandas for analysis and visualization. Learners can use Python libraries of their choice to develop software for their school or any other social good. Learners should avoid plagiarism and violation of copyright issues while working on projects. Any resources (data, image etc.) used in t...

Assignments - XII Computer Science

POINTERS ASSIGNMENT Assignment Date: 09/09/15 Submission Date: 14/09/15 Q1. What will be the output of the following program: int main() { int x [ ] = { 50, 40, 30, 20, 10}: int *p, *t; p = x; t = x + 1; cout << *p << “,” << *t++; return 0; } Q2. What will be the output of the program( Assume all necessary header files are included) void print (char * p ) { p = "Comp"; cout<<"value is "<<p<<endl; } int main( ) { char * x = "Class XII"; print(x); cout<<"new value is "<<x<<endl; return 0; } Q3. Identify errors on the following code segment, and underline the error. float c[ ] ={ 1.2,2.2,3.2,56.2}; float *k,*g; k=c; g=k+4; k=k*2; g=g/2; cout<<”*k=”<<*k<<”*g=”<<*g; Q4. Write the output of the following program. void print (char * p ) { p = "Comp"; cout<<"valu...