The answer is C: Select the horizontally boxes and vertically boxes in the margins tab of the page setup menu
Answer:
The answer is "True".
Explanation:
The conceptual, abstract design is also known as a logical design. This design doesn't use to discuss in matter of the actual execution. It only has to identify the kinds of information.
- In the logical development process, it involves inserting information into a number, which includes the organizations and features of rational networks.
- It is used to organize the entities, for example, tables for a relation database, in a given market environment into the database systems, that's why the given statement is true.
Answer:
Program for the above question in python:
mass = float(input("Enter the mass in grams")) # It is used to take the mass as input.
density = float(input("Enter the density grams per cm cube")) # It is used to take the input for the grams.
print("Volume ={:.2f}".format(mass/density)) #It is used to print the Volume.
Output:
- If the user inputs as 2.98 and 3.2, then it will results as 0.92.
Explanation:
- The above code is in python language, in which the first statement is used to take the inputs from the user for the mass and sore it into a mass variable.
- Then the second statement also takes the input from the user and store it into a density variable.
- Then the third statement of the code is used to print the volume up to two places using the above-defined formula.
Answer:
A friend asks you for help writing a computer program to calculate the square yards of carpet needed for a dorm room. The statement "the living room floor is rectangular" is an example of a(n) <u>assumption</u> . The length and width of the room are examples of <u>known</u> information, which you can obtain as <u>input</u> from the user.
Explanation:
The given question is a Problem statement.
Problem statement can be defined as the brief description of an issue that needs to be focused in order to reach the require goal.
So the parts that a problem statement may have include:
- facts and figures (assumptions), that are known in the given scenario.
- data required (solution)to be calculated by focusing on present assumptions (given as input by the user).
So the attributes to be filled into blanks of given statement are assumption, known, input.
i hope it will help you!