how do i print the simbol " | " in python

Answers

Answer 1

Answer:

print(" | ")

Explanation:

Make sure to include your quotes and brackets.

Other than that, you have to make sure that you are using the word print.


Related Questions

Write a program in which will use some of the built-in METHODS as it relates to the use of Strings. 1) The program will ask the user the following prompts: Please enter your first name and their last name, separated by a space. This program will then read-in the user's response using Scanner. You must separate the string input entered by the user into two strings via substrings. Substring one will store the first name and Substring two will store the last name respectively. ***hint this can be accomplish using the indexOf() to find the position of the space. Your program must display/output the number of characters in each name, as well as the user's initials that was entered. You must check and trim all extra white spaces before and after the string entered by the user. Incorporate and loop to have this program ask this user if they would like to execute the program again by prompting and requesting a Y for Yes and a N for No. This prompt should ignore upper or lower case entries. The initials are the first letter of the first name together with the first letter of the last name. Hello their Louis I have your first name as Louis, which has 5 characters Hello again Louis I have your last name as Henry, which has 5 characters Did you know that your initials are LH Do you wish to continue (Y)Yes or (N)No

Answers

Answer:

The program in Java is as follows:

import java.util.*;

public class Main{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 char cont = 'Y';

 while(cont == 'Y'){

     System.out.print("Name: ");

     String name =input.nextLine();

     String names [] = name.split(" ");

     names[0] = names[0].replaceAll("\\s", "");

     names[1] = names[1].replaceAll("\\s", "");

     System.out.println("Hello their "+names[0]+", I have your first name as "+names[0]+", which has "+names[0].length()+" characters ");

     System.out.println("Hello again "+names[0]+", I have your last name as "+names[1]+", which has "+names[1].length()+" characters ");

     System.out.println("Did you know that your initials are "+names[0].charAt(0)+names[1].charAt(0));

     System.out.print("Continue (Y)Yes or (N)No: ");

     cont = Character.toUpperCase(input.next().charAt(0));

     input.nextLine();} }}

Explanation:

This initializes a character variable cont to Y

 char cont = 'Y';

This is repeated as long as cont is Y

 while(cont == 'Y'){

This prompts the user for name

     System.out.print("Name: ");

This gets the name from the user

     String name =input.nextLine();

This splits the name into the array of two elements (first name and last name)

     String names [] = name.split(" ");

This remove all whitespace from the first name

    names[0] = names[0].replaceAll("\\s", "");

This remove all whitespace from the last name

     names[1] = names[1].replaceAll("\\s", "");

This prints the details of the first name

     System.out.println("Hello their "+names[0]+", I have your first name as "+names[0]+", which has "+names[0].length()+" characters ");

This prints the details of the last name

     System.out.println("Hello again "+names[0]+", I have your last name as "+names[1]+", which has "+names[1].length()+" characters ");

This prints the initials

     System.out.println("Did you know that your initials are "+names[0].charAt(0)+names[1].charAt(0));

This prompts the user to continue or not

     System.out.print("Continue (Y)Yes or (N)No: ");

This gets the user response

     cont = Character.toUpperCase(input.next().charAt(0));

     input.nextLine();} }

What steps can be used to open the Custom AutoFilter dialog box? Select any cell in the data range.

Click the _____ tab.

In the ______ group, click Filter.

Next to a column heading, click the AutoFilter drop-down arrow.

Click ______ and click Custom Filter. The Custom AutoFilter dialog box appears for creating custom filers.

Answers

Answer:

Data

Sort and Filter

Text Filters

Explanation:

Proof that this answer is correct in the file attached.

A step which can be used to open the Custom AutoFilter dialog box is to click on the data tab.

What is data?

Data simply refers to a representation of factual instructions (information) in a formalized manner, especially as a series of binary digits (bits) that are used on computer systems.

The step which can be used to open the Custom AutoFilter dialog box on Microsoft Excel include the following:

Click on the data tab.In the Sort & Filter group, click Filter.Next to a column heading, click the AutoFilter drop-down arrow.Click Text Filters and click Custom Filter.Then, the Custom AutoFilter dialog box would appear for creating custom filers.

Read more on Excel spreadsheets here: https://brainly.com/question/4965119

#SPJ2

What year did the first hovercraft sail on water

Answers

1959!!!!!!!!!!!!!aksksid

what are bananas if they are brown

Answers

they are ripe or overripe (rotten)

if banans are Brown there bad I think

Match the different aspects of digital media with the basic job(s) it addresses.
1.
costs associated with running an operation
business
2. managers, technical experts, facilities
software
3. research, cultural knowledge, ability to forecast trends
financial
4. designers, web developers, graphic artists
creative
5.
technical expertise, manufacturing, research and
development
hardware

Answers

Answer:

The different aspects of digital media with the basic job(s) it addresses include:

1.

costs associated with running an operation

business

2. managers, technical experts, facilities

financial

3. research, cultural knowledge, ability to forecast trends

software  

4. designers, web developers, graphic artists

creative

5.

technical expertise, manufacturing, research and

development

hardware

Explanation:

what is astronaut favourite key on keyboard? ​

Answers

The space bar
Thanks for that today
Have a great day

The astronaut favorite key on keyboard ​ is Space-Bar.

What is space bar?

This is known to be a long  key that is seen at the lower part of a computer keyboard or typewriter used to type space.

Conclusively, to Space Key is known to be the Astronaut's Favorite Key on the Keyboard due to the fact that an Astronaut often travel to Space and work on satellites and as such they loves the space bar, more as it tells more about  the Outer Space.

Learn more about astronaut from

https://brainly.com/question/24496270

Hide Time Remaining A
Suppose that the following statement is included in a program. import static
java.lang. Math.*; After this statement, a static method of the class Math can be called
using just the method name.
A. True
B. False

Answers

Answer:

True

Explanation:

The class Math include mathematical functions such as sin(), cos(), tan(), abs(), etc

If the given statement is not written, each of the math function will be written as (take for instance, the sin() function):

Math.sin()

But after the statement has been written (it implies that the Math library has been imported into the program) and as such each of the mathematical function can be used directly.

So instead of Math.sin(), you write sin()

You are on a team of developers writing a new teacher tool. The students names are stored in a 2D array called “seatingChart”. As part of the tool, a teacher can enter a list of names and the tool well return the number of students in the class found with names that matching provided list. For this problem you will be completing the ClassRoom class in the problem below. Your job is to complete the numberOfStudents found method. This method accepts an array of Strings that contain names and returns the quantity of students with those names. For example:
Assume that a ClassRoom object named “computerScience” has been constructed and the seating chart contains the following names:


“Clarence”, “Florence”, “Ora”


“Bessie”, “Mabel”, “Milton”


“Ora”, “Cornelius”, “Adam”


When the following code executes:


String[] names = {"Clarence", "Ora", "Mr. Underwood"};

int namesFound = computerScience.numberOfStudents(names);

The contents of namesFound is 3 because Clarence is found once, Ora is found twice, and Mr. Underwood is not found at all. The total found would be 3.


Complete the numberOfStudents method

public class ClassRoom

{


private String[][] seatingChart;


//initializes the ClassRoom field seatingChart

public ClassRoom(String[][] s){

seatingChart = s;

}



//Precondition: the array of names will contain at least 1 name that may or may not be in the list

// the seating chart will be populated

//Postcondition: the method returns the number of names found in the seating chart



//TODO: Write the numberOfStudents method


public int numberOfStudents(String[] names){





}


public static void main(String[] args)

{

//DO NOT ENTER CODE HERE

//CHECK THE ACTUAL COLUMN FOR YOUR OUTPUT

System.out.println("Look in the Actual Column to see your results");

}

}

Answers

Answer:

Wait what? Some of the words are mashed together...

What happens during focus group testing?


Individuals who are not involved in the development process test the game.

Before the game is designed, experienced gamers tell the designers what they would like to see.

Company leadership looks closely at the game to see if it meets their standards.

Members of the team that designed the game test the game for quality.

Answers

Answer:

Individuals who are not involved in the development process test the game.

Explanation:

Focus groups are made up of people with no knowledge about the game being developed. This allows for an unbiased review of the game to take place and see how a typical player will behave and feel about a game.

Answer:

Individuals who are not involved in the development process test the game.

As a casting director arranging for an audition, what sequence of events would you follow?
Give copies of the script to
the actors to rehearse.

Ask the actors to complete the form with their contact details.
Conduct the final audition.

Advertise the audition.

Answers

Answer:

1. Advertise the audition.  

The first step after breaking down the script is to advertise the audition so that interested actors and agents can send in resumes that can be picked from.

2. Ask the actors to complete the form with their contact details.

Actors should complete a form that would give you their contact details. This is how you will reach out to the characters you are interested in for auditions.

3. Give copies of the script to the actors to rehearse.

You should give copies of the script to actors that you feel will match the roles in the production after you contact them.

4. Conduct the final audition

There will be first auditions invloving various actors and there will be comebacks to ensure that the the characters can fit into the role. Finally there will be a final interview after which a character will be chosen.

name 3 supercomputers along with their cost, purpose and the country it is located.​

Answers

Answer:

The three super computers are

a) Fujitsu Fugak

b) IBM Summit/IBM/Nvidia/Mellanox

c) Sunway TaihuLigh

Explanation:

Three super computers are as follows

a) Fujitsu Fugak - It is located in Kobe, Japan and its costs is ¥130 billion

b) IBM Summit/IBM/Nvidia/Mellanox - It is located in Oak Ridge, U.S. and it costs $325 million

c) Sunway TaihuLigh- It is located in Wuxi, China and it costs US$273 million

what is class in python

Answers

Answer:

It is a code template for creating objects.

Answer:

What is a class? A class is a code template for creating objects. Objects have member variables and have behaviour associated with them. In python a class is created by the keyword class . An object is created using the constructor of the class.

What are the steps for modifying a query to add calculations? Use the drop-down menus to complete them. 1. Open the query in view. 2. Select the field to which you wish to add a calculation. 3. Right-click and select in the drop-down menu. 4. Using the Expression Builder, add to create a calculation. 5. Click to see the results of the query.

Answers

Answer:

1

New Appointment

button.

3.

Save and Close

button to add the appointment.

Explanation:

Open the query in view. Select the field to which you wish to add a calculation and many more are some of the steps for modifying a query to add calculations.

What is query?

A query is a request for information from a database in computing. It is a specific command given to a database management system (DBMS) to retrieve and manipulate data from a database.

Queries are typically expressed in a query language, which is a special language designed to interact with databases.

Here are the steps for adding calculations to a query:

Bring the query into view.Choose the field to which you want to add the calculation.Select "Build Event" from the drop-down menu by right-clicking.Add expressions to the Expression Builder to make a calculation.Click "OK" to save the changes and view the query results.

Thus, these are the steps asked.

For more details regarding query, visit:

https://brainly.com/question/30900680

#SPJ3


Using examples, evaluate the open source model of software development. In your discussion highlight some of its advantages and disadvantages. Furthermore, explain some of the alternatives that also exist.

Answers

Hope this helps! Good luck!

1. You will need to add data to the tables in your design that matches the data in the supplied Excel documents. If your database design doesn't accommodate a given piece of data you must modify your design and implementation to ensure that all data provided in the spreadsheet can be added. a. You may any other data you wish and as your design requires. If your design is such that the needed data is not supplied in the spreadsheet you will need to simply "mock" up some sample data and add it into your database. b. Important: Your instructor cannot provide you with specific information how to complete this step. Each person's database design will be different and therefore, how data must be entered will be different from person to person.

Answers

Answer:

is all about knowing what to do with the data

Explanation:

determine what to do with your data

You can insert video by clicking video drop-down menu on the ______ tab.

i. HOME ii. DESIGN iii. INSERT
choose the correct answers​please tell me the answer right now

Answers

The correct answer is iii. Insert

what are the key differences between ides and website builders ?

Answers

Answer:

The key differences are as follows:

IDES:

Are usually installed locallyBuild websites by writing and tweaking the source codes

Website Builders:

Are usually run from an online serverprovides beginners with an easy way to create websitesBuild websites by selection from a number of preset options

Explanation:

IDE is short for Integrated Development Environment.

They are predominantly designed to ease the use of a specific programming language. In most cases, IDEs contain tools for editing, testing, and converting the code to its final form as an application.

Other functions that come with it are a web server with a control interface, a database management system with a control interface (in most cases, a relational database that functions off of the webserver), a server-side programming language

Cheers!

Consider a two-by-three integer array t: a). Write a statement that declares and creates t. b). Write a nested for statement that initializes each element of t to zero. c). Write a nested for statement that inputs the values for the elements of t from the user. d). Write a series of statements that determines and displays the smallest value in t. e). Write a series of statements that displays the contents of t in tabular format. List the column indices as headings across the top, and list the row indices at the left of each row.

Answers

Answer:

The program in C++ is as follows:

#include <iostream>

using namespace std;

int main(){

   int t[2][3];

   for(int i = 0;i<2;i++){

       for(int j = 0;j<3;j++){

           t[i][i] = 0;        }    }

   

   cout<<"Enter array elements: ";

   for(int i = 0;i<2;i++){

       for(int j = 0;j<3;j++){

           cin>>t[i][j];        }    }

   

   int small = t[0][0];

   for(int i = 0;i<2;i++){

       for(int j = 0;j<3;j++){

           if(small>t[i][j]){small = t[i][j];}        }    }

   

   cout<<"Smallest: "<<small<<endl<<endl;

   

   cout<<" \t0\t1\t2"<<endl;

   cout<<" \t_\t_\t_"<<endl;

   for(int i = 0;i<2;i++){

       cout<<i<<"|\t";

       for(int j = 0;j<3;j++){

           cout<<t[i][j]<<"\t";

       }

       cout<<endl;    }

   return 0;

}

Explanation:

See attachment for complete source file where comments are used to explain each line

how do you open links in this app​

Answers

Answer:

Hhhhh

Explanation:

Hhhh

Answer:

Explanation:

Don't open the links there viruses

what is cyber ethics​

Answers

Answer:

cyber ethics​

Explanation:

code of responsible behavior on the Internet. Just as we are taught to act responsibly in everyday life with lessons such as "Don't take what doesn't belong to you" and "Do not harm others," we must act responsibly in the cyber world.

Good information is characterized by certain properties. Explain how you understand these characteristtics of good information. Use examples to better explain your answer.​

Answers

Answer:

here is your ans

Explanation:

Characteristics of good quality information can be defined as an acronym ACCURATE. These characteristics are interrelated; focus on one automatically leads to focus on other.

Accurate

Information should be fair and free from bias. It should not have any arithmetical and grammatical errors. Information comes directly or in written form likely to be more reliable than it comes from indirectly (from hands to hands) or verbally which can be later retracted.

Complete

Accuracy of information is just not enough. It should also be complete which means facts and figures should not be missing or concealed. Telling the truth but not wholly is of no use.

Cost-beneficial

Information should be analysed for its benefits against the cost of obtaining it. It business context, it is not worthwhile to spend money on information that even cannot recover its costs leading to loss each time that information is obtained. In other contexts, such as hospitals it would be useful to get information even it has no financial benefits due to the nature of the business and expectations of society from it.

User-targeted

Information should be communicated in the style, format, detail and complexity which address the needs of users of the information. Example senior managers need brief reports which enable them to understand the position and performance of the business at a glance, while operational managers need detailed information which enable them to make day to day decisions.

Relevant

Information should be communicated to the right person. It means person which has some control over decisions expected to come out from obtaining the information.

Authoritative

Information should come from reliable source. It depends on qualifications and experience and past performance of the person communicating the information.

Timely

Information should be communicated in time so that receiver of the information has enough time to decide appropriate actions based on the information received. Information which communicates details of the past events earlier in time is of less importance than recently issued information like newspapers. What is timely information depends on situation to situation. Selection of appropriate channel of communication is key skill to achieve.

Easy to Use

Information should be understandable to the users. Style, sentence structure and jargons should be used keeping the receiver in mind. If report is targeted to new-comer in the field, then it should explain technical jargons used in the report.

-224/105 in simplest form plz​

Answers

i believe ur answer is -32/15

hopefully i helped =3

The different between Del key and BKSE key

Answers

Answer and Explanation:

I believe you are referring to Backspace and Del keys, which are the keys of a computer keyboard. In this case, the difference between them is quite simple and easy to understand. These two keys are used to delete characters, however, the Backspace key is capable of deleting characters that are to the left of the cursor (the dash that appears blinking when you are typing). Del Key, in turn, is able to delete the characters to the right of the cursor.

mips Write a program that asks the user for an integer between 0 and 100 that represents a number of cents. Convert that number of cents to the equivalent number of quarters, dimes, nickels, and pennies. Then output the maximum number of quarters that will fit the amount, then the maximum number of dimes that will fit into what then remains, and so on.

Answers

Answer:

Explanation:

The following program was written in Java. It creates a representation of every coin and then asks the user for a number of cents. Finally, it goes dividing and calculating the remainder of the cents with every coin and saving those values into the local variables of the coins. Once that is all calculated it prints out the number of each coin that make up the cents.

import java.util.Scanner;

class changeCentsProgram {

         // Initialize Value of Each Coin

   final static int QUARTERS = 25;

   final static int DIMES = 10;

   final static int NICKELS = 5;

   public static void main (String[] args) {

       int cents, numQuarters,numDimes, numNickels, centsLeft;

       // prompt the user for cents

       Scanner in = new Scanner(System.in);

       System.out.println("Enter total number of cents (positive integer): ");

       cents = in.nextInt();

       System.out.println();

       // calculate total amount of quarter, dimes, nickels, and pennies in the change

       centsLeft = cents;

       numQuarters = cents/QUARTERS;

       centsLeft = centsLeft % QUARTERS;

       numDimes = centsLeft/DIMES;

       centsLeft = centsLeft % DIMES;

       numNickels = centsLeft/NICKELS;

       centsLeft = centsLeft % NICKELS;

       // display final amount of each coin.

       System.out.print("For your total cents of " + cents);

       System.out.println(" you have:");

       System.out.println("Quarters: " + numQuarters);

       System.out.println("Dimes: " + numDimes);

       System.out.println("Nickels: " + numNickels);

       System.out.println("Pennies: " + centsLeft);

       System.out.println();

   }

}

What are Render Modes? How different render modes can be used in different contexts?

Answers

Answer:

Rendering is the process that allows obtaining digital images taken from the three-dimensional model, through dedicated software. These images are intended to photorealistically simulate environments, materials, lights, objects in a project and a 3D model. In Computer Graphics Imagery , this process is developed in order to imitate a 3D space formed by polygonal structures, light behavior, textures, materials (water, wood, metal, plastic, cloth, etc.) and animation, simulating environments and credible physical structures. One of the most important parts of the programs dedicated to Computer Graphics Imagery are the rendering engines, which are capable of performing complex techniques or algorithms such as radiosity, raytrace (ray tracer), alpha channel, reflection, refraction or global illumination.

Explanation:

Rendering is a complex calculation process developed by a computer equipment designed to generate a 2D image from a 3D scene. Real-time rendering is preferably used in games and interactive graphics, it is made up of images or animations rendered at a speed that makes the fact that the computer takes time to calculate them imperceptible to the end user, therefore there will be graphic hardware dedicated to ensure rapid image processing. Offline rendering is used in those cases in which a very high speed of use of the images created is not so important, as it happens in animation works or those whose complexity and level of photorealism are much higher. Another of the applications of 3D rendering is in the world of graphic design, since it gives the designer an almost unlimited range of perspectives on the object he is designing. In addition to this, it allows a complete redesign from an initial image. Thus, designers have a tool that allows them to unleash their imagination.

Question 5 a. critically explain why you would consider arrays over normal data types [5 marks] b. from you explanation in “a” above, write and initialize an array called BongoBar of type string and having 4 element. [5 marks] c. embed your array in “b” above in a full c++ program. [5 marks] d. critically explain what will happen if an amateur programmer called BongoBar[5] in the main function in you program in “c” above.

Answers

Can you explain the question better?

Sum of Primes JAVA project
read 2 strings from the command line; each string will contain an integer. let's call those integers, num1 and num2. write a loop that goes from num1 and num2 looking for prime numbers. if a number if prime then store it in an array of integers, pass this array to a method that returns the sum of all the numbers in the array; you will also need to tell this method how many numbers are in the array. output only the sum of primes. you may assume a maximum of not more than 1000 numbers in the array.
*CODE*
import java.util.*;
class SumPrimes {
// go thru the array primes which has size elements
// total the integer values in primes
// return this total
// the first argument is the array of prime numbers
// the second argument is the number of primes in this array
public static int sumArray(first argument, second argument) {
}
// this method takes an integer, n, and determines if it is prime
// returns true if it is and false if it isn't
// a number is prime if it is only evenly divisible by 1 and itself
// 1 is NOT considered prime
static boolean isPrime(int n) {
// Corner case
if (n <= 1)
return false;
// Check from 2 to n-1
for (int i = 2; i < n; i++)
if (n % i == 0)
return false;
return true;
}
public static void main(String[] args) {
// define the constant MAX which represents the largest size of the primes array
int num1, num2, numPrime = 0;
// declare an array of the proper data type and size
// convert 1st command line argument from a string to an integer
num1 = Integer.parseInt(args[0]);
// get num2 from the command line
// loop through all integers from num1 to num2
// store those that are prime in the primes array
// keep track of the number of primes - numPrime
// output the sum of all the primes
System.out.println(sumArray(primes, numPrime));
}
}

Answers

Answer:

Explanation:

The following code is written in Java and creates the necessary code so that two int inputs are read and looped through all the numbers between them to find all the primes. These primes are counted and summed. Finally, printing out the sum and the number of primes found to the console.

import java.util.ArrayList;

import java.util.Scanner;

class SumPrimes{

   public static void main(final String[] args) {

       Scanner in = new Scanner(System.in);

           ArrayList<Integer> primes = new ArrayList<>();

           int num1, num2, numPrime = 0;

           System.out.println("Enter number 1:");

           num1 = in.nextInt();

           System.out.println("Enter number 2:");

           num2 = in.nextInt();

           for (int x = num1; x <= num2; x++) {

               if (isPrime(x) == true) {

                   primes.add(x);

                   numPrime += 1;

               }

           }

           System.out.println("There are " + numPrime + " primes in the array.");

       System.out.println("Their sum is " + sumArray(primes));

}

   public static int sumArray(ArrayList<Integer> arr) {

       int sum = 0;

       for (int x: arr) {

           sum += x;

       }

       return sum;

   }

   static boolean isPrime(int n) {

       if (n <= 1)

           return false;

       for (int i = 2; i < n; i++)

           if (n % i == 0)

               return false;

       return true;

   }

}


The type of Al that computers can use to generate and understand human speech is called__________
processing

Answers

Answer:

Language or Vocal processing

Explanation:

Language processing in AI is used to understand languages, dialects and phrases, these AI have been trained to understand human language.

Edhesive 3.7 code practice

Answers

Yes that answer is correct 3.7

Answer: To hard to answer :)

Explanation: hurts my brain

In this exercise you will debug the code which has been provided in the starter file. The code is intended to do the following:

take a string input and store this in the variable str1
copy this string into another variable str2 using the String constructor
change str1 to the upper-case version of its current contents
print str1 on one line, then str2 on the next

1 /* Lesson 4 Coding Activity Question 2 */
2
3 import java.util.Scanner;
4
5 public class U2_L4_Activity_Two{
6 public static void main(String[] args){
7
8 Scanner = new Scanner(System.in);
9 String str1 = scan.nextLine();
10 String str2 = String(str1);
11 str1 = toUpperCase(str1);
12 System.out.println("str1");
13 System.out.println("str1");
14
15 }
16 }

Answers

Answer:

The corrected code is as follows:

import java.util.Scanner;

public class U2_L4_Activity_Two{

public static void main(String[] args){

Scanner scan = new Scanner(System.in);

String str1 = scan.nextLine();

String str2 = str1;

str1 = str1.toUpperCase();

System.out.println(str1);

System.out.println(str2);

}

}

Explanation:

This corrects the scanner object

Scanner scan = new Scanner(System.in);

This line is correct

String str1 = scan.nextLine();

This copies str1 to str2

String str2 = str1;

This converts str1 to upper case

str1 = str1.toUpperCase();

This prints str1

System.out.println(str1);

This prints str2

System.out.println(str2);

Other Questions
I'm going to cry please explain if ur good at math A triangular prism has a height of 5m, a length of 204cm, and a height of 1293 mm. Find its volume. The answer is 1 x 10^something i can't really see what it is. Please explain how to do this. Which sentence best tells what text structure means? 1. the way information is organized in a passage2. the number of words in a passage3. the point of view of the author of the passage4. the main idea of the passage CHOOSE 1:Answer in at least 3 or more complete sentences.1. Having an argument with a friend makes me feel.... because....?2.When I am with people who are arguing I feel...because...?3. During a test I feel... because?4. Sitting in a dentist chair makes me feel...because.. ?5. When I am in the doctor's office I feel.. because..? Please help me with this its due in 30 mins Which of the following tables represents a proportional relationship? Lamont and Carmela both wrote an expression to show the area of the shaded region.Lamont wrote: 6(m-2)Carmela wrote: 6m-12Whose expression is correct? Billy invites 11 friends to his house for a meal.He decides to make apple pie.Billy has this list of ingredients.Apple pieserves 4 people750 g apples25 g caster sugar150 g plain flour50 g butter75 g brown sugarBilly has 2500 g of apples.(a) Does he have enough apples to make apple pie for 12people?Show a check of your working.(4) Suppose that the weights of 1-year-old boys are approximately normally distributed with a mean of 22.8 lbs and a standard deviation of about 2.15 lbs. Part 1: Find the probability that a randomly selected 1-year old boy from the population will have a weight that is less than 25 lbs. Part 2: Find the probability that the mean weight for a sample of size 10 1-year-old boys will be less than 25 lbs. Part 3: Explain the difference between Part 1 and Part 2. does two radii mean , 2+ radii because radii is the plural of radiuses ( sorry if this doesnt make sense im confused ) PLEASE HURRY I'M TIMED I WILL GIVE BRAINYEST Suppose you find a book about pirates with these chapters listed in the table of contents at the beginning of the book1 How Piracy Began2 Types of Piracy3 Laws Against Pracy4 Enforcing Pracy Laws5 Piracy Concerns on the Open Sea6 Protecting Yourself from Piracywhich two chapters might help you understand how various countries try to fight piracy?Chapters 1 and 2Chapters 1 and 5Chapters 5 and 5Chapters 3 and 4 I think we could do it if we tried if only to say youre mine. Sofia know that you and I shouldnt feel like a crime... please help to solve the question Write the expression 14(x+8) one other way. Can two O blood type parents have a non-O blood type child? Explain your reasoning. TRUEFALSE1a. You would expect to roll a4 three times.TRUEFALSETRUEFALSE1b. You would expect to roll aneven number 9 times.1c. You would expect to roll a2 or 3 ten times.1d. The probability of rolling a5 on one roll isTRUEFALSE Which of these comments from peers is an example of advice NOT to follow? The designer wants to determine how much water is covered on the surface once the pond is filled up, she claims that the Area would be 160,000 square feet. Is she correct? Justify your answer showing work.If you know the answer please help me The policy of the Japanese that most closely paralleled the conditions described in the passage wasa) forcing conquered peoples into deadly coerced labor programsb) engaging in surprise military attacks, such as the one on Pearl Harborc) attempting to liberate the people of Asia from Western imperialismd) invading Manchuria after an attack on a Japanese railway station there Someone please help! I will give branliest, thanks you and a five star. What is a possible disadvantage of using flowing water to produce electricity?