GRAPHIC ERA HILL UNIVERSITY
DIGITAL PRODUCTIVITY TOOLS AND MODERN WORKSPACE
(FIT)
PBC – 102
BCA – A (SEMESTER – 1)
2025-26
SUBMITTED TO SUBMITTED BY
Mr. Vaibhav Sharma Samar Ali Ansari
BCA – A
Semester – 1
Roll No. 75
CERTIFICATE
THIS IS TO CERTIFY THAT Mr./Ms. SAMAR ALI ANSARI HAS SATISFACTORILY
COMPLETED ALL THE REQUIRED LABORATORY WORK IN THE COURSE
DIGITAL RPODUCITVITY TOOLS AND MODERN WORKSPACE (FIT) – PBC- 102
IN PARTIAL FULFILMENT OF THE REQUIREMENTS FOR 1 - SEMESTER OF
BACHEOLARS OF COMPUTER APPLICATIONS DEGREE PRESCRIBED BY
GRAPHIC ERA HILL UNIVERSITY, BHIMTAL DURING THE SESSION 2025 – 26.
CONCERNED FACULTY HEAD OF DEPARTMENT
NAME OF EXAMINER:
SIGNATURE OF EXAMINER:
ACKNOWLEDGEMENT
This term work report for the lab “DIGITAL PRODUCTIVITY TOOLS AND MODERN
WORKSPACE (FIT)” is a result of guidance, support, and encouragement from many
people.
The student expresses sincere gratitude to Mr. Vaibhav Sharma, for valuable
guidance and constant support during the completion of the lab work.
The student also thanks the Head of Department and the respected Director, Col.
Prof. A.K. Nair, for providing necessary facilities and a productive learning
environment.
Date: ___________
Signature of Student: ____________________
Name of Student: Samar Ali Ansari
INDEX
EXP. NO. Dates NAME OF EXPERIMENT REMARKS
1 16/09/25 Prepare a resume using MS Word
2 20/09/25 Prepare a question paper in MS Word
3 25/09/25 Design an advertisement in MS Word
4 27/09/25 Draw a flowchart to find greatest of three
5 04/10/25 Make a New Year greeting card (PowerPoint)
6 12/10/25 Prepare a mark sheet using MS Excel
7 16/10/25 Prepare a bar graph in MS Excel
8 27/10/25 Write a short note on DOS
9 29/10/25 Explain the booting process
10 17/11/25 Explain basic LINUX commands
Q1. Prepare a resume using MS WORD.
SAMAR ALI ANSARI
+91 9997015785 EMAIL@[Link]
Career Objective
To develop strong technical and problem-solving skills in computer applications and contribute
effectively to academic and professional projects while growing as a learner.
Educational Qualification
Graphic Era Hill University 2025-28
(Bachelors’ of Computer Application)
Technical Skills
C Programming (Beginner)
Python
JavaScript
HTML & CSS
Basic Linux Commands
MS Office (Word, PowerPoint)
Projects
1. Personal Health Dashboard (MedTech Theme): A platform that allows users to store and
access all health-related data in one place. Role: UI/UX + Development
2. Programming & Flowchart Assignments: Includes algorithms, logic building, and
structured flowcharts for basic problem-solving.
Strengths
Fast learner
Good communication
Teamwork & Leadership
Logical thinking
Hobbies & Interests
Coding
Learning new technologies
Watching educational videos
Content creation
Q2. Prepare a question paper of FIT using MS WORD.
Graphic Era Hill University
End Term (Odd) Semester Examination December 2025
Name: __________________________________ Roll no.: ____________________________
Time: 3 Hours Maximum Marks: 100
Instructions:
All the questions are compulsory.
Answer any two sub questions from a, b and c in each main question.
Total marks for each question is 20.
Each sub-question carries 10 marks.
Q1
a. What is the importance of computational thinking in problem-solving? List different data types.
b. Explain general problem-solving techniques with examples.
c. Write pseudo code for calculating the average of three numbers.
Q2.
a. Describe the characteristics of an algorithm with examples.
b. Draw a flowchart to find the largest among three numbers.
c. Explain sequential, branching, and looping with examples.
Q3.
a. Describe functional units of a computer system with a block diagram.
b. What is the difference between 1st and 2nd generation computers?
c. Explain the classification of computers with examples.
Q4.
a. Define RAM and ROM. Differentiate between them.
b. Describe System Software and its objectives.
Q5.
a. Convert (101101)₂ to decimal, octal, and hexadecimal.
b. Convert (7F3)₁₆ to binary and decimal.
c. Convert the decimal number 457 into binary, octal, and hexadecimal.
d. Convert the binary code (11011)₂ to Gray code
e. Convert the octal number (735)₈ into binary and hexadecimal.
Q3. Design an advertisement using MS Word.
Q4. Draw a flowchart to find greatest of three.
START
INPUT A, B, C
Large = a
Large = a
Is b>large?
Large = a
Is c>large?
Print large
STOP
Q5. Make a New Year greeting card (PowerPoint).
Q6. Prepare a mark sheet using MS Excel and find rank.
Rank formula.
=RANK(number, range, [order])
E.g.
=RANK(H3, H3:H7)
Result:
Nischal
Rahul
Amit Highest to Lowest
Samar
Ayush
Q7. Prepare a bar graph in MS Excel.
Q8. Write a short note on DOS.
DOS (Disk Operating System) is a simple, text-based operating system that uses commands to
manage files, run programs, and control hardware. It does not have a graphical interface and works
entirely through the command line. Although old, DOS is still useful for learning basic operating
system concepts.
Q9. Explain the booting process.
Booting is the process of starting a computer. When the system is powered on, the BIOS first check
the hardware using POST. It then finds a bootable device and loads the boot loader. The boot loader
loads the operating system into memory, after which the OS starts its services and makes the
computer ready for use.
Booting Process
1. Computer is powered on.
2. BIOS perform POST to check hardware.
3. BIOS find and select a bootable device.
4. Boot loader is loaded into memory.
5. Boot loader loads the operating system.
6. OS starts and the computer becomes ready to use
Q10. Explain Linux Commands.
Linux Commands
1. ls – List files and folders
Shows all files and directories in your current location.
Example: ls -l (detailed list)
2. cd – Change directory
Moves you from one folder to another.
Example: cd Documents
3. pwd – Print working directory
Displays the full path of the folder you are currently in.
4. mkdir – Make directory
Creates a new folder.
Example: mkdir myproject
5. rmdir – Remove directory
Deletes an empty folder only.
6. rm – Remove files/folders
Deletes files or directories (use rm -r for folders).
7. cp – Copy files/folders
Makes a duplicate of a file or folder.
Example: cp [Link] [Link]
8. mv – Move or rename
Moves a file/folder to another location or renames it.
Example: mv [Link] [Link]
9. touch – Create/update file
Creates an empty file or updates the timestamp of an existing file.
10. cat – Display file content
Shows the content of a text file directly in the terminal.