subject

Describe the different ways of implementing one-to-one relationships. Assume you are maintaining information on offices (office numbers, buildings, and phone numbers) and faculty (numbers and names). No office houses more than one faculty member; no faculty member is assigned more than one office. Illustrate the ways of implementing one-to-one relationships using offices and faculty. Which option would be best in each of the following situations? a. A faculty member must have an office, and each office must be occupied by a faculty member. Offices( Office_Num, Buildings, Phone Number, Faculty_Num)Faculty(Faculty_Num, Names, Office_Num)b. A faculty member must have an office, but some offices are not currently occupied. You must maintain information about the unoccupied offices in an Office relation. Offices( Office_Num, Buildings, Phone_Number)Faculty(Faculty_Num, Names, Office Num)c. Some faculty members do not have an office, but all offices are occupied. Offices( Office_Num, Buildings, Phone_Number)Faculty (Faculty_Num , Names ,officeNumber) d. Some faculty members do not have an office, but some offices are not occupied.

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 23:00
Which factor is the most important when choosing a website host? whether customers will make secure transactions the number of email accounts provided the purpose of the website the quality of the host control panel
Answers: 3
question
Computers and Technology, 24.06.2019 18:20
Acommon algorithm for converting a decimal number to binary is to repeatedly divide the decimal number by 2 and save the remainder. this division is continued until the result is zero. then, each of the remainders that have been saved are used to construct the binary number.write a recursive java method that implements this algorithm.it will accept a value of int and return a string with the appropriate binary character representation of the decimal number.my code: public class lab16{public string converttobinary(int input){int a; if(input > 0){a = input % 2; return (converttobinary(input / 2) + "" +a); } return ""; } }
Answers: 1
question
Computers and Technology, 24.06.2019 22:00
According to your study unit, what is the main reason that improved human relations skills may improve your grades?
Answers: 1
question
Computers and Technology, 25.06.2019 02:00
Feedback is one of the basic elements games have in common true false
Answers: 2
You know the right answer?
Describe the different ways of implementing one-to-one relationships. Assume you are maintaining inf...
Questions
Questions on the website: 13722362