Directly after the opening tag, insert an h1 element containing the text Catering.
Within the article element, do the following:
Mark the text About the Mobile Kitchen as an h1 heading.
Mark the next two paragraphs as paragraphs.
Return to the mp_pages.txt file and copy the text describing Mobile Panini’s catering opportunities; do not copy the Catering head. Then, go to the mp_catering.html file and paste the copied text directly after the aside element.
Make the following edits to the pasted text:
Mark the first two paragraphs as paragraphs.
Enclose the list of the six catering possibilities within an unordered list with each item marked as a list item.
Mark the concluding paragraph as a paragraph.
Open mp_catering.html file and click the Build Website button at the bottom of the page and verify that the information about the mobile kitchen appears as a sidebar on the right edge of the article. Next, open and build the mp_index.html file and verify that you can jump from one page to another by clicking the entries in the navigation list at the top of each page.
Review the webpage you have created on the right side of the screen.

Answers

Answer 1

The code is mentioned below.

Give a brief note on HTML?

It provides the basic structure for a web page, including elements such as headings, paragraphs, lists, links, images, and more. HTML is used in combination with other technologies, such as CSS and JavaScript, to create dynamic and interactive websites.

HTML documents are plain text files that contain a series of HTML elements, each of which is represented by a tag. These tags are surrounded by angle brackets and provide information about the structure and content of a web page. For example, the <h1> tag is used for headings, the <p> tag is used for paragraphs, and the <a> tag is used for creating links.

HTML is an essential technology for web development, and it has evolved over the years to include new features and capabilities. The latest version of HTML, HTML5, includes new elements and attributes that make it easier to create rich, multimedia-rich websites, and it is supported by all major browsers.

<h1>Catering</h1>

<article>

 <h1>About the Mobile Kitchen</h1>

 <p>Mobile Panini operates a mobile kitchen that can cater events of all sizes. Whether you're hosting a small gathering or a large celebration, our team can provide delicious food for your guests.</p>

 <p>Our mobile kitchen is equipped with everything we need to prepare and serve a variety of dishes, from classic paninis to salads and desserts. With our catering services, you can provide your guests with a delicious meal without having to worry about cooking or clean up.</p>

 <aside>

   <h2>Catering Opportunities</h2>

   <p>Mobile Panini offers the following catering opportunities:</p>

   <ul>

     <li>Corporate events</li>

     <li>Weddings</li>

     <li>Birthday parties</li>

     <li>Graduation celebrations</li>

     <li>Family gatherings</li>

     <li>Outdoor events</li>

   </ul>

   <p>Contact us today to learn more about our catering services and to schedule a mobile kitchen for your event!</p>

 </aside>

</article>

To know more about tag visit:

https://brainly.com/question/12284764

#SPJ4


Related Questions

ers. ADOMS TRONSK To Find the sum, differnce, multiplication, division and modular division of given two numbers.​

ers. ADOMS TRONSK To Find the sum, differnce, multiplication, division and modular division of given

Answers

Answer:

Adam trunks

Explanation:

special purpose computer​

Answers

Answer:

Special-purpose computers are designed for one specific task or class of tasks and wouldn't be able to perform general computing tasks. For example, a router is a special-purpose computer designed to move data around a network, while a general-purpose computer can be used for this task, as well as many others.

You would like the cell reference in a formula to remain the same when you copy
it from cell A9 to cell B9. This is called a/an _______ cell reference.
a) absolute
b) active
c) mixed
d) relative

Answers

Answer:

The answer is:

A) Absolute cell reference

Explanation:

An absolute cell reference is used in Excel when you want to keep a specific cell reference constant in a formula, regardless of where the formula is copied. Absolute cell references in a formula are identified by the dollar sign ($) before the column letter and row number.

Hope this helped you!! Have a good day/night!!

Answer:

A is the right option absolute

background information and features of tick-tock . [5]​

Answers

Tick-tock features are:

Algorithm-driven feedCreative video toolsViral challengesGlobal reach

What is the background information?

The story of Tick-tock started in 2016, when Chinese company ByteDance propelled an app called A.me that was said to have permitted clients to form and share brief recordings. It was renamed Douyin three months later.

Tick-tock is known or may be a social media app that permits clients to form and share short-form recordings with a term of 15 seconds to 1 miniature. The app was propelled in 2016 by the Chinese tech company ByteDance.

Learn more about background information  from

https://brainly.com/question/25023780

#SPJ1

8.10 Code Practice: Question 2
Edhesive

Answers

Answer:vocab = ["Libraries", "Bandwidth", "Hierarchy", "Software", "Firewall", "Cybersecurity","Phishing", "Logic", "Productivity"]

print (vocab)

for i in range (1, len (vocab)):

   count = i - 1

   key = vocab[i]

   while (vocab[count] > key) and (count >= 0):

       vocab[count+1] = vocab[count]

       count -= 1

       vocab [count+1] = key

       print(vocab)

Explanation: bam baby

In this exercise we have to use the knowledge of the python language to write the code, so we have to:

The code is in the attached photo.

So to make it easier the code can be found at:

vocab = ["Libraries", "Bandwidth", "Hierarchy", "Software", "Firewall", "Cybersecurity","Phishing", "Logic", "Productivity"]

print (vocab)

for i in range (1, len (vocab)):

  count = i - 1

  key = vocab[i]

  while (vocab[count] > key) and (count >= 0):

      vocab[count+1] = vocab[count]

      count -= 1

      vocab [count+1] = key

      print(vocab)

See more about python at brainly.com/question/26104476

8.10 Code Practice: Question 2Edhesive

How could you use a spreadsheet you didn't like to simplify access also the problem

Answers

Answer:

Explanation:

......

Write a program that receives a series of numbers from the user and allows the user to press the enter key to indicate that he or she is finished providing inputs. After the user presses the enter key, the program should print the sum of the numbers and their average.

Answers

The program that receives a series of numbers from the user is:

theSum = 0.0

# stores the number of terms entered by the user

n = 0

# loop until user presses the enter key

# infinite loop

while True:

# get user input from user

data = input("Enter a number or press Enter to quit: ")

# if user presses enter

if data == '':

# break out of the loop

break

# convert data into float using float()

number = float(data)

# add the entered number to theSum

theSum += number

# increase the number of terms

n += 1

print()

print("The sum is", theSum)

# if numbers of terms entered are greater than 0

if n > 0:

# calculate average

average = theSum / n

print('The average is', average)

# if no terms are entered

else:

print('Average : undefined (as the number of terms entered are 0)')

What is a program?

A computer program is a set of instructions written in a programming language that a computer is supposed to obey.

Computer programs are one of the intangible components of the software, which also includes documentation and other components. The version of a computer program that humans can read is called the source code.

Learn more about program on;

https://brainly.com/question/23275071

#SPJ1

Write a program that receives a series of numbers from the user and allows the user to press the enter

11. is a feature in Windows that can help you stay in control of your computer by informing you when a program makes a change that requires administrator-level permission.​

Answers

Answer:

User Account Control (UAC) is a feature of Windows that can help you stay in control of your computer by informing you when a program makes a change that requires administrator-level permission.

Anna wants to keep information secure from offenders. Which software should she install on her computer to ensure Internet safety?
O A database software
OB
presentation software
OC. anti-virus software
OD
graphics software

Answers

Anna wants to keep information secure from offenders. Which software should she install on her computer to ensure Internet safety?

O A database software

OB

presentation software

OC. anti-virus software

OD

graphics software

Answer: OC

The executive ________ is the person ultimately responsible to their company for the project's success.

fill in blank

Answers

Answer:

Manager.

Explanation:

Just thank me later and make sure to click the crown at the top of this answer ;)

Answer:

sponsor i took the test

Explanation:

Usually senior executives, executive sponsors, are the ones ultimately responsible to their company for the project's success.

Steps of booting a computer

Answers

Steps of Booting
The Startup. It is the first step that involves switching the power ON. ...
BIOS: Power On Self Test. It is an initial test performed by the BIOS. ...
Loading of OS. In this step, the operating system is loaded into the main memory. ...
System Configuration. ...
Loading System Utilities. ...
User Authentication.

define the term hardwar

Answers

Answer:

tools, machinery, and other durable equipment.

Explanation:hardware in a computer are the keyboard, the monitor, the mouse and the central processing unit.

Answer: tools, machinery, and other durable equipment.

Explanation: the machines, wiring, and other physical components of a computer or other electronic system.

tools, implements, and other items used in home life and activities such as gardening. Computer hardware includes the physical parts of a computer, such as the case, central processing unit, monitor, mouse, keyboard, computer data storage, graphics card, sound card, speakers and motherboard. By contrast, software is the set of instructions that can be stored and run by hardware.

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

The issue “when a user deletes the data, whether all the copies are deleted or not is something that every needs to have a clear answer to” comes under which of the following?

Answers

The issue “when a user deletes the data, whether all the copies are deleted or not is something that every needs to have a clear answer to” comes under aspect of data deletion and data lifecycle management.

What is the deletion?

One need rules and practices to delete data to follow privacy laws, protect data, and meet user expectations. When a user gets rid of data, it is important to check if all copies of that data have been effectively removed from the system or storage.

Data Retention Policies: Organizations must create clear rules about how long they will keep certain data before getting rid of it.

Read more about deletion here:

https://brainly.com/question/30280833

#SPJ1

A TCP ________ segment is a request to the other transport process to close a connection. ACK FIN SYN CLS

Answers

Answer:

FIN

Explanation:

A TCP is an acronym for Transmission Control Protocol and it is one of the essential and important protocol of the internet protocol network. This simply means that, it is an essential part of the TCP/IP network.

The TCP has a wide range of applications in the following areas, file transfers, world wide web, remote administration, e-mail, etc.

The TCP connection are mainly established in the network using the three-way handshake.

A TCP FIN segment is a request to the other transport process to close a connection. The FIN in transmission control protocol (TCP) is an acronym for finish and it involves the packets associated with termination or closing of a network connection.

Generally, the TCP in networking is made up of all of the following flag bits, namely;

1. SYN: used for synchronizing packets associated with a connection.

2. ACK: this is mainly where an acknowledgement of packets in a network takes place.

3. FIN:  it is used for closing connections.

4. PSH: used for pushing packets that are to meant to be delivered at the far end.

5. RST: used as a reset in times of errors in the connection.

6. URG: used to denote urgent and high priority packets in the network.

7

Naomi is formatting a document in a word processor. She wants the section headings in her document to stand out. She changes the font type and size of one heading and also makes it bold. She wants to copy this formatting style to all other headings in the document. What should she do?

Answers

Answer:

Naomi can use the "Format Painter" tool to copy the formatting style from one heading to all other headings in the document.

Explanation:

Select the heading that has the desired formatting style.

Click on the "Format Painter" button in the "Clipboard" group on the "Home" tab.

Click and drag the cursor over the other headings in the document to apply the formatting style.

Alternatively, if Naomi wants to apply the formatting style to all headings in the document, she can use the "Styles" feature to create a custom heading style. To do this, she should follow these steps:

Select the heading that has the desired formatting style.

Click on the "Styles" button in the "Styles" group on the "Home" tab.

Click on the "Create a Style" button at the bottom of the "Styles" pane.

In the "Create New Style from Formatting" dialog box, give the new style a name and select the formatting options that she wants to include.

Click "OK" to save the new style.

Apply the new style to all other headings in the document by selecting them and clicking on the new style in the "Styles" pane.

can someone do it for me

Answers

Answer:

m or f

Explanation:

What is the critical path?


Calculate the minimum overall project completion time and identify which activities are critical by filling out the chart below-forward and backward pass.

What is the maximum time to complete the projects?


Early start Early Finish late start Late finish Slack Critical path?


A
B
C
D
E
F
G
H


Please answer and thank you

What is the critical path?Calculate the minimum overall project completion time and identify which activities

Answers

Answer:

yeeeee

Explanation:yeeees quen                   HI SISTERS HI SISTERS

Question 7
Consider the following scenario about using Python dictionaries:

A teacher is using a dictionary to store student grades. The grades are stored as a point value out of 100. Currently, the teacher has a dictionary setup for Term 1 grades and wants to duplicate it for Term 2. The student name keys in the dictionary should stay the same, but the grade values should be reset to 0.

Complete the “setup_gradebook” function so that input like “{"James": 93, "Felicity": 98, "Barakaa": 80}” will produce a resulting dictionary that contains “{"James": 0, "Felicity": 0, "Barakaa": 0}”. This function should:

accept a dictionary “old_gradebook” variable through the function’s parameters;

make a copy of the “old_gradebook” dictionary;

iterate over each key and value pair in the new dictionary;

replace the value for each key with the number 0;

return the new dictionary.

Answers

Here is an example implementation of the "setup_gradebook" function:

```python

def setup_gradebook(old_gradebook):

   new_gradebook = old_gradebook.copy()

   for key in new_gradebook:

       new_gradebook[key] = 0

   return new_gradebook

```

This function takes in the old_gradebook dictionary as a parameter and creates a new_gradebook dictionary by making a copy of the old one. It then iterates over each key in the new dictionary and sets the value to 0. Finally, it returns the new dictionary with all values set to 0.

why was the keyboard invented, write a paragraph and you can get a crown and 50 points

Answers

Answer:

The keyboard was invented for the alphabet and numbers so people can talk to others and work on essays, and have a way to communicate to human beings and for stuff like i'm doing right now, writing paragraphs for stuff like this and for school, really the keyboard was invented for anything, you can use it for anything in the whole world.

Explanation:

Hope this helps!!

The keyboard was invented so people can type on a computer

whats this oh _____
what is it
A) jane
B) juan.
C)juan
D) horse

whats this oh _____ what is it A) janeB) juan.C)juanD) horse

Answers

Answer:

juan duhhhhh hehehe

Explanation:

Which group on the Note Master tab contains the command to add footers to the notes pages?

Answers

Answer:

Place Holders

Explanation:

___________ is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Answers

Answer:

Supply chain disruption is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Explanation:

The context suggests we are discussing some type of challenge involving the relationships between customers, suppliers and a larger supply chain. A "global issue" involving "interdependencies among the customers and suppliers" points to potential supply chain disruption or issues in a supply network.

Since there is a "requirement to find out the interdependencies" between customers and suppliers, this suggests we need to identify and analyze how they are connected and dependent upon each other in order to resolve the broader "global issue." This information could then be used to make changes, build resilience or manage risks in the supply chain.

Hope this helps!

Answer:

Internet is global issues

--------------------​

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

Answers

Answer:

Explanation:

answer below

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

How multi-agent systems work? Design multi-agent system for basketball training. What will be
function of different agents in this case? What will be PEAS for these agents? How ‘Best first
search’ algorithm can be used in this case? Can we use Manhattan distance in this case to
determine heuristic values?

Answers

Multi-agent systems (MAS) involve the coordination and interaction of multiple autonomous agents to achieve a common goal or solve a complex problem. Each agent in a MAS has its knowledge, capabilities, and decision-making abilities. They can communicate, cooperate, and compete with each other to accomplish tasks efficiently.

Designing a multi-agent system for basketball training involves creating agents that simulate various roles and functions within the training environment. Here's an example of the function of different agents in this case:

Coach Agent: This agent acts as the overall supervisor and provides high-level guidance to the other agents. It sets training objectives, plans practice sessions, and monitors the progress of individual players and the team as a whole.

Player Agents: Each player is represented by an individual agent that simulates their behavior and decision-making on the basketball court. These agents can analyze the game situation, make tactical decisions, and execute actions such as passing, dribbling, shooting, and defending.

Training Agent: This agent focuses on improving specific skills or aspects of the game. It provides personalized training exercises, drills, and feedback to individual player agents to help them enhance their skills and performance.

Strategy Agent: This agent analyzes the game dynamics, the opponent's strengths and weaknesses, and team composition to develop game strategies. It can recommend specific plays, formations, or defensive tactics to the player agents.

PEAS (Performance measure, Environment, Actuators, Sensors) for these agents in the basketball training MAS would be as follows:

Coach Agent:

Performance measure: Team performance, individual player improvement, adherence to training objectives.

Environment: Basketball training facility, practice sessions, game simulations.

Actuators: Communication with player agents, providing guidance and feedback.

Sensors: Performance data of players, observations of practice sessions, and game statistics.

Player Agents:

Performance measure: Individual player performance, adherence to game strategies.

Environment: Basketball court, training facility, game simulations.

Actuators: Passing, dribbling, shooting, defending actions.

Sensors: Game state, teammate positions, opponent positions, ball position.

Training Agent:

Performance measure: Skill improvement, player performance enhancement.

Environment: Training facility, practice sessions.

Actuators: Designing and providing training exercises, drills, and feedback.

Sensors: Player performance data, skill assessment.

Strategy Agent:

Performance measure: Team success, the effectiveness of game strategies.

Environment: Game simulations, opponent analysis.

Actuators: Recommending game strategies, and play suggestions.

Sensors: Game state, opponent analysis, team composition.

The 'Best First Search' algorithm can be used in this case to assist the agents in decision-making and action selection. It can help the player agents or the strategy agent explore and evaluate different options based on their estimated desirability, such as finding the best passing or shooting opportunities or identifying optimal game strategies.

Yes, Manhattan distance can be used as a heuristic value in this case. Manhattan distance measures the shortest distance between two points in a grid-like space, considering only horizontal and vertical movements. It can be used to estimate the distance or proximity between players, the ball, or specific areas on the basketball court. By using Manhattan distance as a heuristic, agents can make decisions based on the relative spatial relationships and optimize their actions accordingly, such as moving towards a closer teammate or positioning themselves strategically on the court.

convert hexa decimal4F5.A7)​​​​​

Answers

Answer:

it will be 1269.65234375 in decimal number system

Explanation:

How many bits is needed to distinctly address 226KB in a byte addressable Memory?

Answers

To distinctly address 226kb in a byte addressable memory, one would need 8 bits.

What is an addressable memory?

Word addressing in computer architecture implies that addresses of memory on a computer authenticate words of memory.

In contrast to byte addressing, where addresses authenticate bytes, it is commonly employed.

What is the calculation justifying the above answer?

Given:

2⁸ = 256

and 226 < 256

Hence, we need 8 bit.

Learn more about addressable memory:
https://brainly.com/question/19635226
#SPJ1

Computers are because they can perform many operations on their own with the few commands given to them

Answers

Computers are programmable because they can perform a wide range of operations on their own with just a few commands given to them. They are designed to carry out different functions through the execution of programs or software, which comprises a sequence of instructions that a computer can perform.

The instructions are expressed in programming languages, and they control the computer's behavior by manipulating its various components like the processor, memory, and input/output devices. Through these instructions, the computer can perform basic operations like arithmetic and logic calculations, data storage and retrieval, and data transfer between different devices.

Additionally, computers can also run complex applications that require multiple operations to be performed simultaneously, such as video editing, gaming, and data analysis. Computers can carry out their functions without any human intervention once the instructions are entered into the system.

This makes them highly efficient and reliable tools that can perform a wide range of tasks quickly and accurately. They have become an essential part of modern life, and their use has revolutionized various industries like healthcare, education, finance, and entertainment.

For more questions on Computers, click on:

https://brainly.com/question/24540334

#SPJ8

Write or convert this code into .hla high level assembly program known as (HLA).
; Dollar ValueMenu
; Written by [Your Name Here]

.include "hla.h"

.data
; data storage declarations

.code
main proc

mov (type word ; Declare a working variable
; to hold the user's input
; from the keyboard.
;
; This will be a 16-bit value
; packed with information
; about the order.
stdout ;
; Tell HLA which output device
; you want to use for output.
;
mov (eax, 0) ; Clear the EAX register.
;
mov ebx, type ; Move the address of the
; type variable into EBX.
;
stdout.put
;
; Print out the prompt to
; get the user's input.
;
"Feed me your order as 4 hex digits: "
;
stdin.get ; Get the user's input.
;
; The input will be a 16-bit
; value in packed form, so
; we'll read it in as a word.
;
mov (type, eax) ; Store the user's input

Answers

The given code is not complete and contains errors. However, I can provide you with an example of how to write a high-level assembly (HLA) program to accomplish the task of storing user input as a 16-bit value in HLA.

assembly:

program DollarValueMenu;

#include("stdlib.hhf")

static

   userInput: word ; Declare a working variable to hold the user's input

begin DollarValueMenu;

   stdout.put("Feed me your order as 4 hex digits: ")

   stdin.geti16(userInput) ; Get the user's input as a 16-bit value

   mov(type, userInput) ; Store the user's input in the "type" variable

   stdout.put("User input: ")

   stdout.puti16(userInput, nl) ; Display the user's input

end DollarValueMenu;

In this HLA program, we declare a `userInput` variable of type `word` to hold the user's input as a 16-bit value. We use the `stdin.geti16` function to read the input from the user and store it in the `userInput` variable. Then, we use the `stdout.puti16` function to display the user's input on the output screen.

Please note that the code assumes that you have the necessary HLA libraries and setup to compile and run the program.

For more questions on HLA, click on:

https://brainly.com/question/31365734

#SPJ8

Could not connect to Steam Please confirm network maintenance?

Answers

Restarting your computer is the first thing you should do if you have the problem. Software crashes, driver problems, and network settings can all be resolved with a quick restart, which will likely resolve the Steam not connected error.

A computer is a piece of electronic equipment used to manipulate data or information. Data can be stored, retrieved, and processed by it. You may already be aware of the fact that you can use a computer to surf the Internet, send emails, type documents, and play games. It can also be used to edit or make presentations, films, and spreadsheets.

Here you can learn more about computer in the link brainly.com/question/21080395

#SPJ4

Other Questions
What inaccurate and unfounded assumptions have doctors made throughout history about the bodies of enslaved black people, and how did they attempt to prove those assumptions? g triangle abc is equal to triangle pqr, angle p=8x+4, angle a=5x+16 , and angle q=10x+2. find angle ra. 36b.not enough infoc. 42d. 102 Find f(x) for the function. f(x)=(6x^3-5x+1)/(x^2) f(x)= Does Angelica and Abigail Adams have the same type of "shot" that Alexander Hamilton has? What does this help us understand about how different groups of people experienced the time period and the concept of independence? What preparation will you do in this phase of life cycle that willhelp you accept the change that your body will go through asyou enter the puberty stage? Which expression uses the associative property to make it easier to evaluate 8(3)? 1 O A. (8. / B. (2-3) O C. 80) OD. (85) Hello! Can ya'll help? If u do you'll get the crown and be put first place on the nice listWrite a word problem that can be represented by the expression 4 3/8 divided by 8 the priority nursing focus for the period immediately after electroconvulsive therapy treatment should be on: group of answer choices monitoring for the return of the capacity for full range of motion. assessing the degree of accumulating memory impairment. making positive comments while the patient is more receptive. assessing the level of consciousness and normal body functions. sleep disorders in infants are often diagnosed through the use of sleep diaries and direct observation. Define paternalism with regard to European imperialism: The table below shows that 1 day equals 24 hours. Notice that 12 hours is one-half of that. Use the table to help you determine how many days are equal to 42 hours. 1 day 24 hours 12 hours 12 hours (3 points) a 1 and 1 over 4. days b 1 and 1 over 2. days c 1 and 3 over 4. days d 2 days Solve and Graph the System of Linear Equations1) 3 X + 2 Y = 4X + 2 Y = -4 When a weak acid is titrated with a weak base, the pH at the equivalence point: A. is greater than 7.0. B. is equal to 7.0. C. is less than 7.0. D. is determined by the magnitudes of Ka and Kb. E. depends on the pKa of the indicator. Which environmental group has a goal of protecting human health by preventing exposure to toxic chemicals and pollutants? A. Environmental Defense FundB. Sierra ClubC. World Wildlife Fund D. Wilderness Society Barrio boy complete response with evidence a saleswoman earns 60% commission on all that she sells. Last month she sold $400 worth of merchandise. How much commission (In dollars) did she earn last month? Why do you think Pattillo agreed to help Skloot contact Henrietta's family? I need help with another one! Thankyou guys this means alot to me What is the meaning of Line 24 in Mending Wall?. All of the following are potentially dilutive in computing diluted EPS except: Group of answer choices Equity Warrants Convertible preferred stock Employee stock options Convertible bonds All of the provided answers are correct