write a python program to calculate the length of any string recursively?? ​

Answers

Answer 1

Answer:

check the answer below. Hope it helps.

Write A Python Program To Calculate The Length Of Any String Recursively??

Related Questions

give five example of secondary storage device, stating their function and storage capacity​

Answers

Answer:

Examples of secondary storage media include recordable CDs and DVDs, floppy disks, and removable disks, such as Zip disks and Jaz disks. Each one of these types of media must be inserted into the appropriate drive in order to be read by the computer

functions

The function of secondary storage is the long-term retention of data in a computer system. Unlike primary storage, or what we refer to as memory, secondary storage is non-volatile and not cleared when the computer is powered off and back on.

Ask the user to input a country name. Display the output the message “I
would love to go to [country]”

Answers

Answer:

Explanation:

The following code is written in Python, it asks the user for an input saves it to a variable called country, and then prints out the sentence example in the question using the user's input. The output can be seen in the picture attached below

country = input("input country")

print('I would love to go to ' + country)

Public class Test {
public static void main(String[] args) {
new Circle9();
}
}
public abstract class GeometricObject {
protected GeometricObject() {
System.out.print("A");
}
protected GeometricObject(String color, boolean filled) {
System.out.print("B");
}
}
public class Circle9 extends GeometricObject {
/** Default constructor */
public Circle9() {
this(1.0);
System.out.print("C");
}
/** Construct circle with a specified radius */
public Circle9(double radius) {
this(radius, "white", false);
System.out.print("D");
}
/** Construct a circle with specified radius, filled, and color */
public Circle9(double radius, String color, boolean filled) {
super(color, filled);
System.out.print("E");
}
}
The answer is BEDC but how did it come about?

Answers

Answer:

| Circle9(), System.out.print("C");

| Circle9(double radius), System.out.print("D");

| Circle9(double radius, String color, boolean filled) System.out.print("E");

| GeometricObject(String color, boolean filled) System.out.print("B");

Starting From The Bottom -------------------------------

Explanation:

Just debug it.

But you'll get BEDC due to the code arrangement.

In your main: new Circle9();

So, let's go to Circle9()

-----------------------------------------

public class Circle9 extends GeometricObject {  

public Circle9() {

this(1.0);

System.out.print("C");

}

--------------------------------------------------

We need to head to Circle9(double radius) because this(1.0) was called, System.out.print("C"); will not be processed just yet

So, let's go to Circle9(double radius)

-----------------------------------------

public Circle9(double radius) {

this(radius, "white", false);

System.out.print("D");

}

--------------------------------------------------

Again, we need to leave this call and head to another, Circle9(double radius, String color, boolean filled), because of this(radius, "white", false); was called System.out.print("D"); will not be processed just yet

So, let's go to Circle9(double radius, String color, boolean filled)

-----------------------------------------

public Circle9(double radius, String color, boolean filled) {

super(color, filled);

System.out.print("E");

}

--------------------------------------------------

So here super is called which just calls the "parent"  GeometricObject(String color, boolean filled).

After that, B is outputted to Console

We then print out E

We then print out D

We then print out C

So.... more concise:

Run Through This Backwards

| Circle9(), System.out.print("C");

| Circle9(double radius), System.out.print("D");

| Circle9(double radius, String color, boolean filled) System.out.print("E");

| GeometricObject(String color, boolean filled) System.out.print("B");

The constructor calls create this chain

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

Write a function named word_beginnings that has two parameters line a string ch a character Return a count of words in line that start with ch. For the purposes of this exercise a word is preceeded by a space. Hint: add a space to the beginning of line For example if line is 'row row row your raft' and ch is 'r' the value 4 will be returned. Note: You can use lists in this question but try to solve it without lists.

Answers

Answer:

The function in Python is as follows:

def word_beginnings(line, ch):

   count = 0

   lines =line.split(" ")

   for word in lines:

       if word[0] == ch:

           count+=1

   return count

Explanation:

This defines the function

def word_beginnings(line, ch):

This initializes count to 0

   count = 0

This splits line into several words

   lines =line.split(" ")

This iterates through each word

   for word in lines:

This checks if the first letter of each word is ch

       if word[0] == ch:

If yes, increment count by 1

           count+=1

Return count

   return count

8. What's the output of this code?
1
def sum(x, y):
return(x+y)
print(sum (sum(1,2), sum(3,4)))

Answers

Answer:

10

Explanation:

[tex]sum(1,2) = 3\\sum(3,4) = 7\\sum(3,7) = 10\\[/tex]

Basically, sum((1+2) + (3+4)) = sum(3,7) = (3+7) = 10

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.

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:

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

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

in cell B5 create a formula using round function that rounds the value in cell G19 to an integer, with 0 decimal places

Answers

Answer:

=ROUND(G19, 0)

Explanation:

In Microsoft Excel you would need to click on cell B5 and then click the function bar at the top and paste the following formula

=ROUND(G19, 0)

This formula will grab whatever value is in cell G19 and round it to the nearest whole integer without any decimal places at all. This is handled by the ROUND() method which takes in two arguments, the first is the cell which has the value to be rounded, and the second argument is the number of decimal places to round to. 0 indicates no decimal places.

Use the web to learn how to use the LocalDate Boolean methods isBefore(), isAfter(), and equals(). Use your knowledge to write a program that prompts a user for a month, day, and year, and then displays a message specifying whether the entered day is in the past, is today (the current date), or is in the future.
import java.util.*;
import java.time.LocalDate;
public class PastPresentFuture2
{
public static void main(String args[])
{
int mo,da,yr;
LocalDate today=LocalDate.now();
System.out.println("Program to find if the given date is in past, present or future::");
Scanner input=new Scanner(System.in);
//taking inputs from console and storing them in three variables.
System.out.print("Enter month::");
mo=input.nextInt();
System.out.print("Enter day::");
da=input.nextInt();
System.out.print("Enter year::");
yr=input.nextInt();
//creating a LocalDate object and initializing it to null;
LocalDate inputDate=null;
try
{
/*we are using the 3 variables and converting it into a date object to compare it with today's date */
inputDate = LocalDate.of(yr,mo,da);
}
catch(Exception ex)
{
/*if the entered day,month & year are not converted to a date object because of invalid entry of any values, we are stopping the program.*/
System.out.println("You have made invalid entries, please try again !!");
System.exit(0);
}
/*if the date object is created after proper entries, we are using the built-in functions to compare it the today's date object*/
System.out.print("The date you entered is ");
if(inputDate.isBefore(today))
System.out.println("in the past.");
else
if(inputDate.isAfter(today))
System.out.println("in the future.");
else
if(inputDate.equals(today))
System.out.println("the current date.");
}
}

Answers

Answer:

Explanation:

The code provided is already taking in the input and comparing it to the current date using the methods isBefore(), isAfter(), and equals(). It works perfectly and did not need any changes to the code. As you can see from the attached pictures below, every scenario works as intended. If the format is not correct and the date object is not able to be created then it prompts an error message and exits the program as intended.

import java.util.*;

import java.time.LocalDate;

class PastPresentFuture2

{

   public static void main(String args[])

   {

       int mo,da,yr;

       LocalDate today=LocalDate.now();

       System.out.println("Program to find if the given date is in past, present or future::");

       Scanner input=new Scanner(System.in);

//taking inputs from console and storing them in three variables.

       System.out.print("Enter month::");

       mo=input.nextInt();

       System.out.print("Enter day::");

       da=input.nextInt();

       System.out.print("Enter year::");

       yr=input.nextInt();

//creating a LocalDate object and initializing it to null;

       LocalDate inputDate=null;

       try

       {

           /*we are using the 3 variables and converting it into a date object to compare it with today's date */

           inputDate = LocalDate.of(yr,mo,da);

       }

       catch(Exception ex)

       {

           /*if the entered day,month & year are not converted to a date object because of invalid entry of any values, we are stopping the program.*/

           System.out.println("You have made invalid entries, please try again !!");

           System.exit(0);

       }

       /*if the date object is created after proper entries, we are using the built-in functions to compare it the today's date object*/

       System.out.print("The date you entered is ");

       if(inputDate.isBefore(today))

           System.out.println("in the past.");

       else

       if(inputDate.isAfter(today))

           System.out.println("in the future.");

       else

       if(inputDate.equals(today))

           System.out.println("the current date.");

   }

}

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.

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

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

Iconic designs are inspirational and are often copied.

True

False

Answers

This is absolutely true. A shining example of this is with smartphones. Before Apple introduced the world to the iPhone, most smartphones had actual keyboards, zero touchscreen capabilities, could barely browse the internet, and had very small displays. After the iPhone was released in 2007, companies immediately scrambled to come out with phones that looked uncannily similar to Apple's. Why? Because Apple's phone was designed well. It's pretty amazing how immediate the shift was. In fact, I recomend you look up "Smartphones before and after iPhone" online. It's pretty cool. Here's an image example: https://www.redmondpie.com/image-showing-phones-before-and-after-iphone-x-revisits-how-android-market-still-tends-to-copy-iphone/

Hope this helps!

Consider the key success factors of B2C. Is it only IT? What is most important?​

Answers

Jsjfu zzer jsusuc888 kksss

An electronics technician who enjoys working "at the bench" would most likely want to work

Answers

Answer: for a manufacturer

Explanation:

The options include:

A. for a manufacturer.

B. as a microwave technician.

C. as a central office technician.

D. for a TV or radio station.

An electronics technician who enjoys working "at the bench" would most likely want to work with a manufacturer.

In this case, if the person wants to work at the bench since he or she enjoys it, then the person should work for a manufacturer.

Suppose we define a WaitlistEntry as follows:

typedef struct{
int iPriority; /* Priority of the student to be enrolled */
int iStudentID; /* ID of the student */
}
WaitlistEntry;

Below are different implements of a function to create a WaitlistEntry from given iPriority and iStudentID data. Some of these implementations are flawed. Identify them and describe what is wrong with them briefly:

WaitlistEntry createWL( int iPriority, int iStudentlD )
WaitlistEntry w,
w.iPriority iPriority;
w.iStudentlD iStudentlD;
return w;

a. correct
b. incorrect, leaks memory
c. incorrect, syntax error
d. incorrect, data will be overwritten by next function call

Answers

Answer:

You have syntax errors, but I don't know if it happened when you posted this question, nevertheless

Explanation:

Correct code:

WaitlistEntry createWL( int iPriority, int iStudentID ) { // Opening Brace

WaitlistEntry w; // Should be ; not ,

w.iPriority = iPriority;   // Assign Missing

w.iStudentID = iStudentID; // Assign Missing

return w;

} // Closing Brace

// Also note: iStudentID this actually has an 'l' which is LD. Not ID, this is why I assume these errors happened when posting the question.

What is the family access code right now?

Answers

I dont know I'm so sorry I cpuldnt help

Variable Labels:
Examine the following variable names for formatting errors.
If it is not usable, correct it. If there are no errors, write good.
10. studentName
11. Student Address
12.110 Room
13. parentContact
14. Teachers_name

Answers

Answer:

10. 13. and 14. Correct

11. Incorrect

12. Incorrect.

Explanation:

The programming language is not stated. However, in most programming languages; the rule for naming variables include:

Spacing not allowedUnderscore is allowedVariable names cannot start with numbers

Using the above rules, we can state which is correct and which is not.

10. 13. and 14. Correct

11. Incorrect

Reason: Spacing not allowed

Correct form: StudentAddress

12. Incorrect.

Reason: Numbers can't start variable names

Correct form: Room110

market trends on products made of bamboo, wood, and metal​

Answers

Answer:

market trends on products made of bamboo, wood, and metal

Quail eggs, popcorns, hotdogs, sandwiches, ice creams, fries, sodas, juice, you name it. It can all be found near school community. Also, fun and exciting stuff can be found and are sold near schools. Keychains, pretty and fashionable headbands, ponytails, ribbons, and so much more are sold there.

HW3: Write a program in C language by using if statement for a lift control
system, for your information
nation the maximum weight is 240kg and for five floors.

Answers

160kg Is your answer

You need to write a menu driven program. The program allows a user to enter five numbers and then asks the user to select a choice from a menu. The menu should offer the following four options – 1. Display the smallest number entered 2. Display the largest number entered 3. Display the sum of the five numbers entered 4. Display the average of the five numbers entered

Answers

Answer:

In Python:

nums = []

for i in range(5):

   num = int(input("Num: "))

   nums.append(num)

print("1 - Smallest")

print("2 - Largest")

print("3 - Sum")

print("4 - Average")

menu = int(input("Select menu: "))

if menu == 1:

   print("Smallest: ",min(nums))

elif menu == 2:

   print("Largest: ",max(nums))

elif menu == 3:

   isum = 0

   for i in range(5):

       isum+=nums[i]

   print("Sum: ",isum)

elif menu == 4:

   isum = 0

   for i in range(5):

       isum+=nums[i]

   print("Average: ",isum/5)

else:

   print("Invalid Menu Selected")

Explanation:

This program uses a list to get inputs for the 5 numbers

Here, the list is initialized

nums = []

This iterates from 1 to 5

for i in range(5):

This gets input for the 5 numbers

   num = int(input("Num: "))

This appends each number to the list

   nums.append(num)

The next 4 lines represents the menu

print("1 - Smallest")

print("2 - Largest")

print("3 - Sum")

print("4 - Average")

This prompts the user for menu

menu = int(input("Select menu: "))

If menu is 1, print the smallest

if menu == 1:

   print("Smallest: ",min(nums))

If menu is 2, print the largest

elif menu == 2:

   print("Largest: ",max(nums))

If menu is 3, calculate and print the sum of all inputs

elif menu == 3:

   isum = 0

   for i in range(5):

       isum+=nums[i]

   print("Sum: ",isum)

If menu is 4, calculate and print the average of all inputs

elif menu == 4:

   isum = 0

   for i in range(5):

       isum+=nums[i]

   print("Average: ",isum/5)

If menu is not 1 to 4, then print invalid menu

else:

   print("Invalid Menu Selected")

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

A report titled “Dog Breeds” contains information about four breeds of dogs. Information about each breed is contained in a separate table. 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:

The report is grouped and sorted.

Answer:

C. the report is grouped only

Explanation:

Best monitor cofficiant modern warfare

Answers

Answer: Monitor coefficient only determines your vertical sens with respect to your horizontal. It should be your horizontal pixels divided by your vertical. E.g. for a 1920 x 1080 monitor it should be 1.33. For a 2560 x 1440 it should be 1.78.

Explanation:

Answer:

1920 x 1080 monitor or 2560 x 1440

if your looking for a smooth gaming experience also depends on the graphic card and processer you use

Explanation:

Write a Python Program to find Prime Factors of a Number using For Loop, and While Loop

Answers

Answer:

1. Take the value of the integer and store in a variable.

2. Using a while loop, first obtain the factors of the number.

3. Using another while loop within the previous one, compute if the factors are prime or not.

4. Exit.

hope it helps☺

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.

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:

Other Questions
On January 1, 2020, Cullumber Company had the following stockholders' equity accounts. Common Stock ($10 par value, 75,000 shares issued and outstanding) $750,000 Paid-in Capital in Excess of Par-Common Stock 180,000 Retained Earnings 500,000 During the year, the following transactions occurred. Jan. 15 Declared a $1.00 cash dividend per share to stockholders of record on January 31, payable February 15. Feb. 15 Paid the dividend declared in January. Apr. 15 Declared a 5% stock dividend to stockholders of record on April 30, distributable May 15. On April 15, the market price of the stock was $15 per share. May 15 Issued the shares for the stock dividend. July 1 Announced a 2-for-1 stock split. The market price per share prior to the announcement was $13. (The new par value is $5.) Dec. 1 Declared a $0.40 per share cash dividend to stockholders of record on December 15, payable January 10, 2021. Dec. 31 Determined that net income for the year was $200,000. Required:Journalize the transactions and the closing entries for net income and dividends. The cost and customer rating of 13 televisions is shown on the scatterplot. The televisions are rated on a scale of 0 to 10.Scatterplot with x axis labeled Television Price going from 0 to 1,400 and y axis labeled Rating going from 0 to 12. Values at 61, 1; 185, 3; 221, 10; 291, 2; 462, 4; 666, 5; 686, 4; 730, 5; 862, 7; 997, 10; 1,055, 9; 1,077, 8; 1,263, 7.Part A: Describe the association shown in the scatterplot. (4 points).Part B: Give an example of a data point that affects the appropriateness of using a linear regression model to fit all the data. Explain. (4 points)Part C: Give an example of a television that is cost effective and rated highly by customers. (2 points) Indicate (/)1)Every whole number is a rational number.2)There are some fraction that are not rational number.3)every negative rational number lies to the right of zero on the number line.4) zero is not a rational number.5)every interger is a rational number. Given f(x) = 5x4 x2 + 6x 1. What is Limit of f (x) as x approaches negative 1?3132529 Ponyboy talks about the importance of taking up for your buddies, no matter what they do (p. 26). Which of the following is an example of one of the greasers breaking the code of loyalty?a. Dallas waits for Johnny and Ponyboy before heading to the drive-in theatre.b. Cherry is rude to Dallas when he tries to talk to her.c. Johnny tells Dallas to leave Cherry alone.d. Johnny defends Dallas when Cherry insults him. Manny has drafted an email message and configured a delivery option Do not delivery before 5:00 PM and todays 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 Mannys computer - the message will remain in mannys outbox until the computer is started and the outlook programs is started the next day - the message will remain in Mannys outbox until the computer is started and he will be promoted Wildhorse Company produces golf discs which it normally sells to retailers for $7 each. The cost of manufacturing 24,200 golf discs is:Materials $ 12,342 Labor 36,542 Variable overhead 25,894 Fixed overhead 47,916 Total $122,694 Wildhorse also incurs 5% sales commission ($0.35) on each disc sold.McGee Corporation offers Wildhorse $4.80 per disc for 4,800 discs. McGee would sell the discs under its own brand name in foreign markets not yet served by Wildhorse. If Wildhorse accepts the offer, its fixed overhead will increase from $47,916 to $53,006 due to the purchase of a new imprinting machine. No sales commission will result from the special order.(a) Prepare an incremental analysis for the special order. (Enter negative amounts using either a negative sign preceding the number e.g. -45 or parentheses e.g. (45).)RejectOrder AcceptOrder Net IncomeIncrease(Decrease) Revenues $ $ $ Materials Labor Variable overhead Fixed overhead Sales commissions Net income $ $ $ (b) Should Wildhorse accept the special order?Wildhorse shouldreject/acceptthe special order . Solve for x. Reduce any fractions to lowest terms. Don't round your answer, and don't use mixed fractions. 54x+64 49x + 59 Now, find the concentration of H+ ions to OH ions listed in Table B of your Student Guide for a solution at a pH = 11. Then divide the H+ concentration by the OH concentration. Record these concentrations and ratio in Table C. What is the concentration of H+ ions at a pH = 11? mol/L What is the concentration of OH ions at a pH = 11? mol/L What is the ratio of H+ ions to OH ions at a pH = 11? :1, OR 1: English Question help ASAP HELP! I HAVE NO IDEA HOW TO DO IT Describe where the following people go (3pts), what they do there (2 pts), and when. (2 pts) Follow the model: I go to the park in order to run in my free time. Each sentence must use a different place, a different verb that is done in that place and a different when.LorenaYoLola y tDavid y PacoTRoberto y yo Ronald correctly wrote the equationof a line through point g as y=mx-4. What is the value of min Ronald's equation Uh do yall know the coordinates im supposed to put for the last one in the triangle shown determine j to the nearest degree If a cross country runner covers a distance of 287 meters in 154 seconds what is her speed? steps to follow before writing a test VERY EASY, WILL GIVE 50 POINTS FOR CORRECT ANSWER ASAP AND WILL GIVE BRAINLIEST. Find lateral surfacearea of the play tent.h = 4 in14 in5 in5 inW6 in _______ in saliva start the chemical digestion process