Question
CSE 302 Homework Assignment 1 (Due 2/5/21) 1) (30 pts) This problem deals with software design. a. Explain in a paragraph why simply coding an
CSE 302 Homework Assignment 1 (Due 2/5/21) 1) (30 pts)
This problem deals with software design. a. Explain in a paragraph why simply coding an accurate solution to a problem as quickly as possible may not be the best approach in every case. b. Explain why the waterfall model of software development becomes an increasingly poor choice as the size of a design team becomes increasingly large.
2) (30 pts)
This problem deals with abstraction. i. Define at least four abstractions (from differing perspectives) for each of the following entities: a. Distribution of a Vaccine b. A Room at a Five-Star Hotel c. An Online Gaming/Streaming Website Answers should be concise, but more than a single word. ii. Explain what abstraction means in the context of software design.
3) (40 pts)
This problem deals with the Array and Linked List implementations of the Unsorted List (AUList and LLUList). Your solution must begin with the base code available via Blackboard (AUList.h, AUList.cpp, LLUList.h, LLUList.cpp). a. Create a function for the AUList structure AUList copyReverse() which creates a new AUList with identical elements, but in reverse order. Ex: if myList is an AUList with elements in the order 1, 4, 2, 8, 6, myList.copyReverse() will return an AUList with elements in the order 6, 8, 2, 4, 1. b. Create the function from part a. but for the LLUList structure (it should return a LLUList with elements in reverse order). While not required, it is highly advised that you test your functions prior to submitting them. Code that fails to compile will receive little credit. Responses to Problems #1-2 should be in .doc(x) or .pdf format. Include this and your modified code for #3 (two .h and two .cpp files) in a zip file. Please submit your assignment to Blackboard as a zip file with the filename LN_FN_1.zip where LN is your last name and FN is your first name.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started