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:
A
Explanation:
The value will be the original stored in the int variables. This is because the method swap(int xp, int yp) accepts xp and yp parameters by value (They are passed by value and not by reference). Consider the implementation below:
public class Agbas {
public static void main(String[] args) {
int xp = 2;
int yp = xp;
swap(xp,yp); //will swap and print the same values
System.out.println(xp+", "+yp); // prints the original in values 2,2
int xp = 2;
int yp = 5;
swap(xp,yp); // will swap and print 5,2
System.out.println(xp+", "+yp); // prints the original in values 2,5
}
public static void swap(int xp, int yp){
int temp = xp;
xp = yp;
yp = temp;
System.out.println(xp+", "+yp);
}
}
Answer:
Windows utility program.
Explanation:
The operating system is a software used to manage the activities of various parts of the computer system. It acts as a link between the hardware, application software and the user. An example of OS is the Windows OS.
It has the kernel program that directly connects the hardware to the operating system. It provides utility programs to analyse, optimise, control and maintain devices running in the system.
Window utility program is an example of utilities in OS, used to analyse, control, optimise and maintain device and software activities for good system performance.
An example of the windows utility program is the disk defragmenter used to eliminate fragments and rearrange files and unused disk space.
Answer:
A
Explanation:
After you make a big goal you must make many small goals to reach it
The answer to your question is D