Which option should you select to accept a tracked change?
OA. Accept
OB.
Reject
O c.
Review
OD
Delete

Answers

Answer 1
Accept is the answer

Related Questions

A switch on a circuit board can be in two states what are they​

Answers

Answer:

on and off

Explanation:

Designers are comparing performance between a multi-core processor equipped with 16 in-order cores and a dual-core superscalar processor. The dual-core superscalar processor has two identical Out- of-Order cores. Each core is a 4-issue superscalar. The multi-core processor has 16 in-order processor cores. Each in-order core of the multi-core processor can achieve about one third the performance of the OoO superscalar core. A benchmark program K includes both sequential codes that can only be executed on one CPU core and parallel codes that can be distributed to multiple CPU cores. For program K, execution of the sequential codes takes 30% of the total execution time.

Required:
Which processor would deliver faster performance for benchmark program K and show your calculations?

Answers

Explanation:

it will be k because it process faster an it comsume less elecricity

Based on three scores that the user inputs, display the average of the score and the letter grade that is assigned fort he test score average. The grading scheme is as follows:
// 90 - 100 A
// 80 - 89 B
// 70 - 79 C
// 60 - 69 D
// <60 F
return 'F';
Your display should look like:
Your average test score is 89.9. You earned a B.
1 public void calculateDisplayLetterGrade (double scorel, double score2, double score3)
2 {
3
4 }
5

Answers

I used python function to write the code.

def averageScore(x,y,z):

    s = x + y + z

    avg = s/3

   if avg >= 90:

              return f'Your average test score is {avg} You earned a A.'

    elif avg >=80 and avg < 90 :

                return f'Your average test score is {avg} You earned a B.'

   elif avg >=70 and avg < 80 :

                 return f'Your average test score is {avg} You earned a .C'

      elif avg >=60 and avg < 70 :

                  return f'Your average test score is {avg} You earned a D.'

      else:

                    return f'Your average test score is {avg} You earned a F.'

print(averageScore(98, 90, 80))

Python function is used to write the code where x, y and z are the argument (user inputs) of the function. Then the inputs are summed and the average is gotten and stored with the variable, avg.  

If the average is greater than or equal to 90 the program will give the appropriate score and response(grade). It does the same if the user scored 80 - 89, 70 - 79, 60 - 69 and less than 60.

Finally. the function is called with the user input(argument).

Note the bolded values in the code are keywords in python.

read more: https://brainly.com/question/14191443?referrer=searchResults

Based on three scores that the user inputs, display the average of the score and the letter grade that

Please tell us your thoughts on one recently purchased product or service you believe can be improved.

Answers

Inflation everything is going up because of inflation

hoped that helped!

working with the tkinter(python) library



make the window you create always appear on top of other windows. You can do this with lift() or root.attributes('-topmost', ...), but this does not apply to full-screen windows. What can i do?

Answers

To make a tkinter window always appear on top of other windows, including full-screen windows, you must use the wm_attributes method with the topmost attribute set to True.

How can I make a tkinter window always appear on top of other windows?

By using the wm_attributes method in tkinter and setting the topmost attribute to True, you can ensure that your tkinter window stays on top of other windows, even when they are in full-screen mode.

This attribute allows you to maintain the window's visibility and prominence regardless of the current state of other windows on your screen.

Read more about python

brainly.com/question/26497128

#SPJ1

What Should be the first step when troubleshooting

Answers

The first step in troubleshooting is to identify and define the problem. This involves gathering information about the issue, understanding its symptoms, and determining its scope and impact.

By clearly defining the problem, you can focus your troubleshooting efforts and develop an effective plan to resolve it.

To begin, gather as much information as possible about the problem. This may involve talking to the person experiencing the issue, observing the behavior firsthand, or reviewing any error messages or logs associated with the problem. Ask questions to clarify the symptoms, when they started, and any recent changes or events that may be related.Next, analyze the gathered information to gain a better understanding of the problem. Look for patterns, commonalities, or any specific conditions that trigger the issue. This analysis will help you narrow down the potential causes and determine the appropriate troubleshooting steps to take.

By accurately identifying and defining the problem, you lay a solid foundation for the troubleshooting process, enabling you to effectively address the root cause and find a resolution.

For more questions on troubleshooting

https://brainly.com/question/29736842

#SPJ8

State the difference between analog,digital and hybrid computer

Answers

Analog computers do not have memory, but digital computers do.

What is the explanation for this?

Digital computers count, but analog computers measure. A hybrid computer is one that combines digital and analog components. It combines the best characteristics of both types of computers, i.e.

Hybrid computers combine the characteristics of analog and digital computers. The digital component is often the controller and performs logical and numerical operations, but the analog component is frequently used to solve differential equations and other mathematically challenging issues.

Learn more about Analog Computers;
https://brainly.com/question/30136628
#SPJ1

You arrive at your first client meeting with Jaba's Smoothie Hut. Jaba's owner, Kim, has asked you to install a Wi-Fi network for his customers. Kim has told you that the store needs the following:

Dedicated internet service with enough bandwidth to meet customer demand and run the store.
Be cost effective (Kim does not want the most expensive or the cheapest).
Customers will use Wi-Fi and the business will have 5 wired connections

Select the correct package for the Jaba's Smoothie Hut:

a. 20 Mbps service with 1 modem/Router, a 16 port switch, and 1 wireless access point
b. 100 Mbps service with 1 Modem/Router, a 24 port switch, 3 wireless access points (1 for office, 1 for retail, and 1 for outside)

Answers

The correct package which can be used to set up the Jaba's Smoothie Hut so that there would be dedicated internet service with enough bandwidth to meet customer demand and run the store is:

b. 100 Mbps service with 1 Modem/Router, a 24 port switch, 3 wireless access points (1 for office, 1 for retail, and 1 for outside)

According to the given question, we are asked to show the correct package which can be used to set up the Jaba's Smoothie Hut so that there would be dedicated internet service with enough bandwidth to meet customer demand and run the store

As a result of this, we can see that when using wireless networks (WiFi), there is a necessity to make use of a fast 100 Mbps service so that the connection would have sufficient bandwidth to meet the needs of the store and customers.

Therefore, the correct answer is Option B

Read more here:

https://brainly.com/question/18450917

In java please!

Complete the checkCharacter() method which has 2 parameters: A String, and a specified index (int). The method checks the character at the specified index of the String parameter, and returns a String based on the type of character at that location indicating if the character is a letter, digit, whitespace, or unknown character.

Ex: The method calls below with the given arguments will return the following Strings:

checkCharacter("happy birthday", 2) returns "Character 'p' is a letter"
checkCharacter("happy birthday", 5) returns "Character ' ' is a white space"
checkCharacter("happy birthday 2 you", 15) returns "Character '2' is a digit"
checkCharacter("happy birthday!", 14) returns "Character '!' is unknown"

Answers

Answer:

class Main {

   public static String checkCharacter(String str, int index) {

       char character = str.charAt(index);

       if (Character.isLetter(character)) {

           return "Character '" + character + "' is a letter";

       } else if (Character.isDigit(character)) {

           return "Character '" + character + "' is a digit";

       } else if (Character.isWhitespace(character)) {

           return "Character '" + character + "' is a white space";

       } else {

           return "Character '" + character + "' is unknown";

       }

   }

   public static void main(String[] args) {

       System.out.println(checkCharacter("happy birthday", 2));

       System.out.println(checkCharacter("happy birthday", 5));

       System.out.println(checkCharacter("happy birthday 2 you", 15));

       System.out.println(checkCharacter("happy birthday!", 14));

   }

}

Explanation:

This answer was created using AI and it looks very correct to me.

Pahelp
Naman hehe
Ict po g11

PahelpNaman heheIct po g11

Answers

Answer:

What is collaboration?

>answer : Collaboration is a working practice whereby individuals work together for a common purpose to achieve business benefit. Collaboration enables individuals to work together to achieve a defined and common business purpose..

What is online collaboration?

>answer : Online collaboration is the process of connecting users digitally to communicate in an online space. Online collaboration is usually supplemented using a software system that lets team members cha.t using video, audio and text..

What is the definition of online collaborative tools?

>answer : Online collaboration tools are web-based applications that offer basic services such as instant messaging for groups, mechanisms for file sharing and collaborative search engines (CSE) to find information distributed within the system of the organization, community or team..

What is the definition of team dynamics?

>answer : Team dynamics are the unconscious, psy.chological forces that influence the direction of a team's behaviour and performance. ... Team dynamics are created by the nature of the team's work, the personalities within the team, their working relationships with other people, and the environment in which the team works..

What are the 5 stages of development for a team?

>answer : Forming, Storming, Norming, Performing, and Adjourning.

What are the 6 phases of project management?

>answer : The six phases of project management:

•Initiation phase.

•Definition phase.

•Design phase.

•Development phase.

•Implementation phase.

•Follow-up phase.

Explanation:

Sana makatulong po sa inyu..Your welcome in advance..(ㆁωㆁ)

A file with a com extension is most likely to be a(n) ___ file.

A file with a com extension is most likely to be a(n) ___ file.

Answers

I think that the answer is: A executable

Explain why the two 1s in this binary number do not have the same value: 00100010​

Answers

Answer:

The first 1 on the left is 32 and the 1 on the right is 2. Hence this 8 digits binary number represents 32 + 2 which is the decimal number 34

Explanation:

each 1 represents the number 2 powered by a different number, so starting at the further right, the first number with value 0 is representing \(2^{0}\), the next on the left which is value 1 is representing \(2^{1}\) which is 2 and so on. So the other 1 further on the left will be \(2^{5}\) which is 32.

Every other digit that is zero is not taking any value, but if they were, they would all be taking values from \(2^{0}\) to \(2^{7}\) Take a look below:

0  0  1  0  0  0  1  0

       32             2

The position of a digit in a binary number determines its place value, and each position represents a different power of 2.

In the binary number 00100010, the two 1s do not have the same value because they are in different positions, representing different place values.

Binary numbers are base-2 numeral systems, meaning they only use two digits: 0 and 1.

Each digit in a binary number represents a power of 2, with the rightmost digit representing 2⁰ (which is 1), the next digit to the left representing 2¹ (which is 2), the next representing 2² (which is 4), and so on.

The first 1 from the right (2⁰) has a value of 1. The second 1 from the right (2⁵) has a value of 32.

Therefore, the two 1s in the binary number 00100010 have different values: one represents 1, and the other represents 32.

In general, the position of a digit in a binary number determines its place value, and each position represents a different power of 2.

Therefore, even though they are both represented by the digit 1, their values are distinct based on their positions in the binary number.

Learn more about Binary numbers click;

https://brainly.com/question/28222245

#SPJ3

1. Which of the following is a general-purpose computing device?
O A. Calculator
O B. Wi-Fi picture frame
OC. Smartphone
O D. Point-of-sale (POS) system

Answers

D. A general-purpose computer is a point-of-sale (POS) system. A wide range of administrative, management, and marketing abilities are required to run a retail store.

What is a POS?

A device known as a POS (point of sale) is used to process retail customers' transactions. A type of POS is a cash register. Electronic POS terminals that can process cash as well as credit and debit cards have mostly taken the place of the cash register.

A POS can be a physical device in a physical store or a web-based checkout point.

The features of the software for POS devices are getting more and more complex, making it possible for retailers to track pricing accuracy, collect marketing data, and monitor trends in purchasing and inventory.

A point of sale (POS) is the location where a customer pays for goods or services and may be subject to sales taxes.

To learn more about software visit :

https://brainly.com/question/985406

#SPJ1

What is social displacement? Question 22 options: the gained efficiency in being able to communicate through technology , the act of moving files from your computer to an external site , the risk of being "unfriended" by someone on social media , the reduced amount of time we spend communicating face to face

Answers

Answer: The Answer should be D

Explanation: It's the definition.

Write a program asks the user for an integer N and then adds up the first N odd integers. For example, if the user asks the sum of the first 10 odd integers, the program computes: Use a loop for this. Use instructions and pseudo instructions up to chapter 24. Use exception handler services for input and output. How many odd numbers: 10 The sum: 100 If the user enters a negative integer or non-integer, just print a zero. Start your source file with comments that describe it:

Answers

Answer:

The program in Python is as follows:

while True:

   try:

       num = input("Number of odds: ")

       num = int(num)

       break

   except ValueError:

       print("Invalid integer! ...")

sum = 0

odd = 1

if num > 0:

   for i in range(num):

       sum+=odd

       odd+=2

print("Total:",sum)

Explanation:

This is repeated until a valid integer is inputted

while True:

This uses exception

   try:

This gets the number of odd numbers

       num = input("Number of odds: ")

This converts the input to integer

       num = int(num)

       break

If input is invalid, this catches the exception

   except ValueError:

       print("Invalid integer! ...")

This initializes sum to 0

sum = 0

This initializes odd to 1

odd = 1

If input is positive

if num > 0:

This add the first num odd numbers

   for i in range(num):

       sum+=odd

       odd+=2

This prints the total

print("Total:",sum)

QUESTION 2
1 poin
A document contains a list of items that appear in no particular order. Which of the following is the best way to format the list?

Answers

Group of answer choices.

A. Apply numbering to the list.

B. Apply bullets to the list.

C. Apply multilevel numbering to the list.

D. Manually enter a ">" character at the beginning of each item in the list.

Answer:

B. Apply bullets to the list.

Explanation:

Formatting is a feature found in a lot of word processing software applications such as Microsoft Word, Notepad, etc., which is designed to avail end users the ability to apply specific formatting options such as cut, bold, italics, underline, list, etc., to texts based on certain criteria defined by an end user.

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.

In Microsoft Word, a list can be formatted using a numbered or bulleted arrangement style. A numbered style (1, 2, 3, 4, etc) is typically used for an ordered list while a bullet is designed to be used for an unordered list.

Hence, the best way to format a document containing a list of items that appear in no particular order is to apply bullets to the list.

For example, a bulleted list of my favorite subjects arranged in no particular order would appear as this;

English languageMathematicsGeographyBiologyChemistryPhysicsComputer technology

To print a budget:________.

1. From the Company Center, select Company & Financials > Budgets

2. From the Reports Center, select Budgets & Forecasts > Budget Overview

3. From the Reports Center, select Company & Financials > Budgets

4. From the Reports Center, select Accountant & Taxes > Budgets

Answers

Answer:

The answer is "Option 2".

Explanation:

In the given question, choice 2 is correct because it uses the print a budget in the Quickbooks is used to form the reports in the center, it also selects the budgets and the forecast value is greater than the value of the budget overview, and the wrong choice can be defined as follows:

Choice 1 and Choice 3 both were wrong because it select uses the company and financial value is greater budget value. In choice 4,  It is wrong because it select uses the accountant, and taxes value that is greater budget value.

Difference between analog and digital computer ??

Answers

Answer:

The analogue computer works on a continuous signal. The digital computer works on a discrete signal. The output is a voltage signal, they are not exact values and are in graphical form.

2. How can recovery handle transaction operations that do not affect the database, such as the printing of reports by a transaction?

Answers

Answer:

Explanation:

great question but dont know

An instruction for the computer. Many commands put together to
make up algorithms and computer programs.

1. Repeat
2. Command
3. Bug

Answers

Answer:

i think its command but not sure

Excel 365 is primarily used to produce Word documents.

Answers

If this is a true and false question it would be False

Excel 365 is primarily used to produce Word documents is a false statement.

What is Microsoft Word and Excel meant for?

Microsoft Word is known to be a kind of word processing software that is often used for writing letters, memos, reports and others.

The Microsoft Excel is known to be a spreadsheet software that is meant to be used for calculations, creating charts and recording data about any  business processes.

Conclusively, Excel 365 is primarily used to produce calculations and not word document.

Learn more about Excel from

https://brainly.com/question/25879801

Where do you go to connect to a VPN server in Windows 7?

Answers

Answer:

1) Start→Control Panel→View Network Status.

2) Click the Connect to a Network link.

3) Locate the VPN you want to connect to and click its name and then click the Connect button.

The button only appears after you click the name of the network.

To disconnect from a network, click the network name in this dialog box and then click the Disconnect button. Click Disconnect when prompted and then click Close.

4) Enter your network security key.

Most VPNs require a security key. It’s the same one you used to establish the connection.

Select the Hide Characters check box if you want to keep the Key hidden.

5) Click OK and then click the Connect button.

Windows 7 will use the key to establish a connection to the VPN network.

PLEASE AWNSER 50 POINTS PLUS BRAINLEST ILL FAIL MY GRADE IF I DONT AWNSER IN A HOUR!

Code in Python

Write a program to convert a fraction to a decimal. Have your program ask for the numerator first, then the denominator. Make sure to check if the denominator is zero. If it is, print out "Error - cannot divide by zero."

Hint: Since this lesson uses if-else statements, remember to use at least one if-else statement in each of your answers to receive full credit.

Sample Run 1
Numerator: 10
Denominator: 0
Sample Output 1
Error - cannot divide by zero.
Sample Run 2
Numerator: 12
Denominator: 15
Sample Output 2
Decimal: 0.8

Answers

Answer:go to google

google should know

thats a lot of math ;p

Explanation:

The epa requires spray guns used in the automotive refinishing process to have transfer efficiency of at least

Answers

The epa requires spray guns used in the automotive refinishing process to have transfer efficiency of at least  65 percent transfer efficiency.

What is the transfer efficiency

EPA lacks transfer efficiency requirement for auto refinishing spray guns. The EPA regulates auto refinishing emissions and impact with rules. NESHAP regulates paint stripping and coating operations for air pollutants.

This rule limits VOCs and HAPs emissions in automotive refinishing. When it comes to reducing overspray and minimizing wasted paint or coating material, transfer efficiency is crucial. "More efficiency, less waste with higher transfer rate."

Learn more about transfer efficiency  from

https://brainly.com/question/29355652

#SPJ1

Can someone help me with the following logical circuit, perform two actions. FIRST, convert the circuit into a logical
statement. SECOND, create a truth table based on the circuit/statement. (20 pts. each for statement and
truth table.

Can someone help me with the following logical circuit, perform two actions. FIRST, convert the circuit

Answers

Creation of Truth Table Based on the logical statement, we can create a truth table as shown below:

A B (not A) (not A) and B (not A) and B or A A or (not A) and B 0 0 1 0 1 0 0 1 0 0 1 0 1 1 0 1 1 0 1 1 1 0 1 1 0 1 1 0 1 1 1

The first two columns show the input values, the next column shows the output of the NOT gate, then the output of the AND gate, then the output of the OR gate and finally the output of the logical statement.

We can observe that the output of the logical statement is the same as the output of the OR gate.

Given the logical circuit, we are required to perform two actions on it. Firstly, convert the circuit into a logical statement. Secondly, create a truth table based on the circuit/statement. Let's understand how to do these actions one by one:Conversion of Circuit into Logical Statement.

The given circuit contains three components: NOT gate, AND gate and OR gate. Let's analyze the working of this circuit. The two input variables A and B are first passed through the NOT gate, which gives the opposite of the input signal.

Then the NOT gate output is passed through the AND gate along with the input variable B. The output of the AND gate is then passed through the OR gate along with the input variable A.We can create a logical statement based on this working as: (not A) and B or A. This can also be represented as A or (not A) and B. Either of these statements is correct and can be used to construct the truth table.

Creation of Truth Table Based on the logical statement, we can create a truth table as shown below:

A B (not A) (not A) and B (not A) and B or A A or (not A) and B 0 0 1 0 1 0 0 1 0 0 1 0 1 1 0 1 1 0 1 1 1 0 1 1 0 1 1 0 1 1 1

In the truth table, we have all possible combinations of input variables A and B and their corresponding outputs for each component of the circuit.

The first two columns show the input values, the next column shows the output of the NOT gate, then the output of the AND gate, then the output of the OR gate and finally the output of the logical statement.

We can observe that the output of the logical statement is the same as the output of the OR gate.

For more such questions on Truth Table, click on:

https://brainly.com/question/13425324

#SPJ8

role of the computer for the development of a country​

Answers

Computers have a transformative impact on the development of a country by driving economic growth, revolutionizing education, fostering innovation, improving governance, and promoting connectivity.

Economic Growth: Computers play a crucial role in driving economic growth by enabling automation, streamlining processes, and increasing productivity. They facilitate efficient data management, analysis, and decision-making, leading to improved business operations and competitiveness.

Education and Skills Development: Computers have revolutionized education by providing access to vast amounts of information and resources. They enhance learning experiences through multimedia content, online courses, and virtual simulations.

Innovation and Research: Computers serve as powerful tools for innovation and research. They enable scientists, engineers, and researchers to analyze complex data, simulate experiments, and develop advanced technologies.

High-performance computing and artificial intelligence are driving breakthroughs in various fields, such as medicine, energy, and engineering.

Communication and Connectivity: Computers and the internet have revolutionized communication, enabling instant global connectivity. They facilitate real-time collaboration, information sharing, and networking opportunities. This connectivity enhances trade, international relations, and cultural exchange.

Governance and Public Services: Computers play a vital role in improving governance and public service delivery. They enable efficient data management, e-governance systems, and digital platforms for citizen engagement. Computers also support public utilities, healthcare systems, transportation, and security infrastructure.

Job Creation: The computer industry itself creates jobs, ranging from hardware manufacturing to software development and IT services. Moreover, computers have catalyzed the growth of other industries, creating employment opportunities in sectors such as e-commerce, digital marketing, and software engineering.

Empowerment and Inclusion: Computers have the potential to bridge the digital divide and empower marginalized communities. They provide access to information, educational opportunities, and economic resources, enabling socio-economic inclusion and empowerment.

For more such questions on economic growth visit:

https://brainly.com/question/30186474

#SPJ11


The science of networking is attributed to which government's involvement?
O China
0 Japan
O Germany
O the United States

Answers

Answer:

The United States

if I am not mistaken

The following code is intended to test if x is at least 5. Fill in the correct symbol: if x ____ 5:

Answers

Since the code is intended to test if x is at least 5, the correct symbol (inequality) to be used is: if x ≥ 5.

What is programming?

Programming can be defined as a process through which software developer and computer programmers write a set of instructions (codes) that instructs a software on how to perform a specific task on a computer system.

What is an inequality?

An inequality can be defined as a mathematical relation that compares two (2) or more integers and variables in an equation based on any of the following arguments (symbols):

Less than (<).Greater than (>).Less than or equal to (≤).Greater than or equal to (≥).

In conclusion, since the code is intended to test if x is at least 5, the correct symbol (inequality) to be used is: if x ≥ 5.

Read more on inequality here: https://brainly.com/question/14325873

#SPJ1

Who designed the Analytical Engine in the 1830s? Alan Turing Alan Turing Charles Babbage Charles Babbage Bill Gates Bill Gates Steve Wozniak Steve Wozniak

Answers

Charles Babbage Charles Babbage

When you key in the date, Excel applies a standard format that shows:

Answers

The fundamental capabilities of all spreadsheets are present in Microsoft Excel , which organizes data manipulations like arithmetic operations using a grid of cells arranged in numbered rows and letter-named columns and pivot tables.

Thus, It has a variety of built-in functionalities to address financial, engineering, and statistical requirements. Additionally, it has a very limited three-dimensional graphical display and can present data as line graphs, histograms, and charts and Microsoft Excel.

Using pivot tables and the scenario manager, it enables segmenting of data to view its reliance on multiple parameters for diverse viewpoints.

A data analysis tool is a pivot table. This is accomplished by using PivotTable fields to condense big data sets. It features a programming component called Visual Basic for Applications that enables the user to apply a wide range of numerical techniques and operations.

Thus, The fundamental capabilities of all spreadsheets are present in Microsoft Excel , which organizes data manipulations like arithmetic operations using a grid of cells arranged in numbered rows and letter-named columns and pivot tables.

Learn more about pivot tables, refer to the link:

https://brainly.com/question/29786921

#SPJ7

Other Questions
how are water bodies important in rain formation How many moles are in 454 grams of dinitrogen trioxide (N2O3) ? Demand and utility schedules for scented candles Price Quantity Demanded 1 2 Marginal Utility Total Utility $8 1$7 2$6 3$5 4$4 5 If the price is $5 for each scented candle, Polly's consumer surplus is luck is preparing food for his dog he mixes 3 cup of dry food and some cup of wet food he put all the food into 4 bowls he puts 5/4 cups into each bowl The marketing manager for McDonalds has been asked to develop a code of marketing ethics for the company. Develop a marketing code of ethics for McDonalds, keeping in mind that the company has stores worldwide. I think one of the answers are C but I don't know what the other one is A sample of fluorine in a fixed 40.0-L container at a pressure of 2.00 atm is heated from 90.0C to 186.0C. What is the pressure at the higher temperature? How did Judeo-Christian views differ from Greco-Roman views? Incorrectly identify the usage of their, there and they're.1. I went over to their house last night.2. they're such a nice family!3. Did they put.their clothes away?house.coming over later today.4. My friends sold, Compare a two-year bond with two successive one-year bonds in a situation in which an investor buys a one year bond today and then another one-year bond when the first matures. Suppose that the two-year bond has an interest rate of 8 percent each year. a. Now consider the pattern of interest rates on the one-year bonds listed below and explain whether an investor should buy the two-year bond or the one-year bond today, assuming that the only thing that matters to the investor is the amount of money he has at the end of the two years. In each case, how much would an investor have at the end of two years if he invested $1,000 today? i. The one-year interest rate today is 7 percent; the one-year interest rate will be 9 percent one year from now. ii. The one-year interest rate today is 5 percent; the one-year interest rate will be 11 percent one year from now. iii. The one-year interest rate today is 3 percent; the one-year interest rate will be 13 percent one year from now. iv. The one-year interest rate today is 0 percent; the one-year interest rate will be 16 percent one year from now. b. From these results, is it reasonable to compare the average interest rates on alternative financial investments? (In other words, how reasonable is the assumption that we can compare average interest rates on short-term bonds with the interest rate on long-term bonds instead of using the exact method?) Generalized anxiety disorder, panic attacks, posttraumatic stress disorder, and obsessive-compulsive disorder express themselves biologically by: according to the following reaction, how many grams of oxygen gas are required for the complete reaction of 32.4 grams of carbon (graphite)? carbon (graphite) (s) oxygen (g) carbon dioxide (g) What literary term is being used in the quote:"Incredulous, Keevan lifted his head and stared into the glowing jeweled eyes of a small bronze dragon." The student council at Eleanor Roosevelt High School is taking a survey of student opinions on this year's homecoming theme. To decide who to survey, the council creates a master alphabetized list of names from every student in the school, then selects every 20th student from the list. Will the results of this survey be valid? Why or why not?yes, because a random sample is taken from all of the student bodyyes, because the survey will include all of the seniorsno, because the survey will include freshmanno, because the survey will not include members of the faculty A representative from a nationally known cookie manufacturer is at a local supermarket distributing samples of a new flavor of cookie that the company has just introduced. The cookie manufacturer is implementing ________ in giving away samples of the cookie. Urbanized video questionsCities are always the physical manifestation of big forces at play; what types of forces are these an you differentiate the various theories and theorists? drag and drop the statements that apply to each theory to the box. virginia henderson what is the key difference between focused attention (for) meditation and open monitoring (om) meditation? (NO LINKS)Use our value for x to calculate the m 98 x 65 - 24 x 6 / 3 =