subject

Caped crusaders inc. the super heroes of the comic world have united in an organization to save the world from villains (some who also possess super powers). you are charged with keeping track of things in this comic world. your database will contain the information presented below. table: tblsuperheroes table: tblarrests table: tblvillains super hero id (autonumber) arrest id (autonumber) villain id (autonumber) super hero, secret identity (text) super hero id (foreign key) villain, secret identity last name villain id number (foreign key) villain, home planet first name date of crime (date/time with input mask) primary characteristic (what is their special power? ) super hero, home planet arrest date (date/time with input mask) strength rating primary characteristic, other than flying. (what is the character’s special power? ) fine charged (should be more than largest hero’s charge; currency) indicator if the hero can fly (yes/no) indicator if fine was paid. (yes/no) strength rating. (1-10 with 10 being the strongest) fee hero charges to make arrests (currency) step by step description: 1. use all naming conventions discussed in this course. 2. set the database to compact on close. 3. create three tables as per specifications below. 4. set table relationships and referential integrity (including cascade update and cascade delete if applicable) 5. enter data into the tables a. create a minimum of eight super heroes in your database b. create at least ten villains you may use existing characters from comic books or invent your own. some villains should have a record indicating multiple arrests and some of the super heroes should have more than one arrest to their credit. at least one super hero should have no arrests. some of the fines will and others will not be paid. c. create a minimum of 15 arrests. most super heroes should have arrests but at least one super hero should not have an arrest. 6. create queries  a query that computes the strength quotient for each arrest. name this query: qryquotient. the strength quotient = hero’s strength rating divided by the villain’s strength rating.  a query that lists the sum of all of the fines collected, grouped by each superhero. name this query: qryherofines 7. create the following forms:  one that allows you to enter a new hero. name this form: frmnewhero  one to enter a new villain. name this form: frmnewvillain  one to enter a new arrest record. this last form assumes that the superhero and villain are already listed in the database. name this form: frmnewarrest  create a form that lists the superhero and identity that is sorted by the hero’s last name. this form should contain a subform that lists all of the arrests made by that hero with the name(s) of the villain, date(s) of arrest and fine(s). any hero that has no arrests should not appear in this form. name this form: frmfinesfromhero. name the subform: fsubarrests. 8. create the following reports:  one that lists all of the arrests and the fines that have been levied. make sure to include the hero and villain names name this report: rptarrests  one that lists the heroes who can fly. name this report: rptfly  one that shows the total amount (one number) fined for all arrests. name this report: rpttotalfines  one that gives the total outstanding amount (not paid by the villains) by each villian. name this report: rptoutstanding  one that lists all of the arrests with the villains that involved a strength quotient that was less than one. name this report: rptstrength 9. include at least one graphic in your database on one or more of your forms.

ansver
Answers: 3

Other questions on the subject: Computers and Technology

image
Computers and Technology, 23.06.2019 12:20, jshhs
When guido van rossum created python, he wanted to make a language that was more than other programming languages. a. code-based b. human-readable c. complex d. functional
Answers: 1
image
Computers and Technology, 24.06.2019 06:30, chloeholt123
For which utilities, if any, does the landlord pay?
Answers: 2
image
Computers and Technology, 24.06.2019 08:20, bob4059
Evaluate the scenario below and indicate how to handle the matter appropriately. situation: michael received an e-mail from what he thought was his doctor’s office, requesting his social security number. since he had just been in to see his doctor last week, he replied to the e-mail with his social security number.
Answers: 2
image
Computers and Technology, 24.06.2019 18:50, nika0001
Write a program that reads in a series of lines of input character by character (using the library function the first line of the input contains an integer which specifies the number of remaining lines of input, each of which contains a floating point number. the integer value on the first line can be read with (the library function) but all of the following lines can only be read with each line, after the first, contains a single floating point value, with up to four digits before the decimal point, and up to four digits following the decimal point, but there is not necessarily a decimal point in each number; i. e., it may appear to be an integer, but the digits should be read by your program, and the number should be converted to a corresponding floating point number. for instance, suppose the following input: 5 3.1255 20.25 0.875 1921.50 31 the required output is: − each of the input floating point values, printed on a separate line with four digits of precision, using printf(); − on the last line of the output, the string “total: ” followed by the sum of the input values, printed with printf() to 4 digits of precision. for example, the total of the sample input given above is 1976.7505, so the required output for this input would be: 3.1255 20.2500 0.8750 1921.5000 31.0000 total: 1976.7505 do not concern yourself with small differences in the total due to rounding, as the grader will not deduct points for this. constraints: − you are not allowed to use arrays on this portion of the lab assignment. − there is no maximum number of lines allowable. it all depends upon the first value of input. since you aren’t saving anything, it doesn’t matter. − you can assume that input will not contain more than 4 digits before or after the decimal point. you do not need to error check for this condition. -you must use getchar() to read in the floating point values one character at a time (i. e. do not use -you must declare and use your floating point values as a double to minimize rounding errors. -only use printf() to output the floating point numbers and the total (do not use − be sure your directions to the user are clear so they are sure to enter the input data correctly.
Answers: 1
You know the right answer?
Caped crusaders inc. the super heroes of the comic world have united in an organization to save the...

Questions in other subjects: