Answer:
The diagram of the ER and depreciation is in the attachments.
The points a b c and d lie on a straight line ab:bd = 1:4 are A line that extends to infinity on both sides and has no curves is called a straight line.AB:BC=3:4.
<h3>What do you call a straight line? </h3>
A line is simply an object in geometry denoted as an object with no width that extends on both sides. A straight line is just a line with no curves.
- AC=AB+BC=3+4=7; AC:CD=2:1, i.e. AC=2; because we get 2 different lengths for AC, we change the given ratio AC:CD to an equivalent one with AC=7 .
- As follows: AC:CD = 2 : 1 = 7 : 3.5 (multiply both sides by 3.5 ) Now we have AC:CD = 7 : 3.5 and AD = AC+CD= 7+3.5 = 10.5,, and the answer is: the ratio BC:AD = 4:10.5.
Read more about the straight line:
brainly.com/question/3493733
#SPJ1
Answer:
The answer is "The user uses the method for retrieval, which is dependent on the specific app or devices on the operating system".
Explanation:
For retrieving the requested information of the form, with the user device, he uses the retrieval method, which is based upon the specific application or system operating system.
- In this, the user can resolve the mobile phone application but also show the errors which have been committed to the assistance team of the application manufacturer.
- Its repair technician requires detailed system data on the way the software responds and also what triggers the mistakes.
I would say drawing a polygon for a new model, assuming that the polygon would be converted to 3D to create the model.
(I really hope this helps)
Answer:
// here is code in C.
// headers
#include <stdio.h>
// main function
int main(void) {
// variable declaration
int favorite_number;
// ask user to enter favorite number
printf("enter your favorite number : ");
// read the number
scanf("%d",&favorite_number);
// print the message
printf("your favorite number is: %d",favorite_number);
return 0;
}
Explanation:
Declare a variable "favorite_number" of integer type.Ask user to enter favorite number and assign it to favorite_number.Then print the message which include the favorite number.
Output:
enter your favorite number : 77
your favorite number is: 77