Which is an example of correct HTML?

This is a heading
This is a heading
This is a title
This is a title
Question 3(Multiple Choice Worth 5 points)

Answers

Answer 1

Answer:

An HTML tag is a special word or letter surrounded by angle brackets, &lt​; and >. You use tags to create HTML elements , such as ...

Explanation:


Related Questions

Give an idea of a law u would like to create

Answers

I would like to create a law where parents can’t take your stuff or control my life when I’m 18

I would create a law that anyone who would do something against God's laws, would be put in jail for a week. Then, be asked if they would like to accept Jesus as their savior, and turn from their sins.

This is just my idea :)

God bless

__________ sourcing is a technique in problem-solving where the problem is shared with many people so that the people can offer potential solutions.

Answers

Answer:

crowd (crowdsourcing)

Explanation:

Which data type can store decimal or fractional numbers?
A. boolean
B. Integer
C. Chat
D. Floating point

Answers

The answer is A. Boolean

Answer:

♡ madeline here ♡

its a! have a great day

stay safe & be yourself

✧・゚: *✧・゚:・゚✧*:・゚✧・゚

Explanation:

Project: Math Tutor Program with Error Handling
image of a man sitting on a branch he is about to cut off

Sawing off the branch you are sitting on can only end badly (Imagery supplied by photoschmidt/iStock via Getty)
Unlike the man in the picture, you already know how to plan for and handle errors before they happen. You know how to create and use lists. You know how to use loops. You are going to put these abilities to work in this project. You are going to write a program to help young children with their arithmetic skills.

Objectives
Plan and create a program to practice math facts with error handling.

Your Goal
Your users are young children learning their arithmetic facts. The program will give them a choice of practicing adding or multiplying.

You will use two lists of numbers.

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

If the user chooses adding, you will ask them to add the first number from each list. Tell them if they are right or wrong. If they are wrong, tell them the correct answer.
Then ask them to add the second number in each list and so on.

If the user chooses multiplying, then do similar steps but with multiplying.

Whichever operation the user chooses, they will answer 12 questions.

Write your program and test it on a sibling, friend, or fellow student.

Errors
Think about the types of errors a user can make. Add at least one kind of error handling to your program.

What to Submit
Save your program with a .txt extension. You cannot upload a .py file.
Before you turn your project in, read the rubric.

I need this to be original work

Answers

Answer:

finished = False

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

while True:

 pick = input("Would you like to practice addition (+) or multiplication (*)?")  

 

 if pick == "+":

   for o, k in zip(numA, numB):

     ans = input(f"What is {o} + {k}?")

     

     if ans == str(o + k):

       print('Correct!\n')

     else:

       print(f"Incorrect! The correct answer was {o + k}\n")

   finished = True

 

 elif pick == "*":

   for o, k in zip(numA, numB):

     ans = input(f"What is {o} * {k}?")

     

     if ans == str(o * k):

       print('Correct!\n')

     else:

       print(f"Incorrect! The correct answer was {o * k}\n")

   finished = True

 

 else:

   print('Incorrect Input!')

 

 if finished:

   print('Thanks for playing!')

   break

Explanation:

aduhhhh

Question: 11
Which of the following rules is the least specific?
#info
p.info.important
.info
p.info

Answers

Answer:

The detail answer to this question is given in the explanation section.

The correct answer is .info

Explanation:

Let look as each statement

p.info.important

this is a specific  because it says

go to important property which is inside info property  which is inside P

.info  is less specific

because it will go to .info No function is  given whose property is this.

p.info

This is some what specific. As it says select .info property which is inside p

What is the value of the variable result after these lines of code are executed? >>> a = 5 >>> b = 2 >>> c = 7 >>> result = ab - cb An error occurred. 6 24 -4

Answers

Answer:

The result of this is -4 is explained below.

Explanation:

if we properly write the question

a = 5  

b = 2  

c = 7

result= (a*b) - (c*b)

print(result)

The result of (a*b) =  5*2 = 10

The result of (c*b) = 2*7 = 14

now   (a*b) - (c*b)  =>   10-14  =>  -4

So the correct answer is -4

Answer:

An error occurred.

Explanation:

QUESTION IN PIC HELP

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

In this question, there are four div tags that are given with the style of z-index.

To implement these div tags with z-index style in HTML, the code is given below:

<!DOCTYPE html>

<html>

<head>

<style>  

div {position: absolute;}

#container div {

 background-color: lightblue;

 border: 1px solid #333333;

 width: 100px;

 height: 100px;

 opacity: 0.5;

}

</style>

</head>

<body style="position:absolute">

<h1> z-index</h1>

<div id="container">

 <div style="top:20px;left:20px;z-index:1;">z-index 1</div>

 <div style="top:40px;left:40px;z-index:10;">z-index 2</div>

 <div style="top:60px;left:60px;z-index:0;">z-index 3</div>

 <div style="top:80px;left:80px;z-index:100;">z-index 4</div>

</div>

</body>

</html>

In this code, four div tags are implemented with their z-index. When will you run this code, you will see the div tag with the lowest z-index show behind all other div tags, and the div tag with the highest z-index overlap all other lowest z-index div tags. The div tag that is the highest z-index value overlap all others.

Therefore, the div tag with the highest z-index will actually be seen.The correct option to this question is:

<div style="z-index:100;"></div>

       

HOWARD!!!!!! THE PHONE IS RINGING!!!!!!!!!
Here's a crazy idea MA ANSWER IT!!!!!!!!!
That's Howard and his mom, Debbie Wolowitz from the big bang theory

Answers

Answer:

i am confused

Explanation:

Answer:

okay...

Explanation:

Jason wants to add an animated logo to his web site. Why type of image should he use? (5 points)
GIF
IMG
JPG
MPG

pls help mehhhh

Answers

Answer:gif

Explanation:

“ In short, GIFs are a series of images or soundless video that will loop continuously and doesn't require anyone to press play.”

Answer:

GIF

Explanation:

A GIF Is a moving picture, like a short looping video

Which of the following are examples of the good use of indentation and line breaks?
Choose all that apply.
the use of line breaks to
separate segments of code
the use of indentation to create segments of code that are easy to identify
the omission of line breaks so that code can be written without any interruption
the use of indentation that hides segments of code
ANSWER: A & B

Answers

A and B

bro trust me....

Answer:

A and B i got it right thanks to the guy above me

Explanation:

If you had a circuit with a voltage of 228 and a resistance of 13,the current would be ____ amps. (ROUND TO TWO DECIMALS PLACES) hint....using V=IR Rewrite the question to solve for I.

Answers

Sidjej skjssj delete 229 decimal v=

PLEASE HELP ME!!!
What information will be displayed as a result of an advanced search using the NOT command?

Answers

Answer:

Use NOT in a search to:

Explanation:

exclude words from your search

narrow your search, telling the database to ignore concepts that may be implied by your search terms

example:  cloning NOT sheep

15 points
Choose all of the statements that describe a serif typeface

no points on the ends of the characters
guides a reader’s eyes from one character to the next on printed documents
ends of the characters have finishing points
easier to read on different computer setups


Choose all of the statements that describe a sans serif typeface

more easily digitized
easier to read on small mobile devices
guide a reader’s eyes from one character to the next on printed documents
no points on the ends of the characters

Answers

Serif typeface:

ends of the characters have finishing points

guides a reader's eyes from one character to the next on printed documents

Sans serif typeface:

more easily digitized

easier to read on small mobile devices

no points on the ends of the characters

The correct statements for the Serif typeface are:

ends of the characters have finishing pointsguides a reader's eyes from one character to the next on printed documents

What is a Font?

This refers to the use of characters in a particular design while using text which makes a written work artistic.

Sans serif typeface:more easily digitizedeasier to read on small mobile devicesno points on the ends of the characters

Read more about typefaces here:

https://brainly.com/question/1991747

#SPj2

What is a compiler? O a tool used to integrate multiple software programs O a tool used to extract a single software program from an integrated collection of programs O a computer software application that translates binary computer machine language into a computer programming language a computer software application that translates a computer programming language into a binary computer machine language O


Please Help I'm testing!!!! ILL MARK YOU BRAINLIEST TO WHOEVER HELPS ME​

Answers

Answer:

Here is an explanation if this helps this is what i know :)

Explanation:

a program that converts instructions into a machine-code or lower-level form so that they can be read and executed by a computer.

Answer:

It is C on Edge, or a computer software application that translates binary computer machine language into a computer programming language

Explanation:

A compiler is "a program that converts instructions into a machine-code or lower-level form so that they can be read and executed by a computer."

C would be correct because you are translating machine code, or binary language, into code that can be executed by a computer, or a computer programming language.

What feature allows you to access previous copies of a document on OneDrive?

Answers

Answer:

go to downloads and find drives

Explanation:

heeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeelp pt.3

Answers

Answer:

i guess option 1

I'm back after 2 weeks.. How is everbody?

Answers

Doing good just chilling doing work

Select cell A1. Activate the Track Changes feature, highlight all changes on screen, click the When check box to deselect it, and then create a History worksheet. Select the data on the History worksheet, copy it to the Clipboard, add a new worksheet (in the third position), and paste to keep source column widths. Rename the sheet Changes.

Answers

Answer:

The Track changes feature in Microsoft Excel is used to monitor changes made to a or all worksheets in a workbook. These changes can also be compiled in a new worksheet.

Explanation:

To track changes made to a cell or group of cells and save it to a new worksheet, go to the review tab, click on the Track Changes option and select Highlight Changes in the changes group, then click on the highlight track changes dialog box, input "All" in the "When" text box option and click the "list track change in new sheet" option to save changes in a new worksheet, then click ok.

What is programming? ​

Answers

the process or activity of writing computer programs.
Programming is the implementation of logic to facilitate specified computing operations and functionality.

The horizontal bar at the top of a web page that typically holds a page title or course information is called a?

A. Banner
B. Headers
C. Favicon
D. Frame rate
E. Broobar

Answers

Answer B) Headers

Explanation:

I just took a Tech class, im pretty sure its headers. Hope this helps! -3-

write any four commandments of Computer ethics​

Answers

Answer:

Thou shalt not use a computer to harm other people

Thou shalt not interfere with other people's computer work

Thou shalt not snoop in other people's computer files

Thou shalt not use a computer to steal

Thou shalt not use a computer to bear false witness

Thou shalt not appropriate other people's intellectual output

Explanation:

Ivan wants to have code in a game that will make it possible to change the speed of a swimmer in the game. Which of these does Ivan need?

A.
a Boolean value

B.
output

C.
a variable

D.
a database

Answers

Answer:

C. Variable

Explanation:

I hope it helps

Why were people more likely to pay attention to the surroundings in the stone
age days?​

Answers

Answer:

cause every stinking thing wanted to kill them and they were exposed to the elements

Explanation:

:P happy to help hope it does

Robin wants to make a database of all of the software on a laptop. Which of the following should be left off of the list?

A.
a program that edits photos

B.
the camera on the laptop

C.
an app for sharing photos

D.
a program that organizes photos

Answers

Answer:

B, I believe

Explanation:

Since software is code and hardware is something physical, the camera  would not be on the list.

9.4 Code Practice
The question is in the photo because this would’ve been too long to type and this is in Python

I need this kinda asap!

(Sorry for asking a lot and I’m sorry if the photo is hard to see I tried my best to get everything)

Answers

I've included my code in the picture below. Best of luck.

What is the location used by users to configure delegate access on their own mailboxes?

O Backstage view > Account Settings

O Backstage view > Permissions

O Inbox > Permissions

O Calendar > Permissions

Answers

Answer:

Backstage view > Account Settings

The delegate access for the mail can be granted with the change in the account settings from the backstage view.

What is delegate access?

Delegate access is given as the feature in the Outlook that has been used for the sharing of the folder in the mail. The delegate access has been considered as the access to someone else on one behalf.

The location used by the user that enables him with the delegate access to their mail by settings of backstage view followed to account settings. Thus, option A is correct.

Learn more about delegate access, here:

https://brainly.com/question/16930004

#SPJ2

why is it important to prevent financial loss

Answers

Answer:Typically, loss prevention is seen as a cost to the business, because it involves expenditure – of time, energy, and sometimes money. However, loss prevention strategies that are carried out effectively and efficiently will not only protect your bottom line, but can help your businesses run more smoothly, too.

Explanation:

Need help on this it’s the last one I need

Answers

Design a ringtone like it says

1. What is output to the screen by the following code?
int n = 10;
while (n > e)
n--;
System.out.print (n%4 +
");
a. 2103210321
b. 21032 103 2
C. 1032 1032 10
d, 103210321
e. 1230123012

Answers

Answer:

C will be your answer because i love you you like

Explanation:

which statement is true? O A Future games will be more context oriented. OB. Future games will be more product driven. Future games will incorporate nominal technologies. O D. The development process of future games will focus on products and genres. Which statement is true​

Answers

Answer:

B

Explanation:

Other Questions
The difference of z and 8 Edhesive 6.5 code practice ool the ratio of boys to girls is 5:3 if there are 385 boys in the school, how many students are there altogether? please help. BRAINLIEST to correct answer!! I will give out the brain thing and extra points, image below. What is the equation of the line with points represented in the table?A 2-column table with 3 rows. Column 1 is labeled x with entries negative 8, 4, 8. Column 2 is labeled y withentries 6, negative 3, negative 6.What can you conclude about the line represented in the table? Select all that apply.Using either slope-intercept or point-slope forms will result in different equations.Using either slope-intercept or point-slope forms will result in the same equation.The slope is Negative four-thirds.The slope is Negative four-thirds.The y-intercept is 2.The y-intercept is 0. What are some words to describe Bess from the poem, The Highwayman by Alfred Noyes? Please answer !! The football team at the local high school was doing a fundraiser to raise money for a tournament. They sold chocolate chip and oatmeal raisin cookies. The amount of oatmeal raisin cookies they sold was 10 less than 4 times the amount of chocolate chip cookies. If they sold 525 cookies how many of each type did they sell? Please answer and show work!!!!!!!!!!!! Currently there are two assets to invest. Asset A has a beta of 0.5 and an expected return of 0.04, and Asset B has a beta of 1.2 and an expected return of 0.16. These are the only two assets available for investing. Your task is to find what combination of these two assets will give you an portfolio expected return of 0.13 Balance the following: C + B BCAg + SO AgO + S Two lasers are shining on a double slit, with slit separation d. Laser 1 has a wavelength of d/20, whereas laser 2 has a wavelength of d/15. The lasers produce separate interference patterns on a screen a distance 5.20m away from the slits.1. Which laser has its first maximum closer to the central maximum?2. What is the distance ymax--max between the first maxima (on the same side of the central maximum) of the two patterns?3. What is the distance ymax-min between the second maximum of laser 1 and the third minimum of laser 2, on the same side of the central maximum? 1v1 lol i'm a girl the code is za9nja By the time Mount St. Helens finished erupting, a crater had formed at its top. Forests had been destroyed for miles and rivers had been blocked by debris. Clouds had even blocked out the sun in the entire state. It took years for the environment to recover.Select the statement that explains why it is was difficult for the area to bounce back from the Mount St. Helens eruption.Question 8 options:The resulting air pollution was so intense that it spread to surrounding states and was impossible to clean up.The damage to the environment included the development of a crater at the top of the volcano, which was dangerous.The damage to the environment was widespread and devastated forests and rivers, leaving behind debris.The resulting damage to the waterways left waste in the streams, ri Read this excerpt from "The Prediction." The numerous terrifying ways the many terrible things that could go wrong distracted him as he got ready, and he showed up with his jacket wrinkled. He left his glasses, and squinted at everyone. Which statement best describes the narrative point of view in this excerpt? The first-person narrator tells a personal story about his day. The second-person narrator describes the details of a day to an audience. The third-person limited narrator lists the events of a boy's day. The third-person omniscient narrator offers insights about a boy's day. Identify the state(s) of matter that each property describes.takes the shape of its container:gasliquidsolidfills all available space:gasliquidsolidmaintains its shape:gasliquidsolidcan be poured:gasliquidsolidis compressible:gasliquidsolidhas a fixed volume:gasliquidsolid PLSASE HELP THIS IS FOR SPELLING. HELPP! (my spelling tho) Which is the closest synonym for the word advocate?Advocate (verb) - to speak or write in favor of something.A ProposeB SupportC ProhibitD Suspect Yesterday morning Marcia walked from home 3km towards school plus half the distance to her school. At the end of the walk she arrived at school. How far is the school from her home? what is the formula for potassium? Lucy has a goal of walking at least 15 miles she walks at a rate of 5 miles per hour which inequality can Lucy used to find H the number of hours she should walk in order to meet or exceed her goal