1.) - Design the class model and produce a class diagram
for a set of vehicle types for a vehicle manufacturer. At
a minimum, the class model should include the following
information:
- Type of vehicle (e.g. sedan, truck, etc),
- Number of seats
- Number of doors
- Color of the vehicle
- Transmission type (auto vs manual)
- Engine’s rated horsepower
- Number of engine cylinders
- Engine size (in liters)
- Number of stereo speakers
- Does it include satellite radio?
- Does it have a CD player? (and if so, how many CDs
can it hold?)
- Is it front, rear, all, or 4 wheel drive?
- Truck bed type (e.g. short, standard, long)
- Trunk size (for those vehicle types that have a
trunk)
2.) I want to create an in-memory definition for a set of
airline routes for a small airline company. I want to
maintain a list of all of my planes and their current
locations (or their destination location if they are
currently in the air). One of the possible locations needs
to be “hangar” for maintenance or repairs. I want to have
the full airline schedule available so that I can look for
available flights. I also want to store information on
which planes are operating each schedule.
Assuming that a customer comes to the ticketing counter at
one of my airports when it opens at 6:00am, I want to be
able to give a customer the fastest option to get from one
airport to another. Keep in mind that it may take more
than one flight to get from one airport to another.
Describe how you would fulfill this request with your
design.
3.) I want to create a course registration database for a
university. I want to store information for each
department, information for each course (including which
department they’re offered under as well as which
professors are teaching them), information for each
professor, and the list of the registered students and
which courses each student has registered for.
Keep in mind that an instance of a course could be taught
by multiple instructors (i.e. one instructor for the first
half of the course and then a different instructor for the
second half).
Also keep in mind that there could be multiple instances of
a given course offered by different sets of instructors
(e.g. offered by Bob Smith on Mondays & Wednesdays at 10am
and Bill Jones on Tuesdays & Thursdays at 1pm).
Design a set of database tables to store this information.
4.) Given the following: You have an application that
consists of three parts: a front end GUI, a middle-ware
layer where all the processing of data takes place and a
database where data is read from.
What are the areas that would be most likely to break?
What would your testing strategy for this be? Why?
5.) Imagine I am handing you a wine glass and I ask you to
test it. What would your testing strategy for this be?
Answer / drunkenbrucelee
Did you get the answers for these questions? Please let me
know them if you know. Thanks.
| Is This Answer Correct ? | 1 Yes | 2 No |
design a counter with the following repeated binary sequence: 0, 1, 2, 3, 4, 5, 6, 7, 8 using JK Flip Flop.
3 Answers College School Exams Tests, IBD, IBM, Ignou, IIIT, Nortech, TCS, UOS,
if we want to move all the items that are already added in a combobox into an empty list box or vice-versa then how can it possible in vb or C# ?
what is different betweet class and interface in java?
2 Answers Microsoft, Sun Microsystems,
how to add Servlet-api.jar file into eclipse 3.3.2 ?
How can we alter the data after creating a view
In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?
Why did you ever become involved in QA/testing?
i want to improve my english vocab for racking campus written exam plz tell me best book for prepration......
what is dynamic polymorphism?
There is a room with 1000 light switches, numbered 1, 2, 3, 4, ... 1000, all turned off. Outside the room there are 1000 men, numbered man1, man2, ...man 1000 In order, each man walks into the room and changes the position of each switch that is a multiple of his number. That is: man1 flips every switch man2 flips switches 2, 4, 6, 8 ....1000 man3 flips switches 3, 6, 9, ..... 999 ..... Man 1000 flips switch 1000 After all 1000 men are done, how many switches are on?
in IBM PC -AT.WAT AT REFERS TO?
WS-NUM PIC S9(05)V(02) SIGN TRAILING SEPARATE MOVE '0050000+' TO WS-NUM The value stored is 00500,00+ MOVE '0050000-' TO WS-NUM Then what is the value will be stored in WS-NUM? Am getting '-00500,00'.....>>> What should I declare to WS-NUM so that I can get correct values for both + & - signs.