Add my epic games account "Lil Carr OXB" and if that not work, then "swish4444"
Or on Xbox "Lil Carr OXB" Thanks.

Answers

Answer 1

Answer:

-_________________________________-

Explanation:

-__________________________________________________________-

Answer 2

Answer:

okExplanation:


Related Questions

Which of the following is necessary to appreciate features provided by software applications?
a package
O a basic understanding
O a basis of comparison
O coding concepts

Answers

Answer: a basic understanding

Explanation:

In other to appreciate the features that an application has, one must have a basic understanding of what the software is meant to do. That way, when the software does this duty, the person will recognize it and appreciate the software.

For instance, a person who does not understand the basic premise of Quickbooks will not be able to appreciate the various features provided by Quickbooks to make accounting easier for small to medium businesses.

Implement a class Clock whose getHours and getMinutes methods return the current time at your location. (Call java.time.LocalTime.now().toString() and extract the time from that string.) Also provide a getTime method that returns a string with the hours and minutes by calling the getHours and getMinutes methods. Provide a subclass WorldClock whose constructor accepts a time offset. For example, if you live in California, a new WorldClock(3) should show the time in New York, three time zones ahead. Which methods did you override

Answers

Answer:

Explanation:

The following code was written in Java. It uses the LocalTime import to detect the current time. Then it creates a getHours, getMinutes, and getTime method to correctly print out only the hours and minutes in a simple format. Then it does the same for the WorldClock subclass which takes in the time offset as an int parameter and adds that to the hours in your own timezone.

class Clock {

   public String getHours() {

       String hours = java.time.LocalTime.now().toString().substring(0,2);

       return hours;

   }

   public String getMinutes() {

       String min = java.time.LocalTime.now().toString().substring(3,5);

       return min;

   }

   public String getTime() {

       String time = getHours() + ":" + getMinutes();

       return time;

   }

}

class WorldClock extends Clock {

   int timeZone = 0;

   public WorldClock(int timeZone) {

       super();

       this.timeZone = timeZone;

   }

   public String getHours() {

       String hours = String.valueOf(Integer.parseInt(super.getHours()) + 3);

       return hours;

   }

   public String getTime() {

       String time = getHours() + ":" + super.getMinutes();

       return time;

   }

}

class Test {

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

       Clock myClock = new Clock();

       System.out.println("My Time: " + myClock.getTime());

       WorldClock worldClock = new WorldClock(3);

       System.out.println("My Time + 3: " + worldClock.getTime());

   }

}

Suppose you are working as an administrative assistant at a small law firm. Your boss has asked you to send an invitation out to all employees about the upcoming holiday party. You would like to spruce up the invitation with a few festive images and a fancy border. Which file format would allow you to create a visually appealing invitation that can easily be e-mailed?

JPEG

PDF

SVG

TIFF

Answers

Answer:

PDF

Explanation:

Just did the assignment egde 2021

Answer:

It is B: PDF, as shown in the picture below

How does social network use message to entertain?

Answers

Answer:

Explanation:

Social Network allows for easy creation of large groups of people that have the same tastes or are looking for the same thing. This allows for easy ways to entertain by providing what these individuals are looking for. Whether it is funny pictures, animal videos, news, celebrity videos, etc. Basically this ability to group individuals together by taste is what allows social networks to entertain through mass messaging in a way that is effective and gets the media in front of huge audiences.

The value at index position x in the first array corresponds to the value at the
same index position in the second array. Initialize the array in (a) with hardcoded random sales values. Using the arrays in (a) and (b) above, write Java
statements to determine and display the highest sales value, and the month in
which it occurred. Use the JOptionPane class to display the output.

Answers

Sure! Here's a Java code snippet that demonstrates how to find the highest sales value and its corresponding month using two arrays and display the output using the JOptionPane class:

import javax.swing.JOptionPane;

public class SalesAnalyzer {

   public static void main(String[] args) {

       // Array with hardcoded random sales values

       double[] sales = {1500.0, 2000.0, 1800.0, 2200.0, 1900.0};

       // Array with corresponding months

       String[] months = {"January", "February", "March", "April", "May"};

       double maxSales = sales[0];

       int maxIndex = 0;

       // Find the highest sales value and its index

       for (int i = 1; i < sales.length; i++) {

           if (sales[i] > maxSales) {

               maxSales = sales[i];

               maxIndex = i;

           }

       }

       // Display the highest sales value and its corresponding month

       String output = "The highest sales value is $" + maxSales +

               " and it occurred in " + months[maxIndex] + ".";

       JOptionPane.showMessageDialog(null, output);

   }

}

Explanation:

The code defines two arrays: sales for the hardcoded random sales values and months for the corresponding months.The variables maxSales and maxIndex are initialized with the first element of the sales array.A loop is used to iterate through the sales array starting from the second element. It compares each value with the current maxSales value and updates maxSales and maxIndex  if a higher value is found.After the loop, the output message is constructed using the highest sales value (maxSales) and its corresponding month from the months array (months[maxIndex]). Finally, the JOptionPane.showMessageDialog() method is used to display the output in a dialog box.

When you run the program, it will display a dialog box showing the highest sales value and the month in which it occurred based on the provided arrays.

For more questions on array, click on:

https://brainly.com/question/28061186

#SPJ8

What yields 2.5? Type casting

Answers

Answer:

5.0/2

Explanation:

I don't do Java, but I do Python. I'm pretty sure the answer to this question is 5.0/2. I'm sorry if I'm wrong.

A student repeated the Styrofoam ball experiment. This time, the student rubbed the plastic rod on the cat's fur, but also rubbed the Styrofoam ball on the fur. How would the outcome of the investigation change if both objects were rubbed on the cat's fur? Use evidence and scientific reasoning to support your answer. Be sure to describe the charges and field interactions for both objects.

Answers

Answer:

Electrostatically charged rods. When you rub the plastic rod (polyethylene terephthalate, glycol modified, or PETG) with the wool cloth, the rod charges negative. When you rub the glass rod with the silk, the rod charges positive. ... The Coulomb, the unit of electrostatic charge, is named after him.

Explanation: i think

Answer:Electrostatically charged rods. When you rub the plastic rod (polyethylene terephthalate, glycol modified, or PETG) with the wool cloth, the rod charges negative. When you rub the glass rod with the silk, the rod charges positive. ... The Coulomb, the unit of electrostatic charge, is named after him.

Explanation:Electrostatically charged rods. When you rub the plastic rod (polyethylene terephthalate, glycol modified, or PETG) with the wool cloth, the rod charges negative. When you rub the glass rod with the silk, the rod charges positive. ... The Coulomb, the unit of electrostatic charge, is named after him.

Four major communication points​

Answers

Answer:

Reading, writing, speaking, and listening are basic communication skills necessary for effective communication

Explanation:

I hope its right

Increase the value of cell c30 by 15%​

Answers

To increase the value of cell C30 by 15%, you can multiply the current value of C30 by 1.15.

To increase the value of cell C30 by 15%, you can follow these steps. First, multiply the current value of C30 by 0.15 to calculate 15% of the value. Then, add this calculated amount to the current value of C30. This can be expressed as C30 + (C30 * 0.15). For example, if the current value of C30 is 100, you would perform the calculation 100 + (100 * 0.15) to get the increased value. In this case, the result would be 115. This method ensures that the value in cell C30 is increased by 15% while retaining the existing value. Adjusting calculations accordingly based on the desired value and spreadsheet software used will allow you to increase the value of cell C30 by 15%.

For more such questions on Cell C30:

https://brainly.com/question/31706410

#SPJ8

Bro how the hell do u do full screen on windows
(LAPTOP. NOT PC.)
f11 does not work, does anyone have a solution?

Answers

Answer:

You'll need to hold down/click f11 and fn at the same time.

If not that, try ctrl + shift + f5.

I can guarantee the first works; not too sure about the second.

Explanation:

Well, it's hotkeys, so...

EDIT: The f5 command does nothing related to full screen, my bad.

Answer:

f11 should work just hold it down or restart your computer and try it again

Explanation:

PLEASE ANSWER SOON I NEED IT TODAY
If you plan on operating several applications at a time, the amount of RAM should be considered when purchasing a computer.

a. True

b. False

Answers

Answer:

true

Explanation:

true because the more ram the more efficient the computer can run, but also depends on what applications you're running.

A .true
Is the answer

At the beginning of the semester, we studied partially filled arrays. This is when the number of elements stored may be less than the maximum number of elements allowed. There are two different ways to keep track of partially filled arrays: 1) use a variable for the numberElements or 2) use a sentinel (terminating} value at the end of elements (remember c-strings?). In the code below, please fill in the details for reading the values into the an array that uses a sentinel value of -1. Complete the showArray function as well.
#include
using namespace std;
void showArray(int array[]);
// ToDo: Code showArray function with one array parameter
int main()
{
const int MAX_SIZE=16;
int array[MAX_SIZE]; // store positive values, using -1 to end the values.
cout <<"Enter up to " << MAX_SIZE-1 << " positive whole numbers, use -1 to stop\n";
//To do: Read the int values and save them in the static array variable.
// When the user enters -1 or the array has no more room, leave the loop..
//To do: store -1 at the end of elements in the array
// Show array function
showArray(array);
return 0;
}
// To do: print out for the array
void showArray(int array[])
{
}

Answers

Answer:

Complete the main as follows:

int num;

cin>>num;

int i = 0;

while(num!=-1 && i <16){

array[i] = num;

cin>>num;

i++;  }

array[i+1] = -1;

The showArray() as follows:

int i =0;

while(array[i]!=0){

   cout<<array[i]<<" ";

   i++;

}

Explanation:

See attachment for complete program where comments are used to explain difficult lines

In "PUBATTLEGROUNDS” what is the name of the Military Base island?

Answers

Answer:

Erangel

Explanation:

Answer:

Erangel

Explanation:

The Military Base is located on the main map known as Erangel. Erangel is the original map in the game and features various landmarks and areas, including the Military Base.

The Military Base is a high-risk area with a significant amount of loot, making it an attractive drop location for players looking for strong weapons and equipment. It is situated on the southern coast of Erangel and is known for its large buildings, warehouses, and military-themed structures.

The Military Base is a popular destination for intense early-game fights due to its high loot density and potential for player encounters.

Hope this helps!

“What is an example of the vocabulary word foreshadow?” This question could be a
a.
Potential question
c.
Flashcards question
b.
Vocabulary definition
d.
Both A and C


Please select the best answer from the choices provided

A
B
C
D

Answers

Answer:

D) Both A and C

Explanation:

Answer:

D

Explanation:

Consider the following two data structures for storing several million words.
I. An array of words, not in any particular order
II. An array of words, sorted in alphabetical order
Which of the following statements most accurately describes the time needed for operations on these data structures?
A. Finding the first word in alphabetical order is faster in I than in II.
B. Inserting a word is faster in II than in I.
C. Finding a given word is faster in II than in I.
D. Finding the longest word is faster in II than in I.

Answers

Answer:

The correct answer is C.

Explanation:

Finding a given word requires the search operation. The search operation is faster in a sorted array compared to an unsorted array. In a sorted array the binary search method is used which runs on logarithmic time while in an unsorted array, there's no other way than linear search which takes O(n) time on the worst case where the required word is not in the array.

The statement which most accurately describes the time needed for operations on these data structures is: C. Finding a given word is faster in II than in I.

What is a binary search?

Binary search can be defined as an efficient algorithm that is designed and developed for searching an element (information) from a sorted list of data, especially by using the run-time complexity of Ο(log n)

Note: n is the total number of elements.

In Computer science, Binary search typically applies the principles of divide and conquer. Thus, to perform a binary search on an array, the array must first be sorted in an alphabetical or ascending order.

In conclusion, the statement which most accurately describes the time needed for operations on these data structures is that, finding a given word is faster in data structure II than in I.

Read more on data structure here: https://brainly.com/question/24268720

g Write a function named vowels that has one parameter and will return two values. Here is how the function works: Use a while loop to determine if the parameter is greater than 1. If it is not greater than 1, do the following: Display a message to the user saying the value must be greater than 1 and to try again. Prompt the user to enter how many numbers there will be. Use a for loop that will use the parameter to repeat the correct number of times (if the parameter is 10, the loop should repeat 10 times). Within this for loop, do the following: Generate a random integer between 65 and 90 Convert this integer to is equivalent capital letter character by using the chr function. If num is the variable with this integer, the conversion is done like this: ch

Answers

10-20-100.40 = my bin =nice

what is work immersion and its nature​

Answers

Work Immersion refers to the subject of the Senior High School Curriculum, which involves hands-on experience or work simulation in which learners can apply their competencies and acquired knowledge relevant to their track.

Given a number count the total number of digits in a number

Answers

Answer:

round up the log of the number

Explanation:

The ¹⁰log of a number gives you the number of digits if you round it up.

You work part-time at a computer repair store. You are building a new computer. A customer has purchased two serial ATA (SATA) hard drives for his computer. In addition, he would like you to add an extra eSATA port that he can use for external drives. In

Answers

Install an eSATA expansion card in the computer to add an extra eSATA port for the customer's external drives.

To fulfill the customer's request of adding an extra eSATA port for external drives, you can install an eSATA expansion card in the computer. This expansion card will provide the necessary connectivity for the customer to connect eSATA devices, such as external hard drives, to the computer.

First, ensure that the computer has an available PCIe slot where the expansion card can be inserted. Open the computer case and locate an empty PCIe slot, typically identified by its size and the number of pins. Carefully align the expansion card with the slot and firmly insert it, ensuring that it is properly seated.

Next, connect the power supply cable of the expansion card, if required. Some expansion cards may require additional power to operate properly, and this is typically provided through a dedicated power connector on the card itself.

Once the card is securely installed, connect the eSATA port cable to the expansion card. The cable should be included with the expansion card or can be purchased separately if needed.

Connect one end of the cable to the eSATA port on the expansion card and the other end to the desired location on the computer case where the customer can easily access it.

After all connections are made, close the computer case, ensuring that it is properly secured. Power on the computer and install any necessary drivers or software for the expansion card, following the instructions provided by the manufacturer.

With the eSATA expansion card installed and configured, the customer will now have an additional eSATA port available on their computer, allowing them to connect external drives and enjoy fast data transfer speeds.

For more question on computer visit:

https://brainly.com/question/30995425

#SPJ8

Christopher was looking at the TV while getting feedback on his opinion essay. What should he do differently? Don't get feedback from a trusted adult. Finish watching his TV show. Make sure the trusted adult likes the show on TV, too. Turn off the TV and face the person who is speaking.

Answers

Answer:

Turn off the TV and face the person who is speaking.

Select the correct answer.
Which graphic file format is used for commercial purposes?
OA.
TIFF
B.
GIF
C. JPG
OD.
PNG
O E.
BMP
Dat

Answers

Answer:

png or jpg

Explanation:

Multimedia Presentation: Mastery Test
Select the correct answer.
Helen wants to use actual voice testimonials of happy employees from her company in her presentation. What is the best way for her to use these
testimonials in the presentation?
OA. She can provide a link in her presentation where the audience can listen to the testimonials.
She can ask the employees to write down their thoughts for the presentation.
She can record the testimonials directly in her presentation.
D. She can read out the testimonials from a transcript.
B.
O C.
Reset
>
Next

Answers

The best way for Helen to use actual voice testimonials of happy employees from her company in her presentation is A) She can provide a link in her presentation where the audience can listen to the testimonials.

Using actual voice testimonials adds authenticity and credibility to Helen's presentation.

By providing a link, she allows the audience to directly hear the employees' voices and genuine expressions of satisfaction.

This approach has several advantages:

1)Audio Engagement: Listening to the testimonials in the employees' own voices creates a more engaging experience for the audience.

The tone, emotions, and enthusiasm conveyed through voice can have a powerful impact, making the testimonials more relatable and persuasive.

2)Employee Representation: By including actual voice testimonials, Helen gives her colleagues an opportunity to have their voices heard and to share their positive experiences.

This approach emphasizes the importance of employee perspectives and allows them to become active participants in the presentation.

3)Convenience and Accessibility: Providing a link allows the audience to access the testimonials at their own convenience.

They can listen to the testimonials during or after the presentation, depending on their preferences.

It also allows for easy sharing and revisiting of the testimonials.

4)Time Management: Including voice testimonials via a link enables Helen to efficiently manage the timing of her presentation.

She can allocate the appropriate time for other aspects of her talk while still giving the audience access to the full testimonials, without the need to rush or omit important information.

For more questions on presentation

https://brainly.com/question/24653274

#SPJ8

Write a program that asks for the user's name, phone number, and address. The program then saves/write all information in a data file (each information in one line) named list.txt. Finally, the program reads the information from the file and displays it on the screen in the following format: Name: User's Name Phone Number: User's Phone Number Address: User's Street Address User's City, State, and Zip Code g

Answers

Answer:

Amazon prime

Explanation:

A client is

a computer that is disconnected from the network.

the same as a server.

a computer that requests a service.

a router.

Answers

Answer:

a computer that requests a service.

Answer:

A computer that requests a service

Explanation:

In computing, a client is a piece of computer hardware or software that accesses a service made available by a server as part of the client–server model of computer networks. The server is often (but not always) on another computer system, in which case the client accesses the service by way of a network.

plz mark as brainliest

Write a recursive method called sumTo that accepts an integer parameter n and returns a real number representing the sum of the first n reciprocals. In other words, sumTo(n) returns (1 1/2 1/3 1/4 ... 1/n). For example, sumTo(2) should return 1.5. The method should return 0.0 if it is passed the value 0 and throw an IllegalArgumentException if it is passed a value less than 0.

Answers

Answer:

Sorry mate I tried it was wrong

Explanation:

Sorry again

Question 5/20
00:07:27
Agile Teams need to comply by the Agile Values and Principles but have flexibility to choose appropriate value-adding practices
Select the correct option(s) and click Submit.
True
False
SUBMIT

Answers

Explanation:

True. Is the true answer

Write a python program to print the square of all numbers from 0 to 10.

Answers

Here is the answer of you question

Answer:

for i in range(11):

    print(i^2)

It goes through printing the square of each number with a range of 11 since 0 is also included

match the following Microsoft Windows 7 ​

Answers

Answer:

Explanation:  will be still function but Microsoft will no longer provide the following: Technical support for any issues

What should a valid website have?

Select one:
a. Cited sources, copyright, and a clear purpose
b. Cited sources, copyright, and a poor design
c. Cited sources, copyright, and colorful images
d. Cited sources, no copyright, and a broad purpose

Answers

Answer:

A. cites sources,copyright,and a clear purpose

. Create an abstract Dollar class with two integer attributes, both of which are non-public (Python programmers - it is understood that there is nothing private in Python but try to not access the attributes directly from outside the classes). The int attributes will represent whole part (or currency note value) and fractional part (or currency coin value) such that 100 fractional parts equals 1 whole part.

Answers

Answer:

Explanation:

The following code is written in Java. It creates the abstract dollar class that has two instance variables for the dollars and the coins that are passed as arguments. The test output can be seen in the picture attached below.

class Dollar {

   int dollars;

   double coin;

   private Dollar(int dollar, int coin) {

       this.dollars = dollar;

       this.coin = Double.valueOf(coin) / 100;

   }

   

}

Other Questions
POD has a project with the following cash flows:YearCash Flows0$243,0001147,4002164,9003130,000The required return is 8.7 percent. What is the profitability index for this project? Which of the following investments had the largest fluctuations overall return over the past eighty years?A) small stocksB) S&P 500C) corporate bondsD) Treasury bills Beasann's Die-Cuts is preparing its cost of goods manufactured schedule at year-end. Beasann's accounting records show the following: The raw materials inventory account had a beginning balance of $13,000 and an ending balance of $17,000. During the year, Beasann purchased $58,000 of direct materials. Direct labour for the year totalled $123,000, while manufacturing overhead amounted to $152,000. The work in process inventory account had a beginning balance of $21,000 and an ending balance of $15,000. Compute the cost of goods manufactured for the year. (Hint: The first step is to calculate the direct materials used during the year.) Beasann's Die Cuts Cost of Goods Manufactured 21000 13000 Beginning work in process inventory Add: Direct materials used Beginning raw materials inventory Purchases of direct materials Direct materials available for use Ending raw materials inventory 58000 71000 17000 54000 Direct materials used Direct labour 123000 Manufacturing overhead 152000 Total manufacturing costs incurred during the period Total manufacturing costs to account for Less: Ending work in process inventory 15000 Cost of goods manufactured Find the area of the shaded region. Leave your answer in terms of pi and in simplest radical form. Chandler decided to go cliff jumping into the lake at his cottage. He started on the cliff at 32 ft above sea level. He jumped for 40 feet! How far below sea level did Chandler end up? What are the four ethical standards in the Institute of Management Accountants Statement of Ethical Professional Practice? Describe the meaning of each of the four standards. How does each of these standards impact planning, directing, and controlling? Kerensky Corporation, a wholesale company, has provided the following data: Sales per period. 1,000 units Selling price.... $35 per unit Variable production cost. $15 per unit Selling expenses........ $5,000 plus 5% of selling price Administrative expenses.. ******* $3,000 plus 10% of selling price The contribution margin ratio is closest to: a. 57% b. 58% c. 42% d. 62% Find the volume of the solid in the first octant bounded by the parabolic cylinder z = 25 x and the plane y = 2. Which of the following statements limitations, prohibitions, and challenges is false?Information may not be classified to prevent embarrassment to the U.S. government Prepare the journal entries to record these transactions on Sheridan Company's books. Sheridan Company uses a periodic inventory system. Feb. 5 6 8 11 Sheridan purchased $12,000 of merchandise from NW Wholesale Company, terms 2/10, n/30, FOB shipping point. The correct company paid freight costs of $160. Sheridan returned $1,400 of the merchandise purchased on February 5. Sheridan paid the balance due to NW Wholesale. Determine and Use Overhead RateThe following selected ledger accounts of Cameron Company are for February (the second month of its accounting year):Materials InventoryFeb. 1 balance63,000February credits226,000February debits208,000Manufacturing OverheadFebruary debits274,400Feb. 1 balance23,200February credits272,700Work in Process InventoryFeb. 1 balance44,800February credits690,000February debits:Direct material190,000Direct Labor303,000Man. overhead272,700Wages PayableFebruary debits387,000Feb. 1 balance90,000February credits354,000Finished Goods InventoryFeb. 1 balance153,000February credits767,400February debits690,000a. Determine the amount of indirect material requisitioned for production during February.$Answerb. How much indirect labor cost was apparently incurred during February?$Answerc. Calculate the manufacturing overhead rate based on direct labor cost.Answer %d. Was manufacturing overhead for February under- or overapplied, and by what amount?Manufacturing overhead was Answer: over-appliedunder-appliedCorrectby $Answere. Was manufacturing overhead for the first two months of the year under- or overapplied, and by what amount?Manufacturing overhead was Answer : over-appliedunder-appliedCorrectby $Answerf. What is the cost of production completed in February?$Answerg. What is the cost of goods sold in February?$Answer All of the following statements concerning personal umbrella liability insurance are correct EXCEPT: The personal umbrella policy is designed primarily to provide liability coverage for catastrophic legal claims or judgments. The personal umbrella policy requires the policyowner to carry certain underlying liability coverages of specified minimum amounts on both the homeowner's policy and the PAP. Personal umbrella liability insurance never provides personal injury coverage for acts such as defamation of character. Aclaim made under an umbrella policy will pay only after the limits of the relevant underlying policy are exhausted. [13-14] Hamilton Company uses job-order costing. Manufacturing overhead is applied using a predetermined rate of 150% of direct labor cost. Any over- or underapplied manufacturing overhead is closed t In the nuclear transmutation represented by Pu(He,n), what is the product? A. uranium-242 B. curium-245 C. curium-242 D. uranium-245 E. uranium-243 Let the current spot rate be $1.25/, and assume that one month from now the spot rate will be either $1.30/ or $1.20/. Let the dollar interest rate be 0.4% per month, and let the euro interest rate be 0.3% per month. Develop a portfolio that replicates the payoff on a one-month euro call option that allows us to buy stocks for a strike price of $1.25/. Develop a portfolio that replicates the payoff of the option. Evaluate the series below: _ (31) Type your answer___ Evaluate the series below: $-(3; 9) Type your answer___ Evaluate the series below using summation properties (8i - 1) Type your answer___ Berea Resources is planning a $75 million capital expenditure program for the coming year. Next year, Berea expects to report to the IRS earnings of $40 million after interest and taxes. The company presently has 25 million shares of common stock issued and outstanding. Dividend payments are expected to increase from the present level of $8 million to $12 million. The company expects its current asset needs to increase from a current level of $23 million to $28 million. Current liabilities, excluding short-term bank borrowings, are expected to increase from $17 million to $21 million. Interest payments are $5 million next year, and long-term debt retirement obligations are $9 million next year. Depreciation next year is expected to be $15 million on the company's financial statements, but the company will report depreciation of $18 million for tax purposes. How much external financing is required by Berea for the coming year? A formula of order 4 for approximating the first derivative of a function gives: f(0) = 0.08248 for h = 1 f(0) = 0.91751 for h = 0.5 By using Richardson's extrapolation on the above values, a better approximation of f'(o) is: Subgame perfection is a refinement of Nash Equilibrium that requiresSelect one:a. perfect and skilled play by all playersb. credibility/rationality at every point/path in the game, regardless of whether those points/paths are actually part of the Nash equilibriumc. focalness in equilibriumd. firms do not cheat on their output agreementse. credibility/rationality only along the equilibrium path The developer for a new filter for filter-tipped cigarettes claims that it leaves less nicotine in the smoke than does the current filter. Because cigarette brands differ in a number of ways, he tests each filter on one cigarette of each of nine brands and records the difference between the nicotine content for the current filter and the new filter. The mean difference for the sample is 1.321 milligrams, and the standard deviation of the differences is s=2.35 mg.A) Carry out a significance test at the 5% level.B) Construct a 90% confidence interval for the mean amount of additional nicotine removed by the new filter.