CBSE Board Exam CS/IT/ IP/ AI Class-12 Practical Files
CBSE Class- 12 -Computer Science (083) Practical File CBSE Class- 12 -IP (065) Practical File CBSE Class- 10 -Information Technology (402) Practical File
CBSE Class- 12 -Computer Science (083) Practical File CBSE Class- 12 -IP (065) Practical File CBSE Class- 10 -Information Technology (402) Practical File
A- Quick Revision SQL Stands for: Structured Query Language SQL is a type of: Relational Database Management System A type of database in which data is stored in the format of rows and columns i.e. in a table is called: Relational Database Management System Table in RDBMS is known as: Relation Row in RDBMS is…
MySQL Functions Functions are used to perform some specific task. Every functions has a particular pre-defined tasks. functions are categorized into two parts. 1. Single Row Functions These functions operates on a single row at a time. These functions are categorized into following parts- i. Math Functions ii. String Functions iii. Date and Time functions…
Length of List len() is used to determine the length of any list in python. Syntax- len(List_name) type() function This function is used to determine the data type of items in list. Syntax- type(List_name) list() Builder list() function is used to construct a list from given items. Syntax- list() Access Items in List List Items…
About LIST Lists are used to store multiple items in a single variable. List items are ordered, changeable, and allow duplicate values. List items are indexed, the first item has index [0], the second item has index [1] and last item has index [n-1] , where n is the no. of elements in list. The…
1. CREATE DATABASE It is used to create a new database. Syntax: CREATE DATABASE database_name; Example: CREATE DATABASE school; 2. USE It is used to select a database before performing any operation. Syntax: USE database_name; Ex.- USE school; 3. CREATE TABLE It is used to create a new table inside a database….
1.Primary Key Uniquely identifies each record in a table. Cannot contain NULL values. Each table can have only one primary key. Example: Roll no., Aadhar no. etc. 2.Candidate Key All attributes that can uniquely identify a record. From these, one key is chosen as the Primary Key. Example: Roll_No, Aadhar_No, and Email can all uniquely…