Practice Worksheets for Class 11 Informatics Practices: All Chapters
Explore reliable practice materials for All Chapters tailored for Class 11 learners. Utilizing these Informatics Practices worksheets ensures thorough preparation and strengthens problem-solving speed for upcoming school assessments.
Practice All Chapters Worksheets for Class 11 Informatics Practices
Access the complete worksheet PDF for All Chapters below. Regular practice with these targeted questions builds familiarity with standard exam patterns and helps secure higher marks in final Informatics Practices evaluations.
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
• 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
2.
Given the following table WORKER
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
Exam Preparation Worksheet for Class 11 Informatics Practices All Chapters
Download Practice Sheet: All Chapters (Class 11 Informatics Practices)
Access structured practice worksheets for All Chapters designed in alignment with the latest CBSE curriculum for Class 11 Informatics Practices. These printable problem sets help students build accuracy and prepare effectively for school tests.
Concept Clarification for All Chapters
Each worksheet is structured around standard CBSE textbooks, allowing students to check their working steps and correct mistakes early in their revision.
Additional Study Resources for Class 11 Informatics Practices
Explore our broader library of printable assignments, chapter notes, and mock tests designed to support continuous revision and secure higher marks in CBSE assessments.
FAQs
You can download the teacher-verified PDF for CBSE Class 11 Informatics Practices Worksheet Set 05 Solved from StudiesToday.com. These practice sheets for Class 11 Informatics Practices are designed as per the latest CBSE academic session.
Yes, our CBSE Class 11 Informatics Practices Worksheet Set 05 Solved includes a variety of questions like Case-based studies, Assertion-Reasoning, and MCQs as per the 50% competency-based weightage in the latest curriculum for Class 11.
Yes, we have provided detailed solutions for CBSE Class 11 Informatics Practices Worksheet Set 05 Solved to help Class 11 and follow the official CBSE marking scheme.
Daily practice with these Informatics Practices worksheets helps in identifying understanding gaps. It also improves question solving speed and ensures that Class 11 students get more marks in CBSE exams.
All our Class 11 Informatics Practices practice test papers and worksheets are available for free download in mobile-friendly PDF format. You can access CBSE Class 11 Informatics Practices Worksheet Set 05 Solved without any registration.