coma2025
coma2025
Total Contact Hours: 200 (Theory & Practical: 180 ; Remedial & Home Assignment:20)
SEMESTER – III
Operators 3 Hours
Arithmetic operators, relational operators, logical operators,
assignment operators, augmented assignment operators, identity
operators (is, is not), membership operators (in not in).
Flow of Control
Introduction, use of indentation, sequential flow, conditional and 4 Hours
iterative flow.
Conditional statements
if, if-else, if-elseif-else. 5 Hours
Iterative Statement
for loop, range (), while loop, break and continue statements, nested 7 Hours
loops.
Strings
Introduction, string operations (concatenation, repetition,
membership and slicing), traversing a string using loops, built-in
functions/methods–len(), capitalize(), title(), lower(), upper(), 10 Hours
count(), find(), index(), endswith(), startswith(), isalnum(), isalpha(),
isdigit(), islower(), isupper(), isspace(),lstrip(), rstrip(), strip(),
replace(), join(), partition(), split().
Lists
Introduction, indexing, list operations (concatenation, repetition,
membership and slicing), traversing a list using loops, built-in 14 Hours
functions/methods–len(), list(), append(), extend(), insert(), count(),
index(), remove(), pop(), reverse(), sort(), sorted(), min(), max(),
sum(); nested lists.
Functions 14 Hours
Types of function (built-in functions, functions defined in module,
user defined functions), creating user defined function, arguments
and parameters, default parameters, positional parameters, function
returning value(s), flow of execution, scope of a variable (global
scope, local scope).
Internet Marketing
The PROS and CONS of online shopping, The cons of online shopping, 6 Hours
Justify an Internet business, Internet marketing techniques, The E-
cycle of Internet marketing, Personalization e-commerce.
CLASS XII
Full Marks: 30
1. Python Program 12 Marks
Coding 9 Marks
Output 3 Marks
2. MYSQL 10 Marks
Table creation 3 Marks
Data insertion in table 2 Marks
Two Queries 5 Marks
3. Lab Book 3 Marks
4. Viva 5 Marks
● Write a program to input the value of x and n and print the sum of the following series:
● Create a student table and insert data. Implement the following SQL commands on the student table:
o ALTER table to add new attributes / modify data type / drop attribute
o UPDATE table to modify data
o ORDER By to display data in ascending / descending order
o DELETE to remove tuple(s)
o GROUP BY and find the min, max, sum, count and average.
o LIKE, DISTINCT, NOT IN, IN, JOIN, CARTISIAN PRODUCT, SET DIFFERENCE, UNION, INTERSECTION etc.