Think of a routine task (studying, exam preparation, downtime, grocery shopping, food preparation, etc.) in your life that you may have never questioned. How can this routine be improved? How would this benefit you?

Answers

Answer 1

Answer:

Great Question

Explanation:

Think yourself and Differentiate the important tasks with the unimportant ones. You will get your answer today.


Related Questions

Many companies use telephone numbers like 555-GET-FOOD so the number is easier for their customers to remember. On a standard telephone, the alphabetic letters are mapped to numbers in the following fashion: A, B, and C = 2 D, E, and F = 3 G, H, and I = 4 J, K, and L = 5 M, N, and O = 6 P, Q, R, and S = 7 T, U, and V = 8 W, X, Y, and Z = 9 Write a program that asks the user to enter a 12-character telephone number in the format: XXX-XXX-XXXX. Acceptable characters (X's) are A-Z and a-z. Your program should check for: The length of the phone number is correct. The dashes are included and are in the correct positions. There are no characters in the illegal characters in the string. The application should display the telephone number with any alphabetic characters that appeared in the original translated to their numeric equivalent. If the input string is not entirely correct then you should print an error message. For example, if the user enters 555-GET-FOOD the program should display 555-438-3663. If the user enters 123-456-7890, the program should display 123-456-7890. Rules: You must have one function (in addition to main()) that converts an alphabetic character to a digit. Or you can have one function that coverts all characters to digits. You can make your own function or use a built-in function if one exists.

Answers

Answer:

The program in Python is as follows:

def convertt(phone):

splitnum = phone.split ('-')

valid = True  

count = 0  

err = ""  

numphone = ""

if len(phone) != 12:

 err = "Invalid Length"  

 valid = False  

elif phone[3] != '-' or phone[7] != '-':

 err = "Invalid dash [-] location"  

 valid = False  

while valid== True and count < 3:

 for ch in splitnum[count]:

  if ch.isdigit():

   numphone += ch  

  elif ch.upper()in 'ABC':

   numphone += '2'  

  elif ch.upper()in 'DEF':

   numphone += '3'  

  elif ch.upper()in 'GHI':

   numphone += '4'  

  elif ch.upper() in 'JKL':

   numphone += '5'  

  elif ch.upper()in 'MNO':

   numphone += '6'  

  elif ch.upper()in 'PQRS':

   numphone += '7'  

  elif ch.upper()in 'TUV':

   numphone += '8'  

  elif ch.upper()in 'WXYZ':

   numphone += '9'

  else:

   valid = False

   err = "Illegal character in phone number"  

 if count!=2:

  numphone += '-'  

 count += 1  

if valid == False:

 print (err)

else:

 print ("Phone Number", numphone)

phone = input("Phone number: ")

convertt(phone)

Explanation:

See attachment for complete source code where comments are used for explanation

The Syntax NPV formula includes the Rate, The Cash Flows, the number of payments, and the Future
Value.
Select one:
True

False​

Answers

Answer:

False

Explanation:

NPV stands for Net Present Value, it is an important term in finance as it used to determine the value of money or investment based on a series of cashflows and specified discount rate. Excel provides a functions which aids easy calculation of the Net Present value of money or investment using the NPV formula. The syntax forbthe NPV formula is :

=NPV(rate,value 1, [value 2],...)

This formular requires only tow key parameters ; the discount rate, which comes first and the cashflows, which is designated in the syntax as values ; the cashflows is usually placed in a range of cells in excel and the cell range is inputed in the formular. Hence, the number of payments and future value aren't part of the NPV syntax.

Compile and Execute a Program
1. Compile Pay.java using the JDK or a Java IDE as directed by your instructor.
2. You should not receive any error messages.
3. When this program is executed, it will ask the user for input. You should calculate several different cases by hand. Since there is a critical point at which the calculation changes, you should test three different cases: the critical point, a number above the critical point, and a number below the critical point. You want to calculate by hand so that you can check the logic of the program. Fill in the chart below with your test cases and the result you get when calculating by hand.
4. Execute the program using your first set of data.
Record your result. You will need to execute the program three times to test all your data. Note: you do not need to compile again. Once the program compiles correctly once, it can be executed many times. You only need to compile again if you make changes to the code. Hours Rate Pay (hand calculated) Pay (program result) LLLLLLLLLL import java.util.Scanner; // Needed for the Scanner class This program calculates the user's gross pay. public class Pay public static void main(String[] args) // Create a Scanner object to read from the keyboard. Scanner keyboard = new Scanner(System.in); // Identifier declarations double hours; // Number of hours worked double rate; // Hourly pay rate double pay; // Gross pay // Display prompts and get input. System.out.print("How many hours did you work? "); hours = keyboard.nextDouble(); System.out.print("How much are you paid per hour? "); rate - keyboard.nextDouble(); // Perform the calculations. if (hours <- 40) pay - hours * rate; else pay - (hours - 40) - (1.5 * rate) + 40 - rate; // Display results. System.out.println("You earned $" + pay);

Answers

Answer:

import java.util.Scanner;

// Needed for the Scanner class This program calculates the user's gross pay.

public class Pay {

public static void main(String[] args) {

// Create a Scanner object to read from the keyboard.

Scanner keyboard = new Scanner(System.in);

// Identifier declarations

double hours;

// Number of hours worked

double rate;

// Hourly pay rate

double pay;

// Gross pay

// Display prompts and get input.

System.out.print("How many hours did you work? ");

hours = keyboard.nextDouble();

System.out.print("How much are you paid per hour? ");

rate = keyboard.nextDouble();

// Perform the calculations.

if (hours <= 40) {

pay = hours * rate;

}

else

{

pay = (hours - 40) - (1.5 * rate) + 40 - rate;

}

// Display results.

System.out.println("You earned $" + pay);

}

}

Explanation:

1. What are the main features of IEEE 802.3 Ethernet standard?​

Answers

Answer:

Single byte node address unique only to individual network. 10 Mbit/s (1.25 MB/s) over thick coax. Frames have a Type field. This frame format is used on all forms of Ethernet by protocols in the Internet protocol suite.

Explanation:

802.3 is a standard specification for Ethernet, a method of packet-based physical communication in a local area network (LAN), which is maintained by the Institute of Electrical and Electronics Engineers (IEEE). In general, 802.3 specifies the physical media and the working characteristics of Ethernet.

it is used to connect the different data and flow of action from one symbol to another what is that​

Answers

Since u said "symbols" I'm assuming Ur talking about flowcharts.

If that's wut Ur talking about, u use arrows to denote the flow of control and data and also the sequence.

If Ur talking about processor architecture ( which I assume Ur not) the answer is buses

Why do entries in a local address resolution protocol table expire after a short amount of time?

Answers

Answer:

To account for network changes

Explanation:

Answer:

To account for network changes

Explanation:

Address Resolution Protocol (ARP) can be regarded as procedure that is been engaged in mapping of dynamic Internet Protocol address i.e (IP address) into permanent physical machine address( MAC Address) in a particular local area network (LAN).

ARP is utilized when there is need for

dynamically mapping of layer-3 network addresses into data-link addresses. It should be noted that the reason why entries in a local address resolution protocol table expire after a short amount of time is that it will be easy to account for network changes

How is an interpreter different from a compiler?
An interpreter translates and executes code line by line, while a compiler translates all code at once so that it is ready to be executed at any time.
An interpreter translates all code at once so that it is ready to be executed at any time, while a compiler translates and executes code line by line.
An interpreter translates programming code into binary language, while a compiler does not.
An interpreter translates binary language into programming language, while a compiler translates programming language into binary language.

Answers

Answer:

An interpreter is quite different from a complier due to the following statement below:

O. An interpreter translates and executes code line by line, while a compiler translates all code at once so that it is ready to be executed at any time.

Explanation:

For an interpreter, it works in translating and execution of the codes line after another line. In a situation where there is a mistake in the code, the next line would not be able to be executed, but rather display error message. On the other hand, compiler translate all codes at once and execute them as a single work.

During its translation of the codes in compiler, should there be any error, it would not be able to execute despite the fact that, the error might be in the last line of the code.

Answer:

a

Explanation:

taking test right now

Dexter is trying to draw a rhombus and play the pop sound at the same time in his program. How should he correct the error in this algorithm? When space key pressed, draw rhombus, play pop sound.

a- Add another when space key pressed event and move play pop sound to that event.
b- Change the draw rhombus command to a draw triangle command.
c- Put the code inside a loop block with two iterations.
d- Use a conditional block so that the code is if draw rhombus, then play pop sound.

Answers

Answer:

Option A makes the most sense

Explanation:

Add another when space key pressed event and move play pop sound to that event. The correct option is A.

What is algorithm?

A set of instructions designed to perform a specific task or solve a specific problem is referred to as an algorithm.

It is a step-by-step procedure that defines a sequence of actions or operations that, when carried out, result in the solution of a problem or the completion of a task.

Dexter is attempting to draw a rhombus while also playing the pop sound in his program.

She should add another when space key is pressed event and move the play pop sound to that event to correct the error in this algorithm.

Thus, the correct option is A.

For more details regarding algorithm, visit:

https://brainly.com/question/22984934

#SPJ3

As of Spring 2020, in otder to get into the CS major, you must have a 3.0 GPA or better in cs120, cs210, and cs245. In this problem, you should write one function named get_gpa, which will calculate this GPA. This function should have one parameter, which will be a dictionary of grades in computer science courses. You can assume that the dictionary will always have the keys 'cs120', 'cs210', and 'cs245', but it also might contain some names of other courses too. The values associated with each key will be a float representeing the GPA-style grade for that class. For instance, the parameter dictionary might look like: {'cs120':4.0 'cs245':3.0, 'cs210':2.0}. Some examples:

get_gpa({'cs110': 4.0, 'cs245':3.0, 'cs335':4.0, 'cs120':3.0, 'cs210':3.0}) should return 3.0.
get_gpa({'cs110': 4.0, 'cs120':3.0, 'cs245':2.0, 'cs210':1.0}) should return 2.0.
get_gpa({'cs245':4.0, 'cs120':3.0, 'cs245':2.0}) should return 3.0.

Make sure to include only the one function in your file.

Answers

Answer:

The function is as follows:

def get_gpa(mydict):

   gpa = 0

   kount = 0

   for course_code, gp in mydict.items():

       if course_code == 'cs120' or course_code == 'cs210' or course_code == 'cs245':

           gpa += float(gp)

           kount+=1

   

   return (gpa/kount)

Explanation:

This defines the function

def get_gpa(mydict):

This initializes gpa to 0

   gpa = 0

This initializes kount to 0

   kount = 0

This iterates through the courses

   for course_code, gp in mydict.items():

If course code is cs120 or cs210 or cs245

       if course_code == 'cs120' or course_code == 'cs210' or course_code == 'cs245':

The gpa is added

           gpa += float(gp)

And the number of courses is increased by 1

           kount+=1

This returns the gpa    

   return (gpa/kount)

When adding delegates to his mailbox, which role should Joel use if he would like the user to be able to read and create items in a particular folder?
- editor
- publishing editor
- author
- manager

Answers

Answer:

publishing editor

Explanation:

In this scenario, the role that he should choose for the delegates would be publishing editor. This role will allow them to create, read, modify, and delete all items within a given folder, and create subfolders. The other options listed either do not give access to create/modify existing files or simply only give all these rights with files that the user creates but not files that already existed in the folder. Therefore, this would be the best role for what Joel wants to accomplish.

Mathilda’s computer has been running slow the past few months. She observed that the system unit becomes too hot. What does she need to do to fix this issue?
A.
She needs to make sure that the keyboard and mouse are properly connected.
B.
She needs to install antivirus software.
C.
She needs to delete unwanted files from her hard disk.
D.
She needs to clean the dust from the system unit fan.

Answers

It is D it may cause your computer to get hot because of the dust from the unit fan :/

Answer:

The answer is D

Explanation:

What was software for modems that connected through phone lines called?


virtual-emulation software

terminal-emulation software

bulletin-board software

baud modem software

Answers

Answer:

Best Regards to all of the people who have met you in the class

What is the difference between internal hardware and software?

Internal hardware is the physical parts of a computer that you see on the outside; software is the physical parts of a computer that you see on the inside.
Internal hardware is the physical parts of a computer that you see inside the computer; software is the physical parts of a computer that you see on the outside.
Internal hardware is the programs and applications that make the computer work; software is the physical parts that help the computer work.
Internal hardware is physical parts that help the computer work; software is the programs and applications that make the computer work.

Answers

Answer:

software are the tangible parts of a computer which you can see and touch and hardware are the intangible parts of a computer like the programs and files

In this problem, you should write one function named count_calories. This function should have one parameter, which will be a dictionary of food items. The keys will ne the name of a food item (such as 'granola' or 'steak'), and the value associated with each food will be the integer calorie amount for that food. The function should iterate through all of the foods and sum up the total calories, and then return that number. For example:
count_calories({'chocolate':200, 'milk':120, 'steak':250}) should return 570.
count_calories({'carrot':5, 'apple':50}) should return 55.
Make sure to include only the one function in your file.

Answers

Answer:

The function is as follows:

def count_calories(dictt):

   total = 0

   for keys, values in dictt.items():

       total+=values

   

   return total

Explanation:

This defines the function

def count_calories(dictt):

This initializes total to 0

   total = 0

This iterates through the dictionary

   for keys, values in dictt.items():

This adds the dictionary

       total+=values

This returns the calculated total    

   return total

10.11 LAB: Pet information (derived classes) The base class Pet has private data members petName, and petAge. The derived class Dog extends the Pet class and includes a private data member for dogBreed. Complete main() to: create a generic pet and print information using PrintInfo(). create a Dog pet, use PrintInfo() to print information, and add a statement to print the dog's breed using the GetBreed() function.

Answers

Answer:

Answered below.

Explanation:

//Program in Java

Class Test{

public static void main (String[] args){

//create a pet object

Pet pet = new Pet();

//call pet object's printInfo method

pet.printInfo();

//create a new Dog object

Dog dog = new Dog();

//dog can access the printInfo method of the Pet class because it derives from it

dog.printInfo();

//dog can also call it's private method.

dog.getBreed();

}

}

The document that is use in excel to store an work with data that's formatted in a pattern of a uniformly space horizontalal an vertical lines

Answers

Answer:

Spreadsheet.

Explanation:

Microsoft Excel is a software application or program designed and developed by Microsoft Inc., for analyzing and visualizing spreadsheet documents.

The document that is use in excel to store a work with data that's formatted in a pattern of uniformly spaced horizontalal and vertical lines is called a spreadsheet.

A spreadsheet can be defined as a file or document which comprises of cells in a tabulated format (rows and columns) typically used for formatting, arranging, analyzing, storing, calculating and sorting data on computer systems.

Additionally, workbooks are known as Microsoft Excel files. An Excel workbook can be defined as a collection of one or more charts and worksheets (spreadsheets) used for data entry and storage in an excel file. In order to create a project on Excel you will have to use a workbook.

Consider the following incomplete method. Method findNext is intended to return the index of the first occurrence of the value val beyond the position start in array arr. I returns index of first occurrence of val in arr /! after position start; // returns arr.length if val is not found public int findNext (int[] arr, int val, int start) int pos = start + 1; while condition '/ ) pos++ return pos; For example, consider the following code segment. int [ ] arr {11, 22, 100, 33, 100, 11, 44, 100); System.out.println(findNext (arr, 100, 2)) The execution of the code segment should result in the value 4 being printed Which of the following expressions could be used to replace /* condition */ so that findNext will work as intended?
(A) (posarr.length) &&(arr [pos]- val)
(B) (arr [pos] != val) && (pos < arr. Îength)
(C) (pos (D) (arr [pos} == val) && (pos < arr. length)
(E) (pos

Answers

Answer:

B)

Explanation:

The while loop runs as long as two conditions are satisfied, as indicated by the && logical operator.

The first condition- arr[pos] != val

checks to see if the value in the array index, pos, is equal to the given value and while it is not equal to it, the second condition is checked.

The second condition(pos < are.length), checks to see if the index(pos) is less than the length of the array. If both conditions are true, the program execution enters the while loop.

The while loop is only terminated once arr[pos] == Val or pos == arr.length.

question is in photo

Answers

is this java or python pls explain or else i can’t answer

Manny has drafted an email message and configured a delivery option “Do not delivery before 5:00 PM and today’s date” he shuts down his computer and leaves for the day at 4:30 pm. What will happen at 5 pm?
- the message will be delivered from the server
- the message will be delivered from Manny’s computer
- the message will remain in manny’s outbox until the computer is started and the outlook programs is started the next day
- the message will remain in Manny’s outbox until the computer is started and he will be promoted

Answers

Answer:

Explanation:

In this scenario, the message will remain in manny’s outbox until the computer is started and the outlook programs is started the next day. When you create a message but do not send it, even if you schedule to send it, the message gets saved as a draft in your outbox. Once the scheduled time arrives the program will grab the message, prepare it, and send it. This will however not happen if the program is closed. Therefore, Manny's message will only send once the computer is turned on and the Outlook program relaunches.

5.10 (Find the highest score) Write a program that prompts the user to enter the number of students and each student's score, and displays the highest score.

Please help me! ​

Answers

Answer:

Python Program for the task.

#Ask the user to input the number of students

n = int(input("Please enter the number of students:\n"))

print()

#Get students' scores

for i in range(n):

score_list = [ ] #placeholder for score

i = float(input("Please enter student's score:"))

score_list.append(i) # append student score

#print the highest score

print("The highest score is",max(score_list))

1.
Consider the following Java statements.
1
2.
int a = 5;
int b = 3;
int c = 4;
C = a + b 3
3
4
What is the value of c after these lines execute?
Enter answer here​

Answers

Answer:

2. in the a= 5

Explanation:

dhjhff jogs KFC lol f kids

what is this....... Iam booking train to patna. ​

Answers

i agree w the person above

with the aid of an example describe absolute file path as used in file management​

Answers

Answer:

here's your answer

Explanation:

A path is either relative or absolute. An absolute path always contains the root element and the complete directory list required to locate the file. For example, /home/sally/statusReport is an absolute path.

I think it's helpful for you.....

Name 4 components of a components system​

Answers

The four main components are main memory, arithmetic and logic unit, control unit, and input/output (I/O). :)

An electronic device for storing and processing data typically in binary form according to instructions given to it in a variable
program

Answers

Answer:

Computer

Explanation:

What was really Ur quiz ,it's name?If so then it's a computer

Read the scenario and then answer the question using only the information provided.

A report titled “Students in Freshman Chemistry” contains the names of college students enrolled in a freshman chemistry course. Names are organized in ascending alphabetical order. Which best describes how the report is organized?

The report is grouped and sorted.

The report is sorted only.

The report is grouped only.

Answers

Answer:

It’s b the report is sorted only

Explanation:

Which of these skills are used in game design?
Writing, Project Management, Drawing and artistic visualization, all of the above

Answers

Answer:

I think the answer is Writing but am not sure

The Painting Company has determined that for every 112 square feet of wall space:
One gallon of paint at $9.53 per gallon is required if total square feet is 2000 or less. If square footage is greater than 2000, paint is $10.50 per gallon.
8 hours of labor at $35 per hour is required.
A hazardous material disposal fee of 7.5% of the total paint cost is required.
Create a function called paintJobCost which allows the user to provide the total number of square feet for the paint job and produces an itemized list of charges that includes:
Number of gallons of paint required.
Total Cost of the Paint (Paint Cost x Gallons Required)
Hours of labor required to paint (8 hrs per 112 sq ft)
Total Cost of the Labor.
The hazardous material fee.
The total cost of the paint job. (Paint Cost + Labor Cost + Hazardous Material fee)
Your function, when called, must display all the above information exactly as shown below.
Expected Output
Call the paintJobCost function where the total square footage of the paint job is 1800. Square Footage Paint Required Paint Cost 16.07 gal $153.16 Labor Hours 128.57 hrs Labor Cost $4,500.00 Hazard Fee $11.49 TOTAL COST OF PAINT JOB $4,664.65 Call the paintjobCost function where the total square footage of the paint job is 2700. Square Footage Paint Required 2700 24.11 gal Paint Cost $253.12 Labor Hours 192.86 hrs Labor Cost $6,750.00 Hazard Fee $18.98 TOTAL COST OF PAINT JOB $7,022.11 Call the paintJobCost function where the total square footage of the paint job is 3200. Square Footage Paint Required Paint Cost 3200 28.57 gal $300.00 Labor Hours 228.57 hrs Labor Cost $8,000.00 Hazard Fee $22.50 TOTAL COST OF PAINT JOB $8,322.50

Answers

Answer:

Answered below

Explanation:

#Program is written in Python.

sq_feet = int(input ("Enter paint area by square feet: ")

gallons = float(input (" Enter number of gallons: ")

paint_job_cost(sq_ft, gallons)

#Function

def paint_job_cost(sq_ft, gal){

gallon_cost = 0

cost_per_hour = 35

if sq_ft <= 2000:

 gallon_cost = 9.53

else:

gallon_cost = 10.50

paint_cost = gal * gallon_cost

labour_hours = 8 * (sq_ft/112)

total_labour_cost = labour_hours * cost_per_hour

hazard_fee = 0.075 * paint_cost

total_cost = paint_cost + total_labour_cost + hazard fee

print (paint_cost)

print(labour_hours)

print (total_labour_cost)

print (hazard_fee)

print(total_cost)

}

Describe a problem you’ve solved or a problem you’d like to solve. It can be an intellectual challenge, a research query, an ethical dilemma — anything of personal importance, no matter the scale. Explain its significance to you and what steps you took or could be taken to identify a solution.

Answers

Answer:

Explanation:

I run an online e-commerce store and lately its been very difficult keeping track of customer detail, incoming orders, keyword generation etc. One solution that I thought about would be an application that controls all of that for me. In order to accomplish this I would first need to design and create a GUI that contains all of the necessary buttons and displays for the information. Then I would need to code a webscraper using Python to grab all of the data from e-commerce store as soon as it becomes available, organize it, and display it within the GUI.

HLOOKUP is used for Horizontal Data look ups while VLOOKUP is for Vertical Data look ups
Select one:
True
False​

Answers

Answer:

True

Explanation:

Both HLOOKUP and VLOOKUP are excel functions used for searching through tables for a specified lookup value to either get an exact or approximate match. The VLOOK and HLOOKUP functions have identical syntax which only differs with the HLOOKUP requiring the row index number to search through the rows while, VLOOKUP requires the column index number to search through the columns. Other than this difference, the other syntax values are the same.

VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

Other Questions
Calvin found census data for the population of Idaho from 1870 through 2000. He made the chart and scatter plot using thisdata.Idaho PopulationCalvin's GraphYaar1870188018901900191019201930194019501960197019801990199420002010TID Pop1833891623264324455255896677139441007104018001600)14001200Population 1000in Thousands 800600400200OL1860189019201950Year19802010Using a line of best fit, which of these would be a reasonable prediction for the population of Idaho in 2020?O A 1.600.000O D. 1,000,000O B. 1,400,000O E. 800.000O c. 1.200.000 Hello can someone help :)What is the smallest possible probability in any experiment? Dr Larson saw 1020 patients last year this year the number of patients he saw was 45% lower how many patients did dr. Larson see this year. please help me with homework. pedro uses a bar magnet to pick up a nail. He thentouches the tip of the nail to some staples.Why do some of the staples stick to the nail?The nail and the bar magnet are now both permanentmagnets.The nail has become a temporary magnet, while thebar magnet remains a permanent magnet.O The nail has become a permanent magnet, while thebar magnet has become a temporary magnet.The nail and the bar magnet are now both temporarymagnets. Please help (no links no viruses) if you do links I will report you! If you get it right I will mark you brainlist! The triangles below are similar. Triangle A B C. Side A C is 10 and side A B is 5. Angle C is 30 degrees. Triangle D E F. Side E D is 7.5 and side D F is 25. Angle F is 30 degrees and angle E is 90 degrees. Which similarity statements describe the relationship between the two triangles? Check all that apply. PLS HELP!!After you record your bibliographic information, what should you do in the first column of your graphic organizer?Highlight it.Change the words.Copy a relevant direct quote.Cite your source. find the sides marked with letters all the lengths are in cm A card is drawn from a deck of 52 cards. Find the probability of drawing a black card.14) Find the probability of drawing a red card.15) Find the probability of drawing a red or black.16) Find the probability of drawing an ace.17) Find the probability of drawing either a jack or queen or king. Select the correct answer.Which highlighted word is a preposition?He walked between the cars.OA.walkedB.betweenOC.cars According to a recent random survey of 1,963 high school students, 581 report playing a musical instrument. A 90% confidence interval for the population of high school students who play a musical instrument is constructed. Which statement identifies what is being estimated?Find the z-table here.The proportion being estimated is StartFraction 581 Over 1963 EndFraction.The true proportion of high school students who play a musical instrument is p.The true proportion of high school students who play a musical instrument is StartFraction 581 Over 1963 EndFraction.The sample proportion of high school students who play a musical instrument is . el trmino significa cambios de velocidad de direccin Which expression is equivalent to 4sqrt x^10 Bello you have a great day Find the sum: 28,35,42,49,56,63,70 Knights were powerful lords who were served by Samurai in their armies.TrueFalse Please help ill mark brainliest if correct I attached a photo of the problem Help fill in blanks please the worthington family is applying for a loan to purchase a new home.In order to qualify they must have a net worth greater than 100,000. based on the info given what is the worthing family's net worth will they qualify for the loan