Answer:v True
Explanation: Open source operating system is the system that has source code that can be modified and enhance them . It can also be shared between the public as it is available in the open form . There are many examples of the open source operating system like Linux, Ubuntu etc. which has both executable code and source code as well. so therefore the given statement is true.
Explanation:
the right answer may be A.
There are some function which can be performed with database but not with a spread sheet, these functions include:
1. Enforcement of data type.
2. Support for self documentation.
3. Defining the relationship among constraints in order to ensure consistency of data.
It sounds like the answer is A because there are 5 types of sports and the question only asks for the sports folders
Answer:
Explanation:
The following code was written in Javascript. It asks the user to enter the values for each of the variables and saves it to them. Then it uses those values to calculate the total number of pizzas needed to feed everyone at the party. Finally, it prints out the total to the screen as an alert. Both test cases were used and the outputs can be seen in the attached images below.
var slicesPerPizza = window.prompt("How many slices per pizza?");
var slicesPerPerson = window.prompt("How many slices per person?");
var totalPersons = window.prompt("How many total people will attend?");
var pizzasNeeded = Math.round((slicesPerPerson * totalPersons) / slicesPerPizza)
alert(`You need a total of ${pizzasNeeded} pizzas.`)