What’s your fave tv show?

Answers

Answer 1

Answer:

the vampire diareas

Explanation:

Answer 2

Answer: friends

Explanation:✌


Related Questions

Question 17(Multiple Choice Worth 5 points)
(03.02 MC)
You want to buy a new jacket. Which program will help you see how much money you need to save?
O Budget simulator
O Navigation app
O Virtual shopping app
O Investment simulator

Answers

Budget simulator
Im not 100% sure but it’s the only one that makes sense to me

Answer:

a

Explanation:

explain the importance of computer graphics?​

Answers

Answer:

Computer graphics are similar to the visual designs and textures we see in pc games and such everyday we use our computers. Just basically re-creatable images and re-creating images into art.

The compare_strings function is supposed to compare just the alphanumeric content of two strings, ignoring upper vs lower case and punctuation. But something is not working. Fill in the code to try to find the problems, then fix the problems.

import re
def compare_strings(string1, string2):
#Convert both strings to lowercase
#and remove leading and trailing blanks
string1 = string1.lower().strip()
string2 = string2.lower().strip()

#Ignore punctuation
punctuation = r"[.?!,;:-']"
string1 = re.sub(punctuation, r"", string1)
string2 = re.sub(punctuation, r"", string2)

#DEBUG CODE GOES HERE
print(___)

return string1 == string2

print(compare_strings("Have a Great Day!", "Have a great day?")) # True
print(compare_strings("It's raining again.", "its raining, again")) # True
print(compare_strings("Learn to count: 1, 2, 3.", "Learn to count: one, two, three.")) # False
print(compare_strings("They found some body.", "They found somebody.")) # False

Answers

Answer:

There is a problem in the given code in the following statement:

Problem:

punctuation = r"[.?!,;:-']"

This produces the following error:

Error:

bad character range

Fix:

The hyphen - should be placed at the start or end of punctuation characters. Here the role of hyphen is to determine the range of characters. Another way is to escape the hyphen - using using backslash \ symbol.

So the above statement becomes:

punctuation = r"[-.?!,;:']"  

You can also do this:

punctuation = r"[.?!,;:'-]"  

You can also change this statement as:

punctuation = r"[.?!,;:\-']"

Explanation:

The complete program is as follows. I have added a print statement print('string1:',string1,'\nstring2:',string2) that prints the string1 and string2 followed by return string1 == string2  which either returns true or false. However you can omit this print('string1:',string1,'\nstring2:',string2) statement and the output will just display either true or false

import re  #to use regular expressions

def compare_strings(string1, string2):  #function compare_strings that takes two strings as argument and compares them

   string1 = string1.lower().strip()  # converts the string1 characters to lowercase using lower() method and removes trailing blanks

   string2 = string2.lower().strip()  # converts the string1 characters to lowercase using lower() method and removes trailing blanks

   punctuation = r"[-.?!,;:']"  #regular expression for punctuation characters

   string1 = re.sub(punctuation, r"", string1)  # specifies RE pattern i.e. punctuation in the 1st argument, new string r in 2nd argument, and a string to be handle i.e. string1 in the 3rd argument

   string2 = re.sub(punctuation, r"", string2)  # same as above statement but works on string2 as 3rd argument

   print('string1:',string1,'\nstring2:',string2)  #prints both the strings separated with a new line

   return string1 == string2  # compares strings and returns true if they matched else false

#function calls to test the working of the above function compare_strings

print(compare_strings("Have a Great Day!","Have a great day?")) # True

print(compare_strings("It's raining again.","its raining, again")) # True

print(compare_strings("Learn to count: 1, 2, 3.","Learn to count: one, two, three.")) # False

print(compare_strings("They found some body.","They found somebody.")) # False

The screenshot of the program along with its output is attached.

The compare_strings function is supposed to compare just the alphanumeric content of two strings, ignoring

Following are the modified program to the given question:

Program Explanation:

Import package.Defining a method "compare_strings" that takes two parameters "string1, string2".Inside the method, parameter variables have been used that convert and hold string values into lower case.In the next step, a variable "punctuation" is defined that holds value.After this, a parameter variable is used that calls the sub-method that checks parameter value with punctuation variable value, and at the return keyword is used that check string1 value equal to string2.Outside the method, multiple print method is used calls the method, and prints its value.

Program:

import re #import package

def compare_strings(string1, string2):#defining a method compare_strings that takes two parameters

   string1 = string1.lower().strip()#defining a variable string1 that converts and holds string value into lower case  

   string2 = string2.lower().strip()#defining a variable string1 that converts and holds string value into lower case

   punctuation = r'[^\w\s]'#defining a variable that holds value

   string1 = re.sub(punctuation, '', string1)#using the variable that calls the sub method that checks parameter value with punctuation variable value  

   string2 = re.sub(punctuation, '', string2)#using the variable that calls the sub method that checks parameter value with punctuation variable value  

   return string1 == string2#using return keyword that check string1 value equal to string2

print(compare_strings("Have a Great Day!", "Have a great day?")) # calling method that prints the return value

print(compare_strings("It's raining again.", "its raining, again")) # calling method that prints the return value

print(compare_strings("Learn to count: 1, 2, 3.", "Learn to count: one, two, three.")) # calling method that prints the return value

print(compare_strings("They found some body.", "They found somebody.")) # calling method that prints the return value

Output:

Please find the attached file.

Learn more:

brainly.com/question/21579839

The compare_strings function is supposed to compare just the alphanumeric content of two strings, ignoring

To help insure that an HTML document renders well in many web browsers it is important to included which at top of file

Answers

Answer:

<!DOCTYPE html>

Explanation:

This tells the browseer that the code is HTML5 format

A sum of JS300 is divided in the ratio 2:3.
Calculate the amount of the LARGER share.
(B)
JSISO
(D)
JS 240​

Answers

Answer:

240

Explanation:

xamine the following output:

Reply from 64.78.193.84: bytes=32 time=86ms TTL=115
Reply from 64.78.193.84: bytes=32 time=43ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=47ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=73ms TTL=115
Reply from 64.78.193.84: bytes=32 time=46ms TTL=115

Which of the following utilities produced this output?

Answers

The output provided appears to be from the "ping" utility.

How is this so?

Ping is a network diagnostic   tool used to test the connectivity between two network devices,typically using the Internet Control Message Protocol (ICMP).

In this case, the output shows   the successful replies received from the IP address 64.78.193.84,along with the response time and time-to-live (TTL) value.

Ping is commonly used to troubleshoot   network connectivity issues and measureround-trip times to a specific destination.

Learn more about utilities  at:

https://brainly.com/question/30049978

#SPJ1

Print air_temperature with 1 decimal point followed by C.

Sample output with input: 36.4158102
36.4C

Answers

Answer:

printf("%.1f", air_temperature);

Explanation:

which of the following is a proprietary OS for desktop and loptop computers?

conguardelation

Answers

Answer:

windows

Explanation:

windows is the best operating system for desktop and laptop

1. What three ranges must you have to complete an advanced filter in Excel where you copy the results to a different location? Explain each range.

2. What are three advantages of converting a range in Excel to a table?


No false answers please.

Answers

Data sorting is an essential component of analyzing data. Arranging data enables you to better perceive and comprehend it, organize and locate the information that requires, and arrive at more educated decisions.

Filtering: If your worksheet includes a lot of content, it can be tough to discover information fast. Filters can be used to reduce the amount of Data in the spreadsheet so that really can only see what you are going to need.

Filter a set of data

Choose any cell in the range.

Choose Data > Filter.

Creating dynamic naming ranges, changing formula recommendations and pasting formulas throughout and sorting that information can all be avoided by transferring data to a table.

Learn more about data, here:

https://brainly.com/question/10980404

#SPJ1

Please need help ASAP will mark brainliest

Please need help ASAP will mark brainliest

Answers

Answer:

x8 negakation with a false

Question #1
Dropdown
You have written many programs that get values from the user. Complete the code to get the user's response.
answer= ______ ("What is your name?")

Answers

Answer:

input("What is your name?")

The input function prompts the user to enter a value, and then returns the value as a string.

Here's an example of how you might use it in a program:

name = input("What is your name?")

print("Hello, " + name + "!")

This will print out a message like "Hello, John!" if the user enters "John" as their name.

How to use the screen mirroring Samsung TV app

Answers

If you want to show what's on your phone or computer screen on a Samsung TV, you can do it by these steps:

Make sure both your Samsung TV and the thing you want to copy are using the same Wi-Fi.

What is  screen mirroring

The step also includes: To get to the main menu on your Samsung TV, just press the "Home" button on your remote.

The  screen mirroring is Copying or making a duplicate of something. They are repeating each other's words to try to fix the problem between them. This is the way to show what is on your computer or phone screen on another screen by using wireless connection.

Learn more about  screen mirroring from

https://brainly.com/question/31663009

#SPJ1

(a) Write a program which calculates and displays the obtained marks, percentage in six subjects and assigns grades based on percentage obtained by a student.
i. if the percentage is above 90, assign grade A
ii. if the percentage is above 75, assign grade B+
iii. if the percentage is above 70, assign grade B
iv. if the percentage is above 65, assign grade C+
v. if the percentage is above 60, assign grade C
vi. if the percentage is above 55, assign grade D+
vii. if the percentage is less than 50, assign grade F
(Hint: using logical operators)
c++ programming

Answers

Answer:

The program in C++ is as follows:

#include <iostream>

using namespace std;

int main(){

   int scores[6];

   int sum =0;

   string grade;

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

       cin>>scores[i];

       sum+=scores[i];    }

   double percent = sum/6.0;

   if(percent > 90){        grade ="A";    }

   else if(percent>75){        grade ="B+";    }

   else if(percent>70){        grade ="B";    }

   else if(percent>65){        grade ="C+";    }

   else if(percent>60){        grade ="C";    }

   else if(percent>55){        grade ="D+";    }

   else if(percent<50){        grade ="F";    }

   cout<<grade;

   return 0;

}

Explanation:

This declares the 6 scores using an array

   int scores[6];

This initializes the sum of all scores to 0

   int sum =0;

This declares the grade as string

   string grade;

This iterates through the scores

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

This gets input for each score

       cin>>scores[i];

This adds up the scores

       sum+=scores[i];    }

This calculates the percentage

   double percent = sum/6.0;

The following if statements determine the grade

   if(percent > 90){        grade ="A";    }

   else if(percent>75){        grade ="B+";    }

   else if(percent>70){        grade ="B";    }

   else if(percent>65){        grade ="C+";    }

   else if(percent>60){        grade ="C";    }

   else if(percent>55){        grade ="D+";    }

   else if(percent<50){        grade ="F";    }

This prints the grade

   cout<<grade;

Need help please asapp

Need help please asapp

Answers

Answer:

B

Explanation:

0.05 is the decimal form of 5%

So the sale amount times 0.05 will give the tax amount

Hope this helps!

You are a sports writer and are writing about the world legend mushball tournament. And you are doing an article on the 2 wildcard teams the 2 teams with the best record who are not. Division? Leaders according to. The table shown which two teams are the wild card teams?

Answers

The two teams are not division leaders, but their records are impressive enough to get them to participate in the tournament. The teams' records are as follows: Team C with 8-3 record and Team D with a 7-4 record. These teams are the second-best teams in their respective divisions, and that is what gets them a spot in the tournament.

The table presented depicts a ranking of teams for a particular tournament. Wildcard teams are teams that do not lead their divisions but have the best records; they get to participate in the tournament. In this case, we will determine the two wildcard teams and their records based on the table.  

The wild card teams in the world legend mushball tournament are Team C and Team D.Team C and Team D are the two wildcard teams in the tournament. They are selected based on their record, as shown in the table. Wildcard teams are often determined by the records of the teams.

The two teams are not division leaders, but their records are impressive enough to get them to participate in the tournament. The teams' records are as follows: Team C with 8-3 record and Team D with a 7-4 record. These teams are the second-best teams in their respective divisions, and that is what gets them a spot in the tournament.

The wildcard teams offer a chance to other teams that may not have made the playoffs a chance to show their skills. The top team in each division automatically qualifies for the playoffs, and the other spots go to the wild card teams. Wild card teams are often the teams that show resilience and a fighting spirit; they do not give up easily and always give their best.

For more such questions on tournament, click on:

https://brainly.com/question/28550772

#SPJ8

Explain the importance of internal and external communication when managing a cyber-attack.

Answers

When managing a cyber-attack, effective communication is crucial for mitigating the attack's impact and minimizing damage to the organization's reputation and operations. Both internal and external communication plays a significant role in managing a cyber-attack, and their importance can be explained as follows:

Internal Communication: Internal communication is vital for ensuring that everyone in the organization is aware of the cyber-attack, its impact, and their roles and responsibilities in managing the incident. Some key aspects of internal communication during a cyber-attack include:

Rapid communication: The internal communication channels should be well-established and tested regularly, to ensure that information can be disseminated quickly and accurately in the event of an attack.

Coordination: Internal communication helps to ensure that different teams and stakeholders are working together effectively to respond to the attack. For example, the IT team may need to work closely with the legal team to address any legal implications of the attack.

Empowerment: Clear and effective internal communication can help to empower employees to take the necessary actions to protect the organization's systems and data. For example, employees may need to be instructed to change their passwords or avoid opening suspicious emails.

External Communication: External communication is equally important, as it helps to maintain trust and transparency with stakeholders outside of the organization. Some key aspects of external communication during a cyber-attack include:

Crisis management: External communication helps to manage the crisis by communicating with stakeholders such as customers, partners, regulators, and the media. It's essential to be transparent about the attack and provide regular updates on the organization's response.

Reputation management: The organization's reputation may be at risk during a cyber-attack, and external communication can help to mitigate this risk. For example, prompt communication can demonstrate that the organization is taking the attack seriously and working to protect its customers and partners.

Legal compliance: External communication may be required by law or regulatory bodies. Failure to communicate promptly and effectively can result in legal and financial penalties.

In summary, effective communication, both internal and external, is essential for managing a cyber-attack. It helps to coordinate the response, empower employees, manage the crisis, maintain the organization's reputation, and comply with legal and regulatory requirements.

What year was html released?

Answers

2007 because I said so

Answer:

1999

Explanation:

Hey guys add me on TT yourstrulyyeva

Answers

Whatever tt is sheeeeeeszh

Answer:

Sorry if i'm a boomer but what is "TT"?

how to write a code that determines if a number is odd or even?
the code should start with a variable declaration

Answers

Answer:

//code in c++

#include <iostream>

using  namespace std;

int main() {

   int a;

   cin>>a;

   if(a%2==0){

       cout<<"Even number";

   }

   else{

       cout<<"Odd number";

   }

return 0;

Explanation:

What list will be referenced by the variable list_strip after the following code executes?

Answers

The list referenced by the variable list_strip after the code executes will be [1, 2, 3, 4], as list_strip was created as a copy of list_org, with list_org.copy(), and then the last element of the list was removed with list_strip.pop().

What is code executes?

Code executes instructions written in a programming language to perform a specific task or set of tasks. It is the process that carries out the instructions in a computer program. Code is written in a programming language, such as C++, Java, or  Python, by a programmer using a text editor or other development environment. The code is then compiled into a format that is executable by the computer, and then executed, or run, to perform the desired tasks.

list_org = [1, 2, 3, 4, 5]
list_strip = list_org.copy()
list_strip.pop()
The list referenced by the variable list_strip after the code executes will be [1, 2, 3, 4], as list_strip was created as a copy of list_org, with list_org.copy(), and then the last element of the list was removed with list_strip.pop().

To learn more about code executes
https://brainly.com/question/28224061
#SPJ4

Write algorithm to make instant noodles​

Answers

Ramen Noodle soup algorithm:

1. Take a pan and put water in it until it is halfway full.

2. Put a third of a cup of frozen vegetables (your choice!) into the pan.

3. Put the pan on the stove.

4. Turn on the stove.

5. Get a package of Top Ramen Noodles.

6. Take a coffee cup (this is a Java course!) and pound on the package until the noodles are broken up.

8. Open the Ramen Noodle package and dump the crushed noodles into the pan.

9. Wait until the noodles are mushy. Then turn the stove off.

11. Add the flavor pack.

12. Stir until the flavor pack is dissolved in the soup.

13. If cheese is wanted, add three teaspoons of cheese to pan.

//Declare variables to hold
//user's menu selection

translate this to pseudocode code?

Answers

The provided pseudocode is a simple and original representation of declaring a variable to hold the user's menu selection. It prompts the user for input, accepts and stores the value in the `menuSelection` variable. This pseudocode is plagiarism-free and can be used as a basis for further program logic.

Here's the pseudocode to declare variables to hold the user's menu selection:

```DECLARE menuSelection AS INTEGER

// Prompt the user for menu selection

DISPLAY "Please enter your menu selection: "

ACCEPT menu Selection

// Rest of the program logic...

```In this pseudocode, we declare a variable called `menuSelection` to hold the user's menu choice. It is declared as an integer type, assuming the menu options are represented by integers.

After declaring the variable, the program can prompt the user to enter their menu selection. The `DISPLAY` statement is used to show a message to the user, asking for their input.

The `ACCEPT` statement is used to receive the user's input and store it in the `menu Selection` variable.

Following this code snippet, you can proceed with the rest of your program logic, using the `menu Selection` variable as needed.

Regarding the main answer, the provided pseudocode is original and does not involve any plagiarized content. It is a simple representation of declaring a variable to hold the user's menu selection, which is a common practice in programming.

For more such questions pseudocode,Click on

https://brainly.com/question/24953880

#SPJ8

which of the following network performance metrics is used to represent the theoretical maximum rate of data transfer from a source to a destination in a given amount of time under ideal conditions?

Answers

In order to describe the maximum possible rate that data can transfer between a source and a destination in a specific time period under ideal circumstances, bandwidth is  the next network performance statistic.

What is a network defined as?

Two or more computers connected together to share data (such printers and Dvds), exchange files, or enable electronic communications make up a network. A network's connections to its computers can be made by cables, telephone line, radiofrequency, satellites, or infrared laser beams.

The maximum pace of data transport across a particular network is known as its bandwidth. The amount of data that could be carried from a source into a destination under perfect circumstances is measured by bandwidth, which is now more of a general theory. How much data is actually successfully transported from a source to an destination is measured by throughput. As a result, we frequently gauge throughput rather than bandwidth to check on the efficiency of our network.

The period of time it takes or data to travel across a network is known as latency. Typically, that a round time from such a computer to the far and back is how network latency is measured. A network situation known as jitter happens when data packets are sent over a link with a temporal delay. Any real-time apps you could be providing on your networks, such as video conferencing, speech, and virtualization infrastructure clients, suffer greatly from jitter.

To know more about Network visit :
https://brainly.com/question/13102717

#SPJ4

Which parts of a presentation should be the most general

Answers

Answer:

The introduction is the most important part of your presentation as it sets the tone for the entire presentation. Its primary purpose is to capture the attention of the audience, usually within the first 15 seconds. Make those first few words count! There are many styles you can use to get the audience's attention.

Explanation:

As you learned in the Learning Activity titled, "What is a Database?" databases are used by organizations to manage large amounts of data. Assume you are the database administrator for a small company and you have been asked to merge data from a new supplier into your inventory. Based on the various types of databases discussed in the Learning Activity titled, "Knowing Databases", what type of database would be most appropriate for your company and why? What factors would influence your decision? What are some considerations you would consider if you want to ensure your database is scalable and could support future growth?​

Answers

For the given scenario, a relational database would be the most suitable choice

How can this be used?

Structured data management and intricate interconnections between entities, such as suppliers and inventory items, are efficiently handled by relational databases.

The decision is being influenced by various factors such as the coherence of data, its reliability, and the potential to execute intricate inquiries. In order to guarantee the potential for expansion and accommodate future development, it is crucial to make thoughtful decisions such as selecting a database management system that facilitates horizontal scaling, enhancing the design of the schema, improving indexing and query efficiency, and supervising the system for performance adjustments and capacity forecasting.

Implementing these measures would facilitate the effective management of growing amounts of data without compromising scalability.


Read more about relational database here:

https://brainly.com/question/13262352
#SPJ1

In a working diode, the junction Diode

Answers

A p-n junction diode is a basic semiconductor device that controls the flow of electric current in a circuit. It has a positive (p) side and a negative (n) side created by adding impurities to each side of a silicon semiconductor. The symbol for a p-n junction diode is a triangle pointing to a line. It flows electric current positive and negative

which is the best monitor and why?​

Answers

Answer:

dksjnejknfkjssjhflkjZfijthajwhj

Explanation:

fjnskjenkjnewkjnfkjs

how can you stretch or skew an object in paint

Answers

Press Ctrl + Shift + Z (Rotate/Zoom). Rotate the roller-ball control about a bit. The outer ring rotates the layer.

Answer:

Press Ctrl + Shift + Z (Rotate/Zoom). Rotate the roller-ball control about a bit. The outer ring rotates the layer.

Explanation:

What is one reason why a business may want to move entirely online?
O
A. To double the number of employees
B. To focus on a global market
C. To avoid paying state and local taxes
D. To limit the number of items in their inventory

Answers

Answer:

To focus on global market

Explanation:

Hope this helps! :)

How would you spend your days if you had unlimited resources?

Answers

The ways that I spend my days if you had unlimited resources by helping the needy around me and living my life in a Godly way.

Are all human resources unlimited?

Human wants are said to be consistently changing and infinite, but the resources are said to be always there to satisfy them as they are finite.

Note that The resources cannot be more than the amount of human and natural resources that is available and thus The ways that I spend my days if you had unlimited resources by helping the needy around me and living my life in a Godly way.

Learn more about unlimited resources from

https://brainly.com/question/22964679

#SPJ1  

Other Questions
At the beginning of the day, the temperature was 3 degrees below zero Celsius at the end day the temperature was 5 degrees above zero Celsius. Over the day, how many degrees did the temperature change ? Suppose the graph of a cubic polynomial function has the same zeroes and passes through the coordinate (0, 5).Describe the steps for writing the equation of this cubic polynomial function. Plz answer me will mark as brainliest The red sizing bead in this image is 10um in diameter. What is the length of a chloroplast? a20um b100um c2um d1um e10um How do the racial demographics of executives compare to the racial demographics of the U.S. as a whole? While profound differences between countries complicate the hrm function, the major tasks still include staffing policy, management training and development, performance appraisal, and Holding all other things constant, which of the following represents a cash outflow? O The company sells an old machine. O The company increases accounts payable. O The company pays back notes payable. O The company receives a bank loan. As of crime Machares DNTE September October 1 5210 52.05 5220 November 1 52 20 5238 It costs the elevator $0.0S/Bu/month to store the grain. An elevator purchases grain from a farmer on September 1 at 4 cents under the hedges. On November 1 he has a buyer at one cent over the spot price. He thus spot price on that day. He has no immediate buyer, so he puts it into storage and sells his grain at that price and immediately liquidates his hedge. What is the elevator's hedging position? a. the elevator short hedges from September 1 to October 1 b. the elevator long hedges from September 1 to October 1 c. the elevator short hedges from September 1 to November 1 d. the elevator long hedges from September 1 to November 1 e. there is no need for the elevator to hedge when preparing a segment margin income statement: multiple select question. common fixed expenses are excluded from the statement. traceable fixed expenses are deducted from contribution margin. fixed manufacturing costs are included in cost of goods sold. cost of goods sold consists of only variable manufacturing costs. a nurse is teaching an older adult client who is on bedrest following development of deep vein thrombosis about methods ot increase persitalsis Humans are responsible for removing large amounts of the Earth's naturally-occurring forests. This process is called? A. forestry B. urbanization C. deforestationD. ecology What city did general sherman take that changed the political outlook during the war?. A cleverly worded statement that reveals truth is an example ofirony.aphorism.symbolism.Ohyperbole. All but one of the following statements is true with regard to the blood testis barrier. Select the one statement that is false. Group of answer choices The barrier is made up of white blood cells in the testis. The barrier separates the spermatocytes dividing by meiosis from exposing their unique antigens to the immune system. The barrier marks the border between the basal compartment and the adluminal compartment. Sustentocytes form the barrier with tight junctions. Consider a black body of surface area 20.0 cm and temperature 5000 K . (h) 1.00 mm (infrared light or a microwave) what is the surface area of this figure? For the following reaction, 32.5 grams of aluminum oxide are allowed to react with 98.6 grams of sulfuric acid . aluminum oxide ( s ) sulfuric acid ( aq ) aluminum sulfate ( aq ) water ( l ) What is the maximum amount of aluminum sulfate that can be formed In how much time will the simple interest of 3,500 at the rate of 9% per annum be the same as the simple interest of 4,000 at 10.5% per annum for 4 years?A. 5 yearsB. 4.5 yearsC. 5.33 yearsD. 6.3 years :::A construction company needs to remove5 1/6tons of dirt from a construction site. They can remove 5/9 tons of dit each hour. What is the total number of hoursit will take to remove the dirt?Write your answer as a mixed number in simplest form. Jjsjsjsjssksksksksjsjsjsj can anyone help me please??? its due the tenth and i need help