CBSE Class 11 Informatics Practices Worksheet Set E Solved

Read and download free pdf of CBSE Class 11 Informatics Practices Worksheet Set E Solved. Download printable Informatics Practices Class 11 Worksheets in pdf format, CBSE Class 11 Informatics Practices All Chapters Worksheet has been prepared as per the latest syllabus and exam pattern issued by CBSE, NCERT and KVS. Also download free pdf Informatics Practices Class 11 Assignments and practice them daily to get better marks in tests and exams for Class 11. Free chapter wise worksheets with answers have been designed by Class 11 teachers as per latest examination pattern

All Chapters Informatics Practices Worksheet for Class 11

Class 11 Informatics Practices students should refer to the following printable worksheet in Pdf in Class 11. This test paper with questions and solutions for Class 11 Informatics Practices will be very useful for tests and exams and help you to score better marks

Class 11 Informatics Practices All Chapters Worksheet Pdf

1.
(a) Distinguish between list and combo box. (Any one point) 

(b) Mr. Shriram has developed a Java application through which the students of his school can view their marks by entering their admission number. The marks are displayed in various
text fields. What Java code should he give so that the students are able to view, but not change their marks in text fields?

(c) Write the value that will be stored in the variable t after the execution of the following code. How many times will the loop execute ?

int sum=0;
int score=0;
double t;
do
{
score = score + 1;
sum = sum + score;
}
while (score<=4);
t = sum / 3;
2
(d) Rewrite the following code using for loop
Nm = 1;
while (Nm < 20) {
T = T + Nm;
Nm = Nm + 2; }

(e) Write Java code to display the numbers from 1 to 100 using while loop. 

(f) Write Java code to accept the number of lines n using input dialog box and generate the following pattern

1
12
123

(g) Design a GUI application that displays the details of volunteers for a community work project in your school.

The screenshot is given below for your reference

CBSE Class 11 Informatics Practices Worksheet Set E Solved 1

• The user types his / her rollno and selects his / her stream and section.
• Upon submitting, the selected contents of the two lists and Rollno should be displayed in a dialog box in the following way Roll number from Stream, Section



2.
Given the following table WORKER

CBSE Class 11 Informatics Practices Worksheet Set E Solved 2

Write SQL commands for questions (a) to (e) based on the above table.

(a) Create the structure of the above table with W_ID as Primary key. 

(b) Remove the details of the worker whose name ends with ‘s’ 

(c) Increase the rate by ₹10 for all workers. 

(d) Add a new field Bonus with data type numeric(7,2) in the above table. 

(e) Add a new row with the following values

W_ID = 2001, NAME = Francis, RATE = 325

VALUE POINTS 

1.

(a) Difference between list and combo box. (Any one point) 

(b) jTextField1.setEditable=false; 

(c) t=5.0 (1 mark)

The loop is executed 5 times (1 mark)

(d) Rewrite the following code using for loop

for (Nm=1;Nm<20;Nm=Nm+2)
T=T+Nm;

(e) Write Java code to display the numbers from 1 to 100 using while
loop.
i=1;
while (i<=100)
{
System.out.println(i);
i++;
}

(f) To generate the following pattern
1
12
123
int N,i,j;
String x;
x=JOptionPane.showInputDialog(“Enter the number of lines”);
N=Integer.parseInt(x);
for(i=1;i<=N;i++)
{
for(j=1;j<=i;++j)
System.out.print(j);
System.out.println();
}

(g) Code to perform Action on clicking Submit button
{
String St,Sec,R;
R=jTextField1.getText();
St=(String)jList1.getSelectedValue();
Sec=(String)jList2.getSelectedValue();
JOptionPane.showMessageDialog(null,"Roll Number "+R+" from
"+St+" Stream, Section "+Sec);
}

2.
(a) CREATE TABLE WORKER(W_ID INT PRIMARY KEY, NAME
VARCHAR(20), HRS INT, RATE INT);

(b) DELETE FROM WORKER WHERE NAME LIKE „%s‟; 

(c) UPDATE WORKER SET RATE= RATE + 10; 

(d) ALTER TABLE WORKER ADD Bonus NUMERIC(7,2); 

(e) INSERT INTO WORKER(W_ID,NAME,RATE)
VALUES(2001,‟FRANCIS‟,325);


Please click on below link to download CBSE Class 11 Informatics Practices Worksheet Set E Solved

Practice Worksheets for Class 11 Information Practices
CBSE Class 11 Informatics Practices Hardware Concepts Worksheet
CBSE Class 11 Informatics Practices Java Programming Decision Structures Worksheet
CBSE Class 11 Informatics Practices Java Programming List Box Worksheet
CBSE Class 11 Informatics Practices Java Programming Looping Structures Worksheet
CBSE Class 11 Informatics Practices Java Programming Variables Worksheet
CBSE Class 11 Informatics Practices Java Programming Worksheet
CBSE Class 11 Informatics Practices My Sql Worksheet Set A
CBSE Class 11 Informatics Practices My Sql Worksheet Set B
CBSE Class 11 Informatics Practices My Sql Worksheet Set C
CBSE Class 11 Informatics Practices My Sql Worksheet Set D
CBSE Class 11 Informatics Practices My Sql Worksheet Set E
CBSE Class 11 Informatics Practices My Sql Worksheet Set F
CBSE Class 11 Informatics Practices Python Conditional And Iterative Worksheet
CBSE Class 11 Informatics Practices Simple Queries Worksheet
CBSE Class 11 Informatics Practices Simple Queries Worksheet Set A
CBSE Class 11 Informatics Practices Sql Worksheet
CBSE Class 11 Informatics Practices Worksheet Set A Solved
CBSE Class 11 Informatics Practices Worksheet Set B Solved
CBSE Class 11 Informatics Practices Worksheet Set C Solved
CBSE Class 11 Informatics Practices Worksheet Set D Solved
CBSE Class 11 Informatics Practices Worksheet Set E Solved
CBSE Class 11 Informatics Practices Worksheet Set F Solved
CBSE Class 11 Informatics Practices Worksheet Set G Solved
CBSE Class 11 Informatics Practices Worksheet Set H Solved
CBSE Class 11 Informatics Practices Worksheet Set I Solved
CBSE Class 11 Informatics Practices Worksheet Set J Solved
CBSE Class 11 Informatics Practices Worksheet Set K Solved
CBSE Class 11 Informatics Practices Worksheet Set L Solved
CBSE Class 11 Informatics Practices Worksheet Set M Solved
CBSE Class 11 Informatics Technology Computer Fundamentals Worksheet
CBSE Class 11 Informatics Technology Computer Organization And Network Worksheet
CBSE Class 11 Informatics Technology Computer Organization And User Perspective Worksheet
CBSE Class 11 Informatics Technology IT Applications Worksheet
CBSE Class 11 Informatics Technology Networking And Internet Worksheet
CBSE Class 11 Informatics Technology Office Automation Tools Worksheet Set A
CBSE Class 11 Informatics Technology Office Automation Tools Worksheet Set B
CBSE Class 11 Informatics Technology Office Automation Tools Worksheet Set C
CBSE Class 11 Informatics Technology Office Automation Tools Worksheet Set D
CBSE Class 11 Informatics Technology Open Office Calc Worksheet
CBSE Class 11 Informatics Technology Open Office Impress Worksheet
CBSE Class 11 Informatics Technology Open Office Writer Worksheet Set A
CBSE Class 11 Informatics Technology Open Office Writer Worksheet Set B
CBSE Class 11 Informatics Technology Presentation Worksheet Set F
CBSE Class 11 Informatics Technology Troubleshooting Hardware Software And Networking Worksheet Set A
CBSE Class 11 Informatics Technology Troubleshooting Hardware Software And Networking Worksheet Set B
CBSE Class 11 Informatics Technology Word Processing Worksheet

All Chapters CBSE Class 11 Informatics Practices Worksheet

The above practice worksheet for All Chapters has been designed as per the current syllabus for Class 11 Informatics Practices released by CBSE. Students studying in Class 11 can easily download in Pdf format and practice the questions and answers given in the above practice worksheet for Class 11 Informatics Practices on a daily basis. All the latest practice worksheets with solutions have been developed for Informatics Practices by referring to the most important and regularly asked topics that the students should learn and practice to get better scores in their examinations. Studiestoday is the best portal for Printable Worksheets for Class 11 Informatics Practices students to get all the latest study material free of cost. Teachers of studiestoday have referred to the NCERT book for Class 11 Informatics Practices to develop the Informatics Practices Class 11 worksheet. After solving the questions given in the practice sheet which have been developed as per the latest course books also refer to the NCERT solutions for Class 11 Informatics Practices designed by our teachers. After solving these you should also refer to Class 11 Informatics Practices MCQ Test for the same chapter. We have also provided a lot of other Worksheets for Class 11 Informatics Practices which you can use to further make yourself better in Informatics Practices.

Where can I download latest CBSE Practice worksheets for Class 11 Informatics Practices All Chapters

You can download the CBSE Practice worksheets for Class 11 Informatics Practices All Chapters for the latest session from StudiesToday.com

Are the Class 11 Informatics Practices All Chapters Practice worksheets available for the latest session

Yes, the Practice worksheets issued for All Chapters Class 11 Informatics Practices have been made available here for the latest academic session

Is there any charge for the Practice worksheets for Class 11 Informatics Practices All Chapters

There is no charge for the Practice worksheets for Class 11 CBSE Informatics Practices All Chapters you can download everything free

How can I improve my scores by solving questions given in Practice worksheets in All Chapters Class 11 Informatics Practices

Regular revision of practice worksheets given on studiestoday for Class 11 subject Informatics Practices All Chapters can help you to score better marks in exams

Are there any websites that offer free Practice test papers for Class 11 Informatics Practices All Chapters

Yes, studiestoday.com provides all the latest Class 11 Informatics Practices All Chapters test practice sheets with answers based on the latest books for the current academic session