Answer the questions by using a degree of certainty. Additional responses over the degree of certainty is highly encouraged.
1. Do you think that you are a naughty student in the class?
________________________________________________
2. Can you cook a type of Western food to serve your family dinner?
________________________________________________
3. Do you still remember some advice which your Grade 1st teacher gave you on the first day of the class?
________________________________________________
4. Is it a good idea to change from a big class to a smaller class for your class?
________________________________________________
5. Do you remember the weather forecast on Monday last week?
________________________________________________
6. Do you think you will get A+ by the end of GEP 2?
________________________________________________


Answers

Answer 1

The degree of certainty will be:

1. Low certainty

2. Medium certainty

3. High certainty.

4. High certainty

5. Low certainty

6. Medium certainty

What is the degree of certainty?

1. Do you think that you are a naughty student in the class? Low certainty: I don't think I am a naughty student. I try my best to follow the rules and be respectful to my teachers and classmates.

2. Can you cook a type of Western food to serve your family dinner Medium certainty: I can cook a few basic Western dishes, such as pasta, grilled cheese sandwiches, and scrambled eggs.

3. Do you still remember some advice which your Grade 1st teacher gave you on the first day of the class? High certainty: Yes, I still remember some advice that my Grade 1st teacher gave me on the first day of class.

4. Is it a good idea to change from a big class to a smaller class for your class? High certainty: Yes, I think it is a good idea to change from a big class to a smaller class.

5. Do you remember the weather forecast on Monday last week? Low certainty: I don't remember the weather forecast on Monday last week. I am not very good at remembering weather forecasts.

6. Do you think you will get A+ by the end of GEP 2? Medium certainty: I think I have a good chance of getting an A+ by the end of GEP 2. I am working hard and I am learning a lot. y focused and continue to work hard if I want to achieve my goal.

Learn more about certainty on

https://brainly.com/question/29025325

#SPJ1


Related Questions

a(n) citation is an alphabetical list of all books, magazines, websites, movies, and other works that you refer to in your research paper.

Answers

While the statement accurately describes a citation as a list of references used in a research paper, it is important to clarify that citations not only include an alphabetical list of sources but also provide specific information about each source, such as the author's name, title, publication date, and relevant publication details.

Citations are used to give credit to the original authors or creators of the works cited and to enable readers to locate the sources for further reading or verification. Different citation styles, such as APA, MLA, or Chicago, have specific formats and guidelines for creating citations.

To know more about citations visit

https://brainly.com/question/33623770

#SPJ11

response to your peers, look at the challenges your classmates noted for using heir example input devices. Then, address the following: - How might you approach solving those challenges? - Can you think of another input device that would meet the identified requirements? Would this different device have challenges similar to or different from those of the first device? Overall, which do you believe would be better suited for the identified task? I am choosing my input device as "touchscreen." They can be found on a variety of items such as tablets, phones, laptop, and quite a bit of equipment I work with for calibration. I have touch screen in my car, you can find them in check outs or self ordering restaurant applications. An application that would use a touchscreen for OpenGL would be mobile video games. Graphics can be created using OpenGL for video games and you can control these with touchscreen or see the open world layout created from OpenGL. The libraries necessary for OpenGL for a touch screen would be GLUT(The utility ToolKit), SLD(Simple Direct Media layer, and GLFW(OpenGL Framework necessities). The biggest problem or challenge I discovered when using a touchscreen is the touchscreen is limited to where you touch it based on your finger. It must be a precise input. And if you are not wearing correct gloves you cannot use the touchscreen. The other considerations I would think about is its accessibility. If a user has a mobile disability they may not be able to use the touch screen or the precision the application requires might not be to their benefit.

Answers

One might approach solving the challenges associated with using the Touchscreen input device by performing the following: Use calibration software that helps the device to detect the touch accurately and precisely.

This will help address the problem of precision that was mentioned by the peer. By doing this, the touchscreen's accuracy would be increased and it would be able to register touches even if they were not made in the exact spot where they were expected to be made.For users who have mobile disabilities or who cannot use the touchscreen for various reasons, one could install voice recognition software. By doing so, users would be able to access the device without the need to touch the screen.

This would provide them with greater accessibility and help solve the accessibility issue. One could also consider the use of a stylus or pen as an alternative input device. This would help users who cannot use their fingers for precise input. Additionally, using a stylus or pen would reduce the need for users to wear gloves and still be able to use the touchscreen. An input device that might meet the identified requirements is a digital pen. It has a precision that is higher than that of the finger, and it can be used by people who have disabilities. It has a button that you can use to erase something if you make a mistake.

To know more about calibration software visit :-

https://brainly.com/question/28325954

#SPJ11

The first time the home page is visited, prompt the user for their name. Display the user name entered with an appropriate welcome message on the home page. Store the name entered in local storage. When the user revisits the page, do not prompt for the user name. Instead, obtain the name from local storage before displaying the name with an appropriate welcome message on the home page. Include in the welcome message, the number of times the user has visited the home page.

Answers

To prompt the user for their name the first time they visit a home page and display the name entered with an appropriate welcome message, then store the name entered in local storage, use the following steps: HTML Code:
```html


 
     HomePage
     
     
 
 
     
        function getName() {
          let name = localStorage.getItem("name");
          if(name === null) {
            name = prompt("Please enter your name: ");
            localStorage.setItem("name", name);
          }
          let visitCount = localStorage.getItem("visitCount");
          if(visitCount === null) {
            visitCount = 1;
            localStorage.setItem("visitCount", visitCount);
          }
          else {
            visitCount = parseInt(visitCount) + 1;
            localStorage.setItem("visitCount", visitCount);
          }
          let message = "Welcome " + name + ", you have visited this page " + visitCount + " time(s).";
          document.getElementById("greet").textContent = message;
        }
     
     


     

` at the end of the body tag.

The `localStorage` object is used to store data that persists across browser sessions. The `getItem()` method is used to retrieve data from local storage, while the `setItem()` method is used to store data in local storage. The `parseInt()` function is used to convert a string to an integer.

To know more about HTML visit

https://brainly.com/question/33633142

#SPJ11

To prompt the user for their name the first time they visit a home page and display the name entered with an appropriate welcome message, then store the name entered in local storage, use the following steps: HTML Code:

```html

  HomePage

  function getName() {

         let name = localStorage.getItem("name");

         if(name === null) {

           name = prompt("Please enter your name: ");

           localStorage.setItem("name", name);

         }

         let visitCount = localStorage.getItem("visitCount");

         if(visitCount === null) {

           visitCount = 1;

           localStorage.setItem("visitCount", visitCount);

         }

         else {

           visitCount = parseInt(visitCount) + 1;

           localStorage.setItem("visitCount", visitCount);

         }

         let message = "Welcome " + name + ", you have visited this page " + visitCount + " time(s).";

         document.getElementById("greet").textContent = message;

       }

   

  at the end of the body tag.

The `localStorage` object is used to store data that persists across browser sessions. The `getItem()` method is used to retrieve data from local storage, while the `setItem()` method is used to store data in local storage. The `parseInt()` function is used to convert a string to an integer.

To know more about HTML visit
https://brainly.com/question/32819181
#SPJ11

What is the first thing you should do if you win the lottery?

Answers

If you win the lottery, the first thing you should do is remain calm and take some time to think about your options. Winning a large sum of money can be overwhelming, so it's important to approach it with a clear mind.

Here are some steps you can consider:
1. Keep the news private: It's crucial to keep your win confidential, especially from strangers. This will help protect you from potential scams and unwanted attention.

2. Verify your win: Double-check your lottery ticket and its numbers to ensure that you have indeed won. It's essential to confirm your win before making any major decisions or sharing the news with anyone.

3. Seek professional advice: Consult with financial advisors, accountants, and lawyers who specialize in wealth management and estate planning. They can help you understand the tax implications, manage your newfound wealth, and guide you in making wise financial decisions.

4. Establish a financial plan: Work with your financial advisors to create a comprehensive plan for your winnings. This includes budgeting, investing, and diversifying your assets to ensure long-term financial stability.

5. Pay off debts and obligations: Consider paying off any outstanding debts or obligations you may have. This can provide you with peace of mind and financial freedom moving forward.

6. Set financial goals: Determine your short-term and long-term financial goals. Whether it's buying a house, starting a business, or saving for retirement, establishing clear objectives will help you make informed decisions about your money.

7. Create an emergency fund: Set aside a portion of your winnings as an emergency fund. This will provide a safety net for unexpected expenses or unforeseen circumstances.

8. Give back and share your wealth: Consider donating to charitable organizations or supporting causes that are important to you. Sharing your wealth can bring joy and make a positive impact on the lives of others.

Remember, winning the lottery is a life-changing event, and careful planning and wise financial management are crucial to ensure your newfound wealth brings long-term benefits and security.

More on lottery: https://brainly.com/question/24834093

#SPJ11

Zach is working as a sales rep for a manufacturer earning a straight commission on the sales volume he generates. Part of the satisfaction with his job comes from the fact that he has full control over scheduling his call activity throughout the month. Recently, his employer has introduced a customer relationship management (CRM) system for the salesforce that requires sales reps to input data about their schedule and call activity and that produces valuable information for reps in terms of who to call next and when. The following are concern(s) that Zach might have about the adoption such a system

Group of answer choices

After adoption of the system his sales manager can monitor his activity and identify when he slacks.

After adoption of the system he will have less information about potential customers.

All of the statements are true.

After adoption of the system he will be monitored more AND he will have less information about potential customers.

Answers

The concerns that Zach might have about the adoption of such a system are "After adoption of the system he will be monitored more AND he will have less information about potential customers.

The customer relationship management (CRM) system for the salesforce requires sales reps to input data about their schedule and call activity. This system also produces valuable information for reps in terms of who to call next and when. So, Zach might have a concern that after the adoption of the CRM system, he will be monitored more, and he will have less information about potential customers.

After the implementation of the CRM system, his sales manager can monitor his activity and identify when he slacks. Also, this system will provide Zach with a limited set of information that he can use to identify new potential customers that he might be interested in. Therefore, he might be concerned about the impact of the system on his performance as a sales rep.

To know more about potential customers visit :-

https://brainly.com/question/31034985

#SPJ11

which detail of the setting cause the key conflict in this excerpt?

Answers

In the "Rich People Problem" excerpt by Kevin Kwan, the key conflict arises from a particular detail of the setting—the impending death of Su Yi, the wealthy matriarch of the family.

This detail sets the stage for a power struggle among the family members vying for their share of the massive inheritance.

The conflict stems from the fact that Su Yi's vast fortune is at stake, and each family member wants to secure their position and claim their portion of the inheritance.

Su Yi's imminent demise creates a sense of urgency and competition among the characters. As the family gathers around her, tensions rise as they maneuver and strategize to ensure they receive a significant piece of the inheritance pie.

This creates a palpable atmosphere of greed, envy, and familial discord, as the characters' motivations clash with one another.

The impending death of Su Yi, and the subsequent battle for her wealth, drives the conflict in the story. It highlights the materialistic and competitive nature of the characters, exposing their flaws and the lengths they are willing to go to secure their financial futures.

This central conflict explores themes of wealth, family dynamics, and the ethical implications of inheritance, providing a rich backdrop for the narrative to unfold.

For more such questions matriarch,click on

https://brainly.com/question/14381725

#SPJ8

The probable question may be:

"rich people problem" excerpt by Kevin Kwan

Which detail of the setting cause the key conflict in this excerpt?

how is the chef's chicken sandwich packaged to go? the sandwich is wrapped in a turbochef paper then placed in a tear-away box. the box is sealed with a hot sandwich sticker with flavor marked, careful to not cover the tear-away strip. the sandwich is wrapped in a turbochef paper and sealed with a hot sandwich sticker with flavor marked. the sandwich is wrapped in a cold sandwich wrapper then placed in a clamshell. the box is sealed with a san

Answers

The chef's chicken sandwich is wrapped in TurboChef paper, placed in a tear-away box, and sealed with a hot sandwich sticker. This packaging ensures that the sandwich stays warm, maintains its freshness, and is easy for the customer to open and enjoy.

The chef's chicken sandwich is packaged to go in a specific way to ensure its freshness and presentation. Here's a step-by-step explanation:
1. The sandwich is first wrapped in a TurboChef paper. This type of paper is designed to keep the sandwich warm and prevent it from getting soggy.

2. Next, the wrapped sandwich is placed in a tear-away box. This box is convenient for customers as they can easily open it when they're ready to eat.

3. To secure the box, a hot sandwich sticker is used. This sticker not only seals the box but also indicates the flavor of the sandwich. It is important to place the sticker carefully so that it doesn't cover the tear-away strip, which allows customers to open the box easily.

More on chicken sandwich: https://brainly.com/question/31055817

#SPJ11

the belief that people with voyeurism are seeking to gain power over others by their actions is a _____ perspective.

Answers

The belief that people with voyeurism are seeking to gain power over others by their actions is a power-oriented perspective.


Explanation:A voyeur is a person who derives sexual satisfaction from observing others secretly, particularly when they are undressing, having sex, or engaging in other intimate acts. Voyeurism is regarded as a type of paraphilia in the Diagnostic and Statistical Manual of Mental Disorders (DSM-5).A power-oriented perspective is the belief that people with voyeurism are seeking to gain power over others by their actions. In simple terms, voyeurism is about exerting power or control over others by spying on them.

As a result, individuals who practice voyeurism are attempting to gain control over the subject by making them feel exposed or vulnerable.It's worth noting that power and control are two of the primary motivators for voyeurs. The act of watching someone, particularly without their consent or awareness, gives voyeurs a sense of control over their environment and those around them.

To know more about Voyeurism visit

https://brainly.com/question/33633705

#SPJ11

When advertisers consider running ads in American Life magazine, they have the option of buying geographic and demographic editions as well as the national edition. For instance, they can choose from editions targeted at professionals and managers, homeowners, working women, and people aged 50 and older. In addition, they are offered editions for 8 geographical regions and for the top 20 metropolitan areas. American Life also offers multiple-page discounts for advertisers buying four or more consecutive pages in any one edition, as well as other volume discounts.
The basic rate to reach 2,847,600 readers in its national edition with a full-page, four-color advertisement is $91,300. The basic rate to reach the same 2,847,600 nationwide readers with a single-column, black-and-white ad is $31,300.
(Scenario 12-2) Each medium under consideration in a media plan must be scrutinized for the efficiency with which it performs. In other words, an advertiser might select American Life because it delivers the largest target audiences at the lowest cost. What is the term to describe this?

Group of answer choices
price/cost transparency
cost per thousand
cost per rating point
net promoter score

Answers

the CPM for the full-page, four-color advertisement in American Life magazine is:CPM = ($91,300 ÷ 2,847,600) × 1,000CPM = $32 The term that describes an advertiser's choice to select American Life because it delivers the largest target audiences at the lowest cost is Cost per Thousand (CPM).

Cost per Thousand (CPM) refers to the cost of advertising per one thousand impressions. The M in CPM represents the Roman numeral for 1,000. CPM, also known as cost per mille, is a metric that calculates the expense of an ad per 1,000 views or clicks. It assists advertisers in comparing the costs of different ad types and formats, as well as evaluating the relative cost-effectiveness of various advertising channels.

The formula for calculating CPM is: CPM = (Cost of Ad ÷ Number of Impressions) × 1,000In the given scenario, American Life magazine's basic rate to reach 2,847,600 readers in its national edition with a full-page, four-color advertisement is $91,300.

To know more about Cost per Thousand visit :-

https://brainly.com/question/31135783

#SPJ11

Choose the answer that is written correctly & shows the correct capitalization

A) Raphael said, "She plays the drums very well."
B) He said "that every day this tuba seems heavier!"
C) "Should we wear our band uniforms tonight, asked Beatrix?"
D) The band teacher said "That the cymbals should be hit hard."​

Answers

Answer:

a) Raphael said, "She plays the drums very well."

Explanation:

out of all of the choice, this one has the correct writing and capitalization; in answer b, the first quote mark comes a word early, and there should be a comma after “said”, in answer c, the quote should end after tonight, and the question mark should come after tonight, and in answer d, “that” should be lowercase, the quote should begin at ‘the”, and there should be a comma after “that”

What do you do if there are two numbers in "the middle" when you are finding the mediant Aod the rwo mumbers in the nidole and then wisiae by two. Pick your favorite number

Answers

When finding the median and there are two numbers in the middle, you calculate the median by taking the average of those two numbers. To do this, add the two middle numbers together and divide the sum by 2. This will give you the median value.

For example, let's say we have the following set of numbers: 1, 3, 5, 7. In this case, the two middle numbers are 3 and 5. To find the median, we add these two numbers (3 + 5 = 8) and divide by 2. The median would then be 8/2 = 4.

So, in summary, when there are two numbers in the middle, you find the median by adding them together and dividing by 2.

To know more about median
Visit https://brainly.com/question/33627644
#SPJ11

: Which ONE of the following statements is TRUE? a. A urine test that is negative for ketones may indicate uncontrolled diabetes. b. The pH of urine is generally increased in patients with a urinary tract infection. c. Urinary tract infections can be diagnosed from a urine test that is positive for urobilinogen. d. Glycosuria commonly occurs in patients who are dehydrated. e. Conjugated bilirubin is normally present in the urine whereas unconjugated bilirubin is usually at

Answers

The following statement that is TRUE is : b. The pH of urine is generally increased in patients with a urinary tract infection.

What is a urinary tract infection?
A urinary tract infection (UTI) is a bacterial infection that occurs in any part of the urinary system, including the kidneys, bladder, ureters, and urethra. The most frequent cause of UTIs are bacteria, and they are generally treated with antibiotics.UTIs are most common in females and may cause symptoms such as a burning sensation when urinating, frequent urination, and cloudy urine. A urine test, on the other hand, may be used to diagnose UTIs.

A UTI is diagnosed based on the results of a urine test that shows the presence of white blood cells and bacteria.A normal urine pH range is 4.5 to 7.8. The pH of urine that is generally increased in patients with a urinary tract infection. This is because the presence of bacteria raises the urine's pH. The alkaline pH may assist bacteria in adhering to the urinary tract's epithelial cells. The urine pH, on the other hand, may not necessarily indicate a UTI. It can be raised or lowered by a variety of factors.\

To know more about infection visit

https://brainly.com/question/33633200

#SPJ11

The following statement that is TRUE is : b. The pH of urine is generally increased in patients with a urinary tract infection.

What is a urinary tract infection?
A urinary tract infection (UTI) is a bacterial infection that occurs in any part of the urinary system, including the kidneys, bladder, ureters, and urethra. The most frequent cause of UTIs are bacteria, and they are generally treated with antibiotics.UTIs are most common in females and may cause symptoms such as a burning sensation when urinating, frequent urination, and cloudy urine. A urine test, on the other hand, may be used to diagnose UTIs.

A UTI is diagnosed based on the results of a urine test that shows the presence of white blood cells and bacteria.A normal urine pH range is 4.5 to 7.8. The pH of urine that is generally increased in patients with a urinary tract infection. This is because the presence of bacteria raises the urine's pH. The alkaline pH may assist bacteria in adhering to the urinary tract's epithelial cells. The urine pH, on the other hand, may not necessarily indicate a UTI. It can be raised or lowered by a variety of factors.

To know more about infection visit
https://brainly.com/question/29251595
#SPJ11

Other Questions
Find y" by implicit differentiation.cos(y) + sin(x) = 1 A compound consisting of carbon and hydrogen consists of 67.90%carbon by mass. If the compound is measure to have a mass of 37.897Mg, how many grams of hydrogen are present in the compound? A split-plot design is also known as a:counterbalanced designmixed designTukey HSDblock design In this lab activity, you are required to design a form and answer four questions. Flight ticket search form You are required to design a form similar to Figure 1 that allows users to search for their flight tickets. The figure is created using a wire framing tool. Your HTML form might look (visually) different than what is shown in the picture. Make sure that the form functionality works. Later, we can improve the visual appearance of your form with CSS! Make sure to include the following requirements in your form design: - Add a logo image of your choice to the form. Store your image in a folder in your project called images and use the relative addressing to add the image to your Website. - Add fieldsets and legends for "flight information" and "personal information". - "From" and "To" fields - user must select the source and destination cities. - Depart and arrival dates are mandatory. The start signs shown beside the text indicate the mandatory fields. Do not worry about the color and use a black start or replace it with the "required" text in front of the field. - The default value for the number of adults is set to 1 . Use the value attribute to set the default value. - The minimum number allowed for adults must be 1 an the maximum is 10. - The default value for the number of children is set to 0 . The minimum number allowed for children must be 0 . - Phone number must show the correct number format as a place holder. - Input value for phone number must be validated with a pattern that you will provide. You can check your course slides or code samples in Blackboard to find a valid regular expression for a phone number. - Define a maximum allowed text size for the email field. Optional step - Define a pattern for a valid email address. You can use Web search or your course slides to find a valid pattern for an email! - Search button must take you to another webpage, e.g., result.html. You can create a new page called result.html with a custom content. - Use a method that appends user inputs into the URL. - Clear button must reset all fields in the form Make sure to all the code in a proper HTML format. For example, include a proper head, body, meta tags, semantic tags, and use indentation to make your code clear to read. Feel free to be creative and add additional elements to the form! Do not forget to validate your code before submitting it. Figure 1 - A prototype for the search form Questions 1. What is the difference between GET and POST methods in a HTML form? 2. What is the purpose of an "action" attribute in a form? Give examples of defining two different actions. 3. What is the usage of the "name" attribute for form inputs? 4. When does the default form validation happen? When user enters data or when the form submit is called? Submission Include all your project files into a folder and Zip them. Submit a Zip file and a Word document containing your answer to the questions in Blackboard. Calculate the storage size of image ( uncompressing ) in Gbyte for each True Color image, Note that the dimensions of image 512 X3 512 a piece of magnesium metal gradually forms an outside layer of magnesium oxide when exposed to the air. the class of this reaction is the landers corporation needs to raise $1.20 million of debt on a 5-year issue. if it places the bonds privately, the interest rate will be 8 percent. twenty thousand dollars in out-of-pocket costs will be incurred. for a public issue, the interest rate will be 8 percent, and the underwriting spread will be 5 percent. there will be $100,000 in out-of-pocket costs. assume interest on the debt is paid semiannually, and the debt will be outstanding for the full 5-year period, at which time it will be repaid. use appendix b and appendix d for an approximate answer but calculate your final answer using the formula and financial calculator methods. A line passes through the points P(4,7,7) and Q(1,1,1). Find the standard parametric equations for the line, written using the base point P(4,7,7) and the components of the vector PQ. A company gets trade credit from its supplier. The company purchases $1000 of goods. Formula for cost of not taking discount = k=d%/(100%-d%) x 365/(f(date) d(date)) a. It receives terms 2/15, net 35 days. What will they pay in 5 days? Using the formula, calculate the annual cost of not taking the discount. b. Calculate the annual cost of not taking the discount for the following options and pick the better option for the company and explain why. 2/10, net 20 2/10, net 40 When Emotional reaction overcomes reason, managers are subjecttoBiased decision making.Emotional hijack.Emotional IntellegenceAll of the above. Which of the following refers to the proportion of the population that is diseased during a specified duration of time, such as the year 2017?a. Incidence rateb. Cumulative incidencec. Point prevalenced. Period prevalence Which of the following statements regarding the Capital Allocation Line (CAL) is false? Multiple Choice The CAL determines the optimal portfolio of a risk-averse investor. The slope of the CAL equals the increase in the expected return of the complete portfolio per unit of additional standard deviation. The slope of the CAL is equal to the Sharpe ratio of the risky portfolio. The CAL shows feasible risk-return combinations. the derived demand for an input will rise when it is highly productive in ______. (check all that apply.) Assume that adults have 1Q scores that are normally distributed with a mean of 99.7 and a standard deviation of 18.7. Find the probability that a randomly selected adult has an 1Q greater than 135.0. (Hint Draw a graph.) The probabily that a randomly nolected adul from this group has an 10 greater than 135.0 is (Round to four decimal places as needed.) You are preparing a free cash flow analysis for Jensen Corporation. The net working capital charge for year three of a five-year cash flow proforma is derived from? A. The difference in net working capital between year two and year one B. The difference in current assets between year two and year one C. The difference in net working capital between year three and year two D. Current assets in year four less current liabilities in year three Which of the following are true about the ethereum blockchain? a. The ethereum blockchain consists of a set of blocks that are linked in a tree structure which makes it different from bitcoin b. Transactions are computations for the virtual machine c. The ethereum blockchain consists of a set of linked blocks, similar to bitcoin d. Ethereum has multiple virtual machines each with a different state and capabilities e. Smart contracts are stored on the blockchain There is a0.9985probability that a randomly selected27-year-oldmale lives through the year. A life insurance company charges$198for insuring that the male will live through the year. If the male does not survive the year, the policy pays out$120,000as a death benefit. Complete parts (a) through (c) below.a. From the perspective of the27-year-oldmale, what are the monetary values corresponding to the two events of surviving the year and not surviving?The value corresponding to surviving the year isThe value corresponding to not surviving the year is(Type integers or decimals. Do not round.)Part 2b. If the30-year-oldmale purchases the policy, what is his expected value?The expected value is(Round to the nearest cent as needed.)Part 3c. Can the insurance company expect to make a profit from many such policies? Why?because the insurance company expects to make an average profit ofon every30-year-oldmale it insures for 1 year.(Round to the nearest cent as needed.) if we are teasting for the diffrence between the nmeans of 2 related populations with samples of n^1-20 and n^2-20 the number of degrees of freedom is equal to center (5,-3)and the tangent line to the y-axis are given. what is the standard equation of the circle Create an .R script that when run performs the following tasks(a) Assign x = 3 and y = 4(b) Calculates ln(x + y)(c) Calculates log10( xy2 )(d) Calculates the 23 x + 4 y(e) Calculates 10xy + exp{xy}