You are on page 1of 5

Introduction to Computing

(CS101)
Assignment # 03
Spring 2021

Name: Salman Khan


Student ID: MC210202853
Question # 01
Part: 01

Solution:
This diagram showing the “SYSTEM DOCUMENTATION”. System documentation is the
detailed information about a system design, specifications and its working.
Part: 02

Solution:
This diagram representing “TECHNICAL DOCUMENTATION”.
Part: 03

Solution:
This diagram is showing “USER DOCUMENTATION”.
Question # 02
1. Write a query to select the departments with 5 vacancies from the Department
table.

Select * from Departments where Vacancies = 5;

2. Write a query to select the candidates with a degree of BSIT from the Candidates
table.

Select * from Candidates where Degree = “BSIT”;

3. Write the query to show all the candidates with no experience from table
Candidates.

Select * from Candidates where Experience = 0;

4. Write the query to identify all the posts offered in Lahore from column Location in
the Department table.

Select JobTitle from Department where Location = “Lahore”;

5. Write a query to display all the information under department name and job title
from the Department's table.

Select Department, JobTitle from Departments;

6. Write a query to display all the information under department name and vacancies
from the Department's table.

Select Department Name, Vacancies from Department

You might also like