Online Classes available for different programming languages & for classes X , XII
Define RDBMS
RDBMS - Relational Database Management System is a software used to store data in the form of related tables. Data is stored in the form of Rows and Columns. Rows are called tuple.Columns are called attributes. Tables are called relation.
Name any 3 RDBMS
Oracle
Microsoft SQL Server
Define
Tuple - Tuple is a name given to rows, Rows are the data of the table.
Attribute - Attribute is a name given to columns, columns are properties of the given table.
Degree - Degree is the number of columns in a table
Cardinality - Cardinality is the number of Rows in a given table.
Define SQL
SQL (Structured Query Language) is a language use to fetch and manipulate data in a the Database. Like SELECT, CREATE, DROP, INSERT, DELETE, UPDATE.
Full Forms
SQL - Sturctured Query Language
DML - Data Manipulation Language
DDL - Data Definition Language
DCL - Data Control Language
DQL - Data Query Language
RDBMS - Relational Database Management System
TCL - Trancation Control Language
Give Example of DML, DCL, DDL and SQL
DML - INSERT, DELETE, UPDATE
DCL - GRANT , REVOKE
DDL - CREATE, ALTER, DROP
What is the difference between CHAR and VARCHAR
What is the Difference between DDL and DML commands
Which command is used to remove the data?
DELETE FROM TABLENAME;
Which command is used to modify the data?
UPDATE TABLENAME
SET COLUMNNAME= 'NEW VALUE'
WHERE CONDITION;
Which command is used to modify the structure of the table?
ALTER TABLE TABLENAME
ADD COLUMNNAME DATATYPE;
ALTER TABLE TABLENAME
MODIFY COLUMNNAME DATATYPE;
ALTER TABLE TABLENAME
DROP COLUMNNAME;
Define PRIMARY KEY.
What is Foreign Key?
Define Candidate Key.
What is NULL?
What is Relation?
Which command is used to add data in a table?
What is Database?
Give some advantages of Databases.
Count(*) and Count(ColumnName)
Having and Where
Order By
Group By Having
Single Row Functions Vs Multi-Row Functions
Functions (instr,mid,substr,substring)
current Date and Time (now())
Cartesian Product T1 (5 Rows) T2(5 Rows) Total Output (25 Rows)
Natural Join or Join
PAN, LAN, MAN, and WAN (Full Form and Difference)
What is a repeater?
What is Modem?
Advantages of Network?
Topologies (Bus, Star, Ring, Mesh, Tree and Hybrid)
Which topology we are using in our computer Labs? - Star
What are Cookies?
Explain different Attributes
size
shape
index
columns
values
dtype
empty
T
count
What is NUMPy?
What is Pandas?
Difference between NumPy and Pandas?
What is Data Structure?
What is the purpose of PIP Command?
Name the Data Structures of Pandas.
What is Series?
What is DataFrame?
What is Panel?
What is One-Dimensional Array?
What is Two-Dimensional Array?
What is index? and Why it is used.
Define Positional Index and Labeled Index?
Define NaN?
What is Dictionary?
Explain range() function?
Explain arange() function?
What is the purpose of import command in python code?
Explain different functions
head()
tail()
count()
Explain loc and iloc?
Explain pop, drop and del keywords?
Explain append and extend?
Fulform of CSV and purpose of CSV files in python
Explain read_csv() and to_csv()
What is the difference between Indexing and slicing?
Which import statement is used to make pyplot?
Different function used to create plots or graphs
plot()
xlabel()
ylabel()
bar()
barh()
title()
legend()
xticks()
yticks()
show()
savefig()