Arrays Activity

  • Uploaded by: Rekha Perumal Vijayan
  • 0
  • 0
  • August 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Arrays Activity as PDF for free.

More details

  • Words: 774
  • Pages: 3
Arrays Exercise 1: (Airline Reservations System) A small airline has just purchased a computer for its new automated reservations system. You’ve been asked to develop the new system. You’re to write an application to assign seats on each flight of the airline’s only plane (capacity: 10 seats). Your application should display the following alternatives: Please type 1 for First Class and Please type 2 for Economy. If the user types 1, your application should assign a seat in the firstclass section (seats 1–5). If the user types 2, your application should assign a seat in the economy section (seats 6–10). Your application should then display 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 one-dimensional array of primitive type boolean to represent the seating chart of the plane. Initialize all the elements of the array to false to indicate that all the seats are empty. As each seat is assigned, set the corresponding element of the array to true to indicate that the seat is no longer available. Your application should never assign a seat that has already been assigned. When the economy section is full, your application should ask the person if it’s acceptable to be placed in the first-class section (and vice versa). If yes, make the appropriate seat assignment. If no, display the message "Next flight leaves in 3 hours." Exercise 2: (Total Sales) Use a two-dimensional array to solve the following problem: A company has four salespeople (1 to 4) who sell five different products (1 to 5). Once a day, each salesperson passes in a slip for each type of product sold. Each slip contains the following: a) The salesperson number b) The product number c) The total dollar value of that product sold that day Thus, each salesperson passes in between 0 and 5 sales slips per day. Assume that the information from all the slips for last month is available. Write an application that will read all this information for last month’s sales and summarize the total sales by salesperson and by product. All totals should be stored in the two-dimensional array sales. After processing all the information for last month, display the results in tabular format, with each column representing a salesperson and each row representing a particular product. Cross-total each row to get the total sales of each product for last month. Cross-total each column to get the total sales by salesperson for last month. Your output should include these cross-totals to the right of the totaled rows and to the bottom of the totalled columns.

Exercise 3 : (Student Class)

Suppose that our application requires us to model students. A student has a name and an address. We are required to keep track of the courses taken by each student, together with the grades (between 0 and 100) for each of the courses. A student shall not take more than 30 courses for the entire program. We are required to print all course grades, and also the overall average grade. We can design the Student class as shown in the class diagram. It contains the following members:  private instance variables name (String), address (String), numCourses (int), course (String[30]) and grades (int[30]). The numCourses keeps track of the number of courses taken by this student so far. The courses and grades are two parallel arrays, storing the courses taken (e.g., {"IM101", "IM102", "IM103"}) and their respective grades (e.g. {89, 56, 98}).  A constructor that constructs an instance with the given name and Address. It also constructs the courses and grades arrays and set the numCourses to 0.  Getters for name and address; setter for address. No setter is defined for name as it is not designed to be changed.  A toString(), which prints "name(address)".  A method addCourseGrade(course, grade), which appends the given course and grade into the courses and grades arrays, respectively; and increments numCourses.  A method printGrades(), which prints "name course1:grade1, course2:grade2,...".



A method getAverageGrade(), which returns the average grade of all the courses taken.

Exercise 4 : ( Search for name) Write a program to accept an array of names and a name and check whether the name is present in the array. Return the count of occurrence. Use the following array as input {“Dave”, “Ann”, “George”, “Sam”, “Ted”, “Gag”, “Saj”, “Agati”, “Mary”, “Sam”, “Ayan”, “Dev”, “Kity”, “Meery”, “Smith”, “Johnson”, “Bill”, “Williams”, “Jones”, “Brown”, “Davis”, “Miller”, “Wilson”, “Moore”, “Taylor, “Anderson”, “Thomas”, “Jackson”}

Exercise 5: (sort of names) Write a program to sort a set of names stored in an array in alphabetical order.

Related Documents

Arrays Activity
August 2019 32
Arrays
November 2019 37
Arrays
May 2020 23
Arrays
November 2019 37
Arrays
November 2019 39
Arrays
November 2019 46

More Documents from ""

Arrays Activity
August 2019 32
02_iam_lab
August 2019 17
Ami
August 2019 39
Bajaj
April 2020 17