Official Class 11 Informatics Practices Worksheets: Chapter 08 Introduction to Structured Query Language (SQL)
Explore structured practice materials through the CBSE Class 11 Information Practices Functions In My Sql Worksheet Set 04. Tailored for Class 11 learners, utilizing these Informatics Practices worksheets ensures thorough preparation and strengthens problem-solving accuracy before final school evaluations.
Solved Practice Worksheets for Informatics Practices
View or download the dedicated CBSE Class 11 Information Practices Functions In My Sql Worksheet Set 04 resource below. Engaging with these practice papers under focused study conditions ensures continuous academic progress and mastery of the 2026-27 curriculum for Chapter 08 Introduction to Structured Query Language (SQL).
CBSE Class 11 Information Practices - Functions in My SQL (4). Students can download these worksheets and practice them. This will help them to get better marks in examinations. Also refer to other worksheets for the same chapter and other subjects too. Use them for better understanding of the subjects.
FUNCTIONS IN MySQL
Q1. Write the output for the following statements:
Statement
Output
Statement
Output
1
SELECT POW(2,4);
12
SELECT POW(2,-2);
2
SELECT POW(-2,3);
13
SELECT POW(-2,-3);
3
SELECT ROUND(-1.23);
14
SELECT ROUND(-1.57);
4
SELECT ROUND(-1.58);
15
SELECT ROUND(1.43);
5
SELECT ROUND(6.298,1);
16
SELECT ROUND(6.235,0);
6
SELECT ROUND(56.34,-1);
17
SELECT TRUNCATE(7.543,1);
7
SELECT TRUNCATE(4.567,0);
18
SELECT TRUNCATE(-76.56,1)
8
SELECT TRUNCATE(342,-2);
19
SELECT SQRT(25);
9
SELECT SQRT(125);
20
SELECT SIGN(-43);
10
SELECT SIGN(654);
21
SELECT SIGN(-25);
11
SELECT LENGTH(‘INDIA’);
22
SELECT LENGTH(‘4321’);
23
SELECT CONCAT(‘My’, ‘S’, ‘SQL’);
24
SELECT CONCAT(‘Class’, NULL, ‘XI’);
25
SELECT INSTR (‘INFORMATICS’, ‘FOR’);
26
SELECT INSTR (‘COMPUTERS’, ‘PER’);
27
SELECT INSTR (‘COMPUTER’, ‘pu’);
28
SELECT LOWER (‘INFORMATION’);
29
SELECT UPPER (‘Indian’);
30
SELECT LCASE (‘IT’);
32
SELECT UCASE (‘COMPUTER’);
Statement
Output
33
SELECT LEFT (‘Information’, 3);
34
SELECT LEFT(“SCIENCE”,6);
35
SELECT RIGHT (‘INFORMATICS’,4);
36
SELECT LTRIM (‘ Class ’);
37
SELECT RTRIM (‘ Class ’);
38
SELECT TRIM (‘ Class ’);
39
SELECT SUBSTRING (‘INFORMATICS’,3);
40
SELECT SUBSTRING (‘INFORMATION’, FROM 4);
41
SELECT SUBSTRING (‘INFORMATION’, 3,4);
42
SELECT SUBSTRING (‘INFORMATION’, -3);
43
SELECT SUBSTRING (‘INFORMATION’, -5,3);
44
SELECT SUBSTRING (‘INFORMATION’, FROM -4 FOR 2);
45
SELECT ASCII(‘B’);
46
SELECT CHAR(65);
47
SELECT CURDATE ( );
48
SELECT NOW ( );
49
SELECT SYSDATE ( );
50
SELECT DATE (‘2016-02-26 01:02:03’);
51
SELECT MONTH (‘2016-02-26’);
52
SELECT YEAR (‘2016-02-26’);
53
SELECT DAYNAME(‘2016-02-26’);
54
SELECT DAYOFMONTH(‘2016-02-26’);
55
SELECT DAYOFWEEK(‘2016-02-26’);
56
SELECT DAYOFYEAR(‘2016-02-26’);
Functions in MySQL
Question 1. Write the output for the following statements:
Answer:
| Sl.No. | Statement | Output |
|---|---|---|
| 1 | SELECT POW(2,4); | 16 |
| 2 | SELECT POW(-2,3); | -8 |
| 3 | SELECT ROUND(-1.23); | -1 |
| 4 | SELECT ROUND(-1.58); | -2 |
| 5 | SELECT ROUND(6.298,1); | 6.3 |
| 6 | SELECT ROUND(56.34,-1); | 60 |
| 7 | SELECT TRUNCATE(4.567,0); | 4 |
| 8 | SELECT TRUNCATE(342,-2); | 300 |
| 9 | SELECT SQRT(125); | 11.180339887498949 |
| 10 | SELECT SIGN(654); | 1 |
| 11 | SELECT LENGTH('INDIA'); | 5 |
| 12 | SELECT POW(2,-2); | 0.25 |
| 13 | SELECT POW(-2,-3); | -0.125 |
| 14 | SELECT ROUND(-1.57); | -2 |
| 15 | SELECT ROUND(1.43); | 1 |
| 16 | SELECT ROUND(6.235,0); | 6 |
| 17 | SELECT TRUNCATE(7.543,1); | 7.5 |
| 18 | SELECT TRUNCATE(-76.56,1); | -76.5 |
| 19 | SELECT SQRT(25); | 5 |
| 20 | SELECT SIGN(-43); | -1 |
| 21 | SELECT SIGN(-25); | -1 |
| 22 | SELECT LENGTH('4321'); | 4 |
| 23 | SELECT CONCAT('My', 'S', 'SQL'); | 'MySQL' |
| 24 | SELECT CONCAT('Class', NULL, 'XI'); | NULL |
| 25 | SELECT INSTR ('INFORMATICS', 'FOR'); | 3 |
| 26 | SELECT INSTR ('COMPUTERS', 'PER'); | 0 |
| 27 | SELECT INSTR ('COMPUTER', 'pu'); | 4 |
| 28 | SELECT LOWER ('INFORMATION'); | 'information' |
| 29 | SELECT UPPER ('Indian'); | 'INDIAN' |
| 30 | SELECT LCASE ('IT'); | 'it' |
| 32 | SELECT UCASE ('COMPUTER'); | 'COMPUTER' |
| 33 | SELECT LEFT ('Information', 3); | 'Inf' |
| 34 | SELECT LEFT("SCIENCE",6); | 'SCIENC' |
| 35 | SELECT RIGHT ('INFORMATICS',4); | 'TICS' |
| 36 | SELECT LTRIM (' Class '); | 'Class ' |
| 37 | SELECT RTRIM (' Class '); | ' Class' |
| 38 | SELECT TRIM (' Class '); | 'Class' |
| 39 | SELECT SUBSTRING ('INFORMATICS',3); | 'FORMATICS' |
| 40 | SELECT SUBSTRING ('INFORMATION', FROM 4); | 'ORMATION' |
| 41 | SELECT SUBSTRING ('INFORMATION', 3,4); | 'FORM' |
| 42 | SELECT SUBSTRING ('INFORMATION', -3); | 'ION' |
| 43 | SELECT SUBSTRING ('INFORMATION', -5,3); | 'ATI' |
| 44 | SELECT SUBSTRING ('INFORMATION', FROM -4 FOR 2); | 'TI' |
| 45 | SELECT ASCII('B'); | 66 |
| 46 | SELECT CHAR(65); | 'A' |
| 47 | SELECT CURDATE ( ); | 2026-08-21 |
| 48 | SELECT NOW ( ); | 2026-08-21 16:21:00 |
| 49 | SELECT SYSDATE ( ); | 2026-08-21 16:21:00 |
| 50 | SELECT DATE ('2016-02-26 01:02:03'); | '2016-02-26' |
| 51 | SELECT MONTH ('2016-02-26'); | 2 |
| 52 | SELECT YEAR ('2016-02-26'); | 2016 |
| 53 | SELECT DAYNAME('2016-02-26'); | 'Friday' |
| 54 | SELECT DAYOFMONTH('2016-02-26'); | 26 |
| 55 | SELECT DAYOFWEEK('2016-02-26'); | 6 |
| 56 | SELECT DAYOFYEAR('2016-02-26'); | 57 |
In simple words: This table systematically presents the calculated outputs of mathematical, text-formatting, string, and date-related queries using standard built-in functions in MySQL.
Exam Tip: Be mindful of string functions like `INSTR` and `SUBSTRING` where indexing in MySQL is 1-based, unlike standard programming languages where it is 0-based. Also, remember that concatenating any string with a `NULL` value yields a final output of `NULL`.
Download Class 11 Informatics Practices Chapter 08 Introduction to Structured Query Language (SQL) Practice Worksheets
Mastering Chapter 08 Introduction to Structured Query Language (SQL) with Printable Worksheets
Access structured practice worksheets for Chapter 08 Introduction to Structured Query Language (SQL) aligned with the 2026 CBSE curriculum. These downloadable exercises for Class 11 Informatics Practices help students build accuracy and reinforce core concepts for upcoming school tests.
Verified Solutions and NCERT Alignment
Each worksheet draws directly from authorized standard textbooks to maintain academic accuracy. Evaluating your finished exercises against expert-verified solutions helps master the formal presentation standards expected in school evaluations.
Additional Study Resources for Class 11 Informatics Practices
Consistent engagement with these exercises builds familiarity with recurring exam themes. If specific areas within Chapter 08 Introduction to Structured Query Language (SQL) cause trouble, utilize our dedicated NCERT solutions for Class 11 Informatics Practices to clear up doubts immediately.
FAQs
You can download the latest chapter-wise printable worksheets for Class 11 Informatics Practices Chapter 08 Introduction to Structured Query Language (SQL) for free from StudiesToday.com. These have been made as per the latest CBSE curriculum for this academic year.
Yes, Class 11 Informatics Practices worksheets for Chapter 08 Introduction to Structured Query Language (SQL) focus on activity-based learning and also competency-style questions. This helps students to apply theoretical knowledge to practical scenarios.
Yes, we have provided solved worksheets for Class 11 Informatics Practices Chapter 08 Introduction to Structured Query Language (SQL) to help students verify their answers instantly.
Yes, our Class 11 Informatics Practices test sheets are mobile-friendly PDFs and can be printed by teachers for classroom.
For Chapter 08 Introduction to Structured Query Language (SQL), regular practice with our worksheets will improve question-handling speed and help students understand all technical terms and diagrams.