Posts

Showing posts from 2016

Class XI Computer Science Winter Vacation Assignment 2016-17

Make notes of following Chapters: 01. Operators and Expressions. 02. Flow of Controls. 03. Functions - In-built and User Defined Functions.

Project for Class XII IP

Students can download and review the projects from the following link. http://ip4you.blogspot.in/p/blog-page.html Also there are study material (topic-wise), so also go through these materials. Practice them, solve as many as problems you can. And if you have any doubt, you can post it in comment section of this page.

BLUE PRINT- HALF YEARLY EXAM CLASS XI COMPUTER SCIENCE 2016

BLUE PRINT FOR HALF YEARLY EXAMINATION 2016-17 SUBJECT: COMPUTER SCIENCE CLASS: XI CHAPTERS/UNIT VSA (1 MARKS) SA-2 (2 MARKS) SA-II (3 MARKS) LA (4 MARKS) TOTAL UNIT-1 1. Comp Fundamentals 1(1) - - 4(1) 5(2) 2. Software Concepts - 2(1) 3(1) - 5(2) 3. Data Representation 1(1) 4(2) - - 5(3) 4. Microprocessor and Memory Concepts - 2(1) 3(1) - 5(2) 2(2) 8(4) 6(2) 4(1) 20(9) UNIT-2 1. Flowchart/Algorithm 1(1) 2(1) 9(3) 4(1) 10(4) 2. Programming. Methodologies 1(1) 6(3) 3(1) 4(1) 14(6) 2(2) 8(4) 6(2) 8(2) 24(10) UNIT-3 1. Getting Started with C+ And Data Handling ...

Assignment - Classes AND Objects XII CS

Q1. Differentiate between public & private visibility modes in context of Object Oriented Programming using suitable examples. Q2. What do you understand by a member function? How does a member function differ from an ordinary function? Q3. What are the advantages and disadvantages of inline functions. Q4. What are static class members? Q5. Rewrite following code after removing syntax errors.UNderline each correction. class TRAIN{ long TrainNo; Char Description[25]; public: void Entery(){ cin>>TrainNo; gets(DEscription); } void Display(){ cout<<TrainNo<<":"<<Description<<endl; } }; void main(){ TRAIN T; Entry.T(); DIsplay.T(); } Q6. Define a class Flight in C++ with the following specification: Private Members: • A Data Member Flight Number of type integer • A Data Member Destination of type String • A Data Member Distance of Float Type • A Data Member Fuel of type float A Member Function CalFuel( ) to ...

HOLIDAY HOME WORK FOR CLASS XII B 2016-17 (SUMMER VACATION)

Image
Q1.  Observe  the  following  C++  code  and  write  the  name(s)  of  the header  file(s),  which  will  be  essentially  required  to  run  it  in  a C++ compiler :                                 void main() { char CH,STR[20]; cin>>STR; CH=toupper(STR[0]); cout<<STR<<”starts with”<<CH<<endl; } Q2.  Rewrite  the  following  C++  code  after  removing  all  the  syntax error(s),  if   present  in  the  code.  Make sure that you  underline each correction done by you in the code.                  ...

Blue Print SEE 2016 - Computer Science

Download Blue Print of CS XI - SEE 2016  

SQL Practical Question

Create table “EMP” as per the following specification: COLUMN NAME DATATYPE SIZE CONSTRAINTS Emp_No Integer 4 Primary Key Emp_Name Varchar2 20 Not Null Job Varchar2 10 Hiredate Date dd-mm-yyyy Salary Float 10,2 Salary>10000 Commission Integer 4 DeptNo Integer 2 10,20 or 30 Job Types are: ·          President ·          Manager ·          Clerk ·          Salesman Commission given only to ‘salesman’. QUESTIONS 1)       Create the above table including its constraints. 2)     ...