1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Marysya12 [62]
3 years ago
13

The points a b c and d lie on a straight line ab:bd = 1:4

Computers and Technology
1 answer:
pochemuha3 years ago
3 0

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

You might be interested in
Choose the correct completion: Services and APIs are enabled on a per-__________ basis.
Ghella [55]

Answer:

the answer to the fill-in is <em>project. </em>

Explanation:

4 0
3 years ago
Which of the following are valid values for the float data type? (select all that apply)
seraphim [82]

Answer:

.1, -70.5, 3.14159(265358979323846) (why stop there)

Explanation:

Floating point values include a decimal place, not to be confused with reals which are whole numbers.

7 0
3 years ago
A network router connects multiple computers together and allows them to send messages to each other. If two or more computers s
Sedbober [7]

Answer:

C = M0(M1+M2+M3)+M1(M2+M3)+M2M3 is the equation which suits

Explanation:

From the given data we can state that we need to activate only one product i.e 1------>activated 0-------->means inactivated and also only one slot is activated at a time.The resultant will be no data inputs n control bits and 2 to the power n output bits.

8 0
4 years ago
Up to this point, all the programs you have written had a sequence structure. This means that all statements are executed in seq
schepotkina [342]

Answer:

File: PizzaOrder.java

import java.util.Scanner;

public class PizzaOrder

{

public static void main(String[] args)

{

 Scanner keyboard = new Scanner(System.in);

 String firstName;

 boolean discount = false;

 int inches;

 char crustType;

 String crust; // MODIFIED

 double cost; // MODIFIED

 final double TAX_RATE = 0.08;

 double tax;

 char choice;

 String input;

 String toppings = "Cheese ";

 int numberOfToppings = 0;

 

 System.out.println("Welcome to Mike and Diane's Pizza");

 

 System.out.print("Enter your first name: ");

 firstName = keyboard.nextLine();

 

 // ADD LINES HERE FOR TASK #1

 if(firstName.equalsIgnoreCase("Mike") || firstName.equalsIgnoreCase("Diane"))

  discount = true;

 

 System.out.println("Pizza Size (inches)   Cost");

 System.out.println("        10            $10.99");

 System.out.println("        12            $12.99");

 System.out.println("        14            $14.99");

 System.out.println("        16            $16.99");

 System.out.println("What size pizza would you like?");

 System.out.print("10, 12, 14, or 16 (enter the number only): ");

 inches = keyboard.nextInt();

 

 // ADD LINES HERE FOR TASK #2

 if(inches == 10)

  cost = 10.99;

 else if(inches == 12)

  cost = 12.99;

 else if(inches == 14)

  cost = 14.99;

 else if(inches == 16)

  cost = 16.99;

 else

 {

  System.out.println("The user input was not one of the choices, so a 12 inch pizza will be made.");

  cost = 12.99;

 }  

 keyboard.nextLine();

 

 System.out.println("What type of crust do you want? ");

 System.out.print("(H)Hand-tossed, (T) Thin-crust, or (D) Deep-dish (enter H, T, or D): ");

 input = keyboard.nextLine();

 crustType = input.charAt(0);

 

 // ADD LINES FOR TASK #3

 switch(crustType)

 {

  case 'H':

  case 'h':

   crust = "Hand-tossed";

   break;

  case 'T':

  case 't':

   crust = "Thin-crust";

   break;

  case 'D':

  case 'd':

   crust = "Deep-dish";

   break;

  default:

   System.out.println("The user input was not one of the choices, so a Hand-tossed crust will be made.");

   crust = "Hand-tossed";

 }

 

 System.out.println("All pizzas come with cheese.");

 System.out.println("Additional toppings are $1.25 each, choose from:");

 System.out.println("Pepperoni, Sausage, Onion, Mushroom");

 

 System.out.print("Do you want Pepperoni? (Y/N): ");

 input = keyboard.nextLine();

 choice = input.charAt(0);

 if(choice == 'Y' || choice == 'y')

 {

  numberOfToppings += 1;

  toppings = toppings + "Pepperoni ";

 }

 

 System.out.print("Do you want Sausage? (Y/N): ");

 input = keyboard.nextLine();

 choice = input.charAt(0);

 if(choice == 'Y' || choice == 'y')

 {

  numberOfToppings += 1;

  toppings = toppings + "Sausage ";

 }

 

 System.out.print("Do you want Onion? (Y/N): ");

 input = keyboard.nextLine();

 choice = input.charAt(0);

 if(choice == 'Y' || choice == 'y')

 {

  numberOfToppings += 1;

  toppings = toppings + "Onion ";

 }

 

 System.out.print("Do you want Mushroom? (Y/N): ");

 input = keyboard.nextLine();

 choice = input.charAt(0);

 if(choice == 'Y' || choice == 'y')

 {

  numberOfToppings += 1;

  toppings = toppings + "Mushroom ";

 }

   

 cost = cost + (1.25 * numberOfToppings);

 

 System.out.println();

 System.out.println("Your order is as follows: ");

 System.out.println(inches + " inch pizza");

 System.out.println(crust + " crust");

 System.out.println(toppings);

 

 // ADD LINES FOR TASK #4 HERE

 if(discount)

  cost = cost - 2.0;

 

 // EDIT PROGRAM FOR TASK #5

 // SO ALL MONEY OUTPUT APPEARS WITH 2 DECIMAL PLACES

 System.out.printf("The cost of your order " + "is: $%.2f\n", cost);// MODIFIED

 tax = cost * TAX_RATE;

 System.out.printf("The tax is: $%.2f\n", tax);// MODIFIED

 System.out.printf("The total due is: $%.2f\n", (tax + cost));// MODIFIED

 System.out.println("Your order will be ready for pickup in 30 minutes.");

}

}

Explanation:

8 0
3 years ago
1. Non-sufficient funds in the account to cover a check
Colt1911 [192]

Answer:

A) Bounced Check

Explanation:

If you don't have enough money in your account to cover a check, it's called a bounced check.

6 0
4 years ago
Read 2 more answers
Other questions:
  • Is Brittianica a reliable site for information? Why or why not?
    7·1 answer
  • Which software would you use to create a print design?
    8·2 answers
  • Kelvin owns a small trading firm. Recently, he suspected that some of his employees were using fraudulent activities for their p
    5·2 answers
  • In ____, data can move in both directions at the same time, such as with a telephone.
    11·1 answer
  • The report Jamie created has a dark background and the page number is not displaying correctly. Which formatting option would he
    11·1 answer
  • WOULD SOMEONE PLEASE ANSWER THIS IVE ASKED TWICE ALREADY!
    6·1 answer
  • Some of the ways we can resolve IPv4 address shortage
    15·1 answer
  • Which of the following is an example of an output device on a smartphone?
    6·1 answer
  • Do you want my hero academia?<br><br><br><br><br><br> if so, who's your favorite character :&gt;
    5·2 answers
  • Define Auxiliary memory?​
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!