What Is Computer

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

What is computer? What are its components?

Explain your OSI model.

Different type of topologies ?

Explain the network devices.

How is IT important in our day to day life?

Processed models and what is a software?

What is software testing and the different type of testing

What is SQL and the 12 rules of RDBMS?

SQL

It’s a structured query language. It is used for accessing databases and


manipulating them.

SQL lets you execute queries, retrieve data, insert update, delete records and
create new tables and databases.

RDBMS stores data as objects called tables.

A table is a collection of related data entries and consists of columns and rows.

SQL is divided into two parts DML (Data manipulation language) and DDL (Data
definition language)

DML
Select query extracts data from the database.

Update query: updates data on the database.

Delete: deletes a record

Insert: inserts a new record on the database.

DDL

Creates new databases or tables`

You might also like