Bargain Bob's auto dealership sells vehicles. He sells Chrysler, Jeep, and Dodge brand vehicles. He tracks customer and manufacturer. Bob tracks only the main owner—all co-owners and co-signers are recorded elsewhere.Based on the description above, what is the maximum cardinality between each instance of "Customer" and "Vehicle?"

Answers

Answer 1
Answer:

Based on the given description in the question, the maximum cardinality assignment of the customer and vehicle is; one customer to one vehicle mapping

Cardinal Mapping

Cardinality is simply defined as the mapping of entities or group of entities to a certain cardinal value. This means that cardinality seeks to highlight the relationship between two objects such as eggs in a crate or shoes on a rack.

Now, in this question, we see that the car dealer sells one car to a customer and tracks the customer and manufacturer for that particular vehicle. This is simply 1 to 1 mapping and as such the maximum cardinality assignment of the customer and vehicle is one (1) to one (1) mapping.

Read more on Mapping at; brainly.com/question/1625866

Answer 2
Answer:

Answer:

Customer(1) - (1) Vehicle.

Explanation:

Cardinality is the mapping of entities or group of entities to a cardinal value. It tries to show the relationship between two objects like a cups in a shelf or plates in racks.

The car dealer in the question, sells one car to a customer and keep or prioritise the record of the main owner of the acquired vehicle. So the maximum cardinality assignment of the customer and vehicle is one (1) to one (1) mapping.


Related Questions

The advantages of automation include: (I) reduced output variability. (II) reduced variable costs. (III) machines don't strike or file grievances. (IV) machines are always less expensive than human labor.
Using for loop . Input an integer and identify whether it's EVEN OR ODD ( without using modulo operator )using only . C++ programming
What is the earliest version of the present day Internet?
Where in the computer is a variable such as "X" stored?
Hello,Can you please help me with the following questions:3. You enjoy technical matters, have a background in computer science and enjoy coding and playing video games in your free time. Which video game industry job would best match your profile?a. Game testerb. Producerc. Programmerd. Video game artist6. Which of the following is an essential skill for game testers?a. Thorough understanding of Java and C++b. Technical drawingc. Technical writingd. Project management9. Which of the following skills is the most important when applying for a game artist job?a. Degree in artsb. Strong art portfolioc. Previous game testing experienced, knowledge of scripting and codeing10. The Stencyl program is recommended for ______.a. creating 2D gamesb. creating 3D gamesc. Starting to learn to programd. creating gaming art11. You are passionate about video games, have spent part of your life in different countries and are fluent in their languages. You are considering looking for a job in video games. Which of the following jobs could you be qualified for, considering your skills and experience?a. Game programming with a focus on languagesb. Translationc. Game localizationd. Cultural gaming12. Because it is one of the main programming languages used in some of the most popular game engines in the industry, which programming language does the author of the textbook recommend learning first?a. Javab. C Sharpc. C++d. SQL13. Which of the following statements is NOT true about internships?a. internships offer great opportunity to create and build connections within the industry.b. Internships lead to a job offer upon successful completionc. Internships offer an opportunity to get first-hand experience of the industryd. Internships can be paid or unpaid15. What is the best approach to take if you have not heard back from a company after applying for a job?a. Wait, sometimes it takes time to process application and impatience can give a bad impressionb. Visit the company site personally to inquire about the status of your applicationc. Try to find out on which side the process may be stalling and take appropriate steps to get the process moving forward, when possibled. Reapply18. You are applying for a game programmer job at a reputable gaming company. Your application may stand the best chance of being noticed if you include which of the following in your application?a. List of all degrees and courses you have taken to acquire and hone your programming skillsb. Portfolio including samples of codes you have createdc. Portfolio including playable video game demo.d. Portfolio of your artwork.19. Which of the following is the most important item to include in your CV?a. All gaming projects you have worked on, paid or unpaid.b. Extracurricular activities related to gaming.c. Major accomplishmentsd. Short samples of code or technical writing samples.20. Which of the following job hunting practices is the least effective?a. Posting CV on job boards.b. Searching for jobs on job posting sitesc. Doing an internshipd. Applying for a specific job posting via company website

Insert the missing code in the following code fragment. This fragment is intended to implement a method to set the value stored in an instance variable. Public class Employee
{
Private String empID;
Private boolean hourly;
) . .
_______
{
Hourly = isHourly;
}
}
A) public void setHourly(String isHourly)
B) public void getHourly()
C) public boolean getHourly()
D) public boolean setHourly(boolean isHourly)

Answers

Answer:

A)

Explanation:

In this code example the missing piece of code would be...

public void setHourly(String isHourly)

This piece of code is creating a function called setHourly which takes in one String variable as it's parameter. Based on the rest of the code, the function takes that parameter variable and places it into an instance variable called Hourly which can be used when the function is called.

Write a python program to calculate and print the electric bill for Ethiopian Electricity Corporation. (consumer name meter number(mno),last month reading(Imr)and current month reading(cmr) of 50 customers and calculate the net bill amounts as follows: Number of unit(Nou)=cmr-lmr If Nou200 then bill =Nou*2 tax=bill*0.15 netbill=bill+tax Print all the details in the bill for all customers​

Answers

The electric bill program illustrates the use of loops (i.e. iteration)

Loops are used to execute repetitive operations

The electric bill program in Python where comments are used to explain each line is as follows:

#This iteration shows that the process is repeated for 50 consumers

for i in range(50):

   #This gets input for the consumer name meter number

   mno = input("Consumer name meter number: ")

   #This gets input for last month reading

   lmr = int(input("Last month reading: "))

   #This gets input for current month reading

   cmr = int(input("Current month reading: "))

   #This calculates the number of units

   Nou = cmr - lmr

   #This calculates the bills

   bill = Nou*2

   #This calculates the tax

   tax = bill*0.15

   #This calculates the netbills

   netbill = bill+tax

   #This next four lines print the electric bills

   print("Number of units:",Nou)

   print("Bills:",bill)

   print("Tax:",tax)

   print("Netbill:",netbill)

Read more about loops at:

brainly.com/question/19344465

Write a program that uses a two-dimensional array to store the highest and lowest temperatures for each month of the year. Prompt the user for 12 months of highest and lowest. Write two methods : one to calculate and return the average high and one to calculate and return the average low of the year. These methods MUST be your original code. Your program should output all the values in the array and then output the average high and the average low.a) Function getData: This function reads and stores data in the two-dimensional array.b) Function averageHigh: This function calculates and returns the average high temperature for the year.
c) Function averageLow: This function calculates and returns the average low temperature for the year.
d) Function indexHighTemp: This function returns the index of the highest high temperature in the array.
e) Function indexLowTemp: This function returns the index of the lowest low temperature in the array."

Answers

Answer:

The Java code is given below with appropriate comments

Explanation:

import java.util.Scanner;

public class Temperature {

 

  public static void main(String[] args)

  {

      // declaring the temperatures array

      double[] maxTemp = new double[12];

      double[] lowTemp = new double[12];

      double avgHighTemp = 0;

      double avgLowTemp = 0;

     

      Scanner kb = new Scanner(System.in);

      System.out.println("Please enter the highest and lowest temperatures");

      System.out.println("of each month one by one below\n");

     

      // inputting the temperatures one by one

      for(int i = 0; i < 12; i++)

      {

          System.out.print("Please enter the highest temperature for month #" + (i+1) + ": ");

          maxTemp[i] = Integer.parseInt(kb.nextLine());

          System.out.print("Please enter the lowest temperature for month #" + (i+1) + ": ");

          lowTemp[i] = Integer.parseInt(kb.nextLine());

          System.out.println();

      }

      avgHighTemp = getAvgHighTemperature(maxTemp);

      avgLowTemp = getAvgLowTemperature(lowTemp);

      System.out.printf("Average high temperature is: %.2f\n", avgHighTemp);

      System.out.printf("Average low temperature is: %.2f\n", avgLowTemp);

     

  }

 

  // method to calculate the average high temperature

  public static double getAvgHighTemperature(double[] highTemp)

  {

      double total = 0;

      for(int i = 0; i < 12; i++)

      {

          total += highTemp[i];

      }

      return total/12;

  }

 

  // method to calculate the average low temperature

  public static double getAvgLowTemperature(double[] lowTemp)

  {

      double total = 0;

      for(int i = 0; i < 12; i++)

      {

          total += lowTemp[i];

      }

      return total/12;

  }

}

What is the purpose of creating a PST file?Question 18 options:
a)To document an antivirus pattern that continues to be sent to your mailbox
b)To insert as a Signature for all outgoing emails
c) To save your emails so that you can restore your mailbox if necessary
d)To create a file that deleted emails will be sent to for deletion

Answers

The purpose of creating a PST file is to

c) To save your emails so that you can restore your mailbox if necessary

Explanation:

  • A PST file is a personal folder file in Microsoft Outlook. In Outlook, the storage limit for a single user's . PST file is 2 GB. PST stands for personal storage.
  • A PST file, or personal storage table (. pst) file, is a Microsoft Outlook Data File that stores a user's Outlook data for POP3, IMAP and web-based mail accounts, including all mail folders and the items within the folders, such as emails, email attachments, to do items and appointments, contacts and more.
  • In computing, a Personal Storage Table (. pst) is an open proprietary file format used to store copies of messages, calendar events, and other items within Microsoft software such as Microsoft Exchange Client, Windows Messaging, and Microsoft Outlook.
  • The purpose of the PST file was, like it is today, to provide end users with a way to create local archives of their server-based email.
  • As a result, PST files provided end users with a means of expanding their email storage by creating and maintaining one or more local archives.

viewRatings(string, int) Takes a username and a minimum rating value. It prints all the books that the user has rated with a value greater than or equal to the minimum rating value. The function does not return anything.

Answers

Answer:

def ViewRatings(str, rating):

   for book in books:

       if r >= rating:

           print(book)

ViewRatings("emma", 3)

Explanation:

* The code is in Python.

Since the are missing parts in your question. I am assuming there is a books list and there is a rating, r for each book.

- Create a function called ViewRatings that takes two parameters

- Initialize a for loop that iterates through each book in the books list

- For each book, check its rating with given rating. If the rating of the book is greater than or equal to given rating, print the book

- Call the function

How many bits would be needed to count all of the students in class today? There are 5 children in the class.

Answers

To represent the 5 children as a computer bit, we make use of the equation 2^b = n. 3 bits are required to represent the 5 children.

Given that

n = 5 ---- number of children

The number of bits (b) is calculated as:

2^b = n

Substitute 5 for n

2^b = 5

Take logarithm of both sides

\log(2)^b = \log(5)

Apply law of logarithm

b * \log(2) = \log(5)

Make b the subject

b = (\log(5))/(\log(2))

b = 2.32

The number of bits must be an integer. So, we use the greatest integer closest to 2.32. The integer is 3

So:

b=3

Hence, the number of bits to represent the 5 children is 3.

Read more about bits at:

brainly.com/question/5046303

Other Questions