Assignment 3
Assignment 3
Section: A Name:
Questions Attempted (Y/N)
Question 1:
Taxonomy
CLO # CLO Statement PLO
Level
Submission:
Soft Copy Deadline: 09-01-2025 till 11:59 PM via Portal
Hard Copy Deadline: 09-01-2025
Late Submission Policy:
10% Deduction /24 Hours.
Submission Marks:
5 marks are for submission.
Instructions: (5 marks will be deducted for not following the instructions)
This is an individual assignment. Viva can be conducted OR a Quiz will be taken on the
basis of assignment in the next week.
Attempt all questions in sequence. Attach this title page as a front page of assignment.
Assignment should be handwritten/printed on A4 sized page. (No pages from register
please.)
Submit Hard copy in class and scanned copy of solved assignment on the portal (Both
copies should be submitted before deadline)
FALL 2024
Course Title: Introduction to Computing
Course Code: CP103
Assignment No. 3
Introduction to Computing (Fall 2024) – Assignment 3
A scenario is given to you. Apply the concepts learned to solve the real-world problems given below
using selection statements, loops, and one-dimensional arrays in C++.
Question: 1 [20 Marks]
Write a program which ask the user to input a number as input greater than or equal to four digits.
Then find the sum of entered number until the result is in single digit as follows. Sample output is
given below:
Scenario:
A small airline has just purchased a computer for its new automated reservations system. The
president has asked you to program the new system. You’ll write a program to assign seats on each
flight of the airline’s only plane (capacity: 10 seats). Your program should display the following
menu of alternatives:
Please type 1 for "first class"
Please type 2 for "economy"
If the person types 1, then your program should assign a seat in the first class section (seats
1–5).
If the person types 2, then your program should assign a seat in the economy section (seats
6–10).
Your program should then print a boarding pass indicating the person's seat number and
whether it’s in the first class or economy section of the plane.
Use a single-subscripted array to represent the seating chart of the plane.
Initialize all the elements of the array to 0 to indicate that all seats are empty.
As each seat is assigned, set the corresponding element of the array to 1 to indicate that the
seat is no longer available.
Your program should, of course, never assign a seat that has already been assigned.
When the first class section is full, your program should ask the person if it’s acceptable to be
placed in the economy section (and vice versa).
If yes, then make the appropriate seat assignment. If no, then print the message "Next flight
leaves in 3 hours."
Sample Output is given below:
Instructions:
Here are the criteria mentioned below for your assessment evaluation. Give it a read before attempt
the assignment. You should read it properly for securing good marks.