





Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
MIS 3353 Final Exam Review Newest 2025. Questions & Correct Verified Answers. Graded A
Typology: Exams
1 / 9
This page cannot be seen from the preview
Don't miss anything!
A "primary key" is... – ANS Required for each record. A company includes information about its customers in a database table called Customer. Each line within this table includes a customer's name, phone number, address, and date of birth. These lines are called... ` - ANS Records A relation has only one value in its primary key, is fully atomic, and no non- key values predict other non-key values. What normal form is this relation in? – ANS 3NF A relation includes columns that are not fully atomic and a transitive dependency, but no partial functional dependencies. What normal form is it in? - ANS0NF An attribute for which an instance's value can only be one or zero is called a(n)... - ANSBinary Attribute Assuming no fields/keys are misnamed, which of the following multiple- table queries would you expect to run without errors? - ANSSELECT Mountain.GPSLat, Mountain.GPSLon, Location.StateName FROM Mountain, Location
WHERE Mountain.LocID = Location.LocID ORDER BY Location.LocID; Assuming that the table and fields referenced are valid, which of the following queries have appropriate syntax and would work without error? - ANSSELECT PlayerName, Position, Height FROM Roster WHERE Height > 63 ORDER BY Position; Choose the best answer. A report that details, in 30-day increments, the outstanding payments owed to a company is... - ANSAn output. Consider the Singer table below. In which field is there a data duplication issue that should probably be corrected through normalization? (Primary key denoted with , foreign key denoted with †.) SingerID SingerName VoiceType DOB Weight 1 Erma Peterson Soprano 5/15/1990 145 2 Johann Götterfunk Baritone 4/15/1975 145 3 Janet Smith Soprano 5/4/1990 119 4 Esperanza Trujillo Mezzo-Soprano 12/28/1970 137 5 Johann Fujimori Tenor 8/1/1983 225 6 Evan Gatuzzo Baritone 11/28/1969 215 - ANSVoiceType
SELECT ManufacturerName AS Manufacturer, AVG(Price) AS Average_Price FROM SimplifiedSales - ANSGROUP BY ManufacturerName Given the following two tables (Product, Manufacturer), which one of the following is an example of a foreign key? Product ProductID MfrID Name Price Qty 5006 2 Ball Peen Hammer 6.99 47 5007 1 5-lb. Mallet 9.99 11 5009 2 10-lb. Mallet 11.49 6 Manufacturer MfrID MfrName 1 Arcturus Tools 2 Nemesis Manufacturing Supply - ANSThe MfrID field in the Product table. In a company's database, a given table... - ANSCan include millions of records. In the default revenue cycle ERD, why are there three different relationships between Employee and ShipmentOut? - ANSThe three lines enables the "segregation of duties" among the picking, packing, and shipping activities.
In the relationship between
Which of the following describes a case of a partial functional dependency?
Which of the following terms represents a customer receiving a 5% discount if paying within 12 days of receiving an invoice, while invoices are considered due within 80 days of receipt? - ANS5/12Net Which of the following WHERE clauses would include only those records from the Customer table where the customer's last name (the LastName field) starts with Y and the customer's birthday (DOB field) falls some time after 1994? - ANSWHERE LastName LIKE 'Y%' AND DOB > '1994-12-31' Which of the following WHERE clauses would include only those records in the output for which the value of UniformNumber is 1, 3, 5, or 7? - ANSWHERE UniformNumber IN (1, 3, 5, 7) Which of the following WHERE clauses would include only those records in the output where the value in the Destination field is something OTHER than Norman? - ANSWHERE Destination <> 'Norman' Which of the following would be considered a "threat" to an organization? (Mark any/all that apply.) - ANSMeteor striking the production facility Paying the same invoice multiple times Inconsistent quality of manufactured products Which of the following, based strictly on syntax, would NOT run correctly in SQL Server? (Select any/all that apply.) - ANSSELECT V.VesselID, T.TripID, T.Destination, T.Duration