What is the purpose of HTML?
A. to store data
B. to structure a document
C. to style a document
D. to add functionality

plz it a test

Answers

Answer 1
You can style and structure with it so it’s either one of those

Related Questions

1 Sales tax
5.00%
Use the image to help you answer the question.
Which formula will tell you the total "Before tax"
price using cell references?

A. =3+2+50
B. =B8
C. =B4+B5+B6
D. =B4*B5*B6

Answers

Answer:

Future value (FV) tells you the value in the future of money deposited in a bank account ... We can use Excel to make a table of how the future value grows with the ... 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. A. B. C. D. E. F. Interest. 6% ... To answer the question, we compute the IRR of the investment and compare it.

Explanation:

Answer:

C. = B4+B5+B6

Explanation:

Edge 2020

True or false: Machine learning lets computers
learn how to do things they weren't
specifically programmed to do.

Answers

Answer:

True

Explanation:

Why is it a good practice to use functions in programming? Select the best answer.

A.It is faster to run the code using functions.

B.Functions allow us to reuse common code.

C.All of these are correct.

D.It is easier to debug the code using functions.

Answers

Answer:

C. All of these are correct answer from the options for the question that u have given...

The good practice to use functions in programming is all of these are correct. The correct option is C.

What are functions in programming?

The repetitious codes are removed by breaking a program down into functions, which not only reduces the size of the program but also improves its effectiveness. If there were repetitive codes, we would need to alter the program from several locations rather than just one.

As a result, organizing programs into functions aid in good administration and shortens programs by removing repeated code. A functional programming language is a particular kind of language that allows for the creation and application of pure mathematical functions, along with the use of conditional expressions and recursion to carry out various computations.

Therefore, the correct option is C. All of these are correct.

To learn more about functions in programming, refer to the link:

https://brainly.com/question/24297344

#SPJ6

What are the differences between linear algorithm and iterative algorithm

Answers

Answer:

For example Tower of Hannoi algorithm is made easy by recursion while iterations are widely used, efficient and popular. Recursive vs Iterative Algorithms: Approach: In recursive approach, the function calls itself until the condition is met, whereas, in iterative approach, a function repeats until the condition fails.

Use the drop-down menu to complete the steps for using the Goal Seek feature.
1. Go to the
tab.
2. In the
from the drop-down What-If Analysis menu.
3. Specify the cell that contains the formula to solve and enter the desired result.
4. Specify the
that contains the value to adjust.
5. Click OK
group, select

Answers

Answer:

1. Go to the  data tab.

2. In the  forecast ribbon from the drop-down What-If Analysis menu.

3. Specify the cell that contains the formula to solve and enter the desired result.

4. Specify the  changing cell that contains the value to adjust.

5. Click OK

Answer: see below

Explanation:

Imagine you are playing a video game like Super Mario or Sonic and you lose your last life. What are THREE distinct things that will happen once your lives become 0? Give three examples. Then put on your programmer's hat. Describe your examples using pseudocode; in other words, you don't have to use the exact language Scratch blocks would, as long as you write out each step in such a way that it's clear what the code would do.

Answers

Answer:

Three distinct things that would happen are

1) There would be a death animation played

2) GAME OVER text would appear

3) The game would most likely start over at the first level

Explanation:

The pseudocode:

1) Play death animation and music

2)Stop animation and music

3) Display Game over text

4) Remove game over text

5) Reset level

6) Open on beginning screen/level

how do you do the ask tutor thing on the computer?

Answers

Answer:

what do you mean

Explanation:

ayo which one is better genshin impact or fortnite, i personally prefer genshin impact since it's not boring and it has so many other things you could do when you're not doing a story quest or daily commissions

Answers

Answer:

Genshin Impact and you can fight me on it.

Explanation:

The game has way more to explore and offer with different fighting styles which include Magic and Swords fighting. It also has more story and I appreciate that!  

The side quests to get tedious though so the final rating  is 8.79//10.00

Answer:

genshin

Explanation:

if you hard working right now go to this EASY question


#BRAINLY and I will give you brainlist something I forgot what's it called for your hard work

Answers

Ok, where is the question so I can try my best?
Whats the question??? Lol

Write a C++ program to add two integers. Make a function add() to add integers and display sum in main() function.

Answers

Answer:

In C++:

#include <iostream>

using namespace std;

int add(int a, int b){

   int c = a + b;

   return c;

}

int main(){

   int a, b;

   cout<<"Enter two numbers: ";

   cin>>a;

   cin>>b;

   cout<<add(a,b);

   return 0;

}

Explanation:

The add() function begins here

int add(int a, int b){

This adds the two integers

   int c = a + b;

This returns the sum of the two integers

   return c;

}

The main begins here

int main(){

This declares two numbers

   int a, b;

This prompts user for two numbers

   cout<<"Enter two numbers: ";

The next two lines gets the two numbers

   cin>>a;

   cin>>b;

This gets the sum of the two numbers from the add() function. The sum is also printed

   cout<<add(a,b);

   return 0;

}

You learned that you can use the tags to insert a link to another webpage. One problem that webpage developers face is that, after a time, links may no longer work. Can you think of ways that you can avoid broken links?

Answers

Answer:Image Control

We can use the height and width properties to control the size of our image. Let’s say we only want the recipe image to take up approximately one-third of the page. Do you remember from math class what percentage one-third is? Type in the following CSS rule, and watch your picture change size before your very eyes!

img {

   height:33%;

   width:33%;

}

That wasn’t too difficult, right? Let’s make the image stand out a bit more by adding a border. Inside the img rule, add the following declarations:

border-style:dashed;

border-width: 5px;

Your picture should now have a dashed border around it that is five pixels in width. Play around with the different border styles that are available. You should see a drop-down box of choices, including dotted, dashed, double, groove, inset, and outset. You can also adjust the width of your border. Using your informative guessing skills, can you predict what property you might use to change the color of the border? Try it and see if you’re right!

Explanation:

 this is a direct quote from my lesson

What is the Denary representation of this 8 bit number > 01001111 ?

Answers

The Denary representation of this 8 bit number 01001111 is 79.

Decimal number

A binary number is a number expressed in the base-2 numeral system or binary numeral system. Binary numbers are either 0 or 1.

The decimal numeral system is the standard system for denoting numbers. Decimals are a set of numbers lying between integers on a number line.

Converting the number 01001111 to decimal:

01001111 = (0 * 2)⁷ + (1 * 2)⁶ + (0 * 2)⁵ +  (0 * 2)⁴ +  (1 * 2)³ +  (1 * 2)² + (1 * 2)¹ + (1 * 2)⁰ = 79

The Denary representation of this 8 bit number 01001111 is 79.

Find out more on Decimal number at: https://brainly.com/question/1827193

Two friends can share 100 songs from their Bluetooth enabled mobile devices
a. True
b. False
c. They need internet connection
d. Not sure

Answers

Answer:

A

Explanation:

If they are connected via bluetooth, you can share unlimited amounts of anything.

Lin wants to play an online game with her friends. She read the description of the game and knows it contains several features with addictive design, including rewards for completing levels and long game times with penalties for quitting early. She likes the game but doesn’t want to get sucked in and skip her homework (which has happened before)! Name two guidelines Lin should set for herself before playing the game.

Answers

Answer:

Set a time limit for herself. Ask her parents for help monitering her app usage.

why would computer programmers want to use an object to change the instructions they already created in a computer program ​

Answers

Answer:

bank rupt

Explanation:

no money on your card lol have  a graey day dont wish for what your not willing to work for

Where are methods listed in a UML class diagram showing three parts?
in the top third of the diagram
in the middle third of the diagram
in the bottom third of the diagram
anywhere in the diagram a lowercase m is shown

Answers

Answer:

the bottom third

Explanation:

Check out the exampe below.

swim() would be an example of a method.

Other Questions
Triangle FEG is similar to triangle IHJ. Find the value of y. PLEASE ANSWER!!! of Composite Shapes P5driguezFigure 10: Find the area of this composite shape.Find the area of this composite shape.15 yd4 ydSubi10 yd6yd Which one of the points A(5.2). B(6,-3) and C(4.7) is the mid-point of the other two? Check your answer by calculating two distances. Macy's is going out of business and is having a HUGE sale. A dress that originally costs $40 is now 40% off! What is the final price of the dress? I need help with this please help me :( Omar Khayyam was most famous for __________. A.architecture B.poetry C.astronomy D. medicine what is the definition of the word PER? what is 190 180=7? If all entries of A and A^1 are integers, prove that detA = 1 or 1. Find the measure of each missing angle. Subject: Geometry Unit 5: Relationships in TrianglesHomework 1: Triangle Midsegments if the cost of a tv starts at 1 million in 1995 then jumps to 1.3 million in 1998. how much would the estimated cost be in 2021? Name the quadrant in which lies. tan(theta) Convert 96 ounces to pounds.6 lb.O4 lb.10 lb.5 lbPLS HELP What is most likely connotation of the word Frugal in the following sentence? By being Frugal, my grandfather was able to save enough money to take my grandmother to Hawaii. Help me find the slope of the line JUST WANTED TO LET YOU KNOW GOD LOVES YOU and if you have a verse comment it PLEASE HELP ME. There are only two choices. A. A man, whose mother probably died when he was young, describes how Ethiopian food reminds him of his mother.B. A man described how sad he is because he has never seen a picture of his mother. Which choice best defines citing evidence?Aattempting to understand the background of the authorB explaining the steps you took to interpret the textC. referring to the text to support your interpretation of a textD. indicating the extra sources you used to understand the text Multiply.(2x + 4)(2x-4)A. 4x2 + 16B. 4x2 - 16C. 4x2 + 16x-16D. 4x2 - 16x-16 This week Leah got a promotion at work that came with a 6 % pay increase. If now her monthlysalary is $2862, how much was she making before the raise?