write an HTML document to display a^3-b^3

Answers

Answer 1

Answer:

DOCTYPE html>

<html>

<body>

<h1> a^3-b^3 </h1>

<h2> a^3-b^3 </h2>

<h3> a^3-b^3 </h3>

<h4> a^3-b^3 </h4>

<h5> a^3-b^3 </h5>

<h6> a^3-b^3 </h6>

</body>

</html>

DISPLAYED AS HEADINGS


Related Questions

Formulas should follow the___
last cell used
signs
order of operations
call of operations

Answers

Answer:

Order of operations

Explanation:

How do commands inside an onEvent run different from commands outside?

Answers

Answer:

This is probably the most important reason. In an event-driven architecture, there can be no question that an event raised represents something that has happened.

Now, because Commands are something we want to happen, and Events are something that has happened, we should be using different verbs when we name these things. This drives separate representations.

Choose the term that describes each step of the cycle.

------- : gets next instruction

---------- : interprets instruction

----------- : carries out instruction

------------ : saves result of instruction

Answers

Answer:

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

Explanation:

This question is about to tell the best and suitable terms for the given descriptions in the question.

As we know that a computer program is based on sets of instructions. The CPU carries out the processing using the fetch decode and execute cycle.

It is responsible for implementing a sequence of instructions called a computer program that takes input, processes them, and outputs the result based on processing.

A CPU mainly has three components such as control unit, Arithmetic logic unit,  and register.

The control unit controls all parts of the computer system. It manages the four basic operations of the Fetch Execute Cycle such as Fetch, Decode, Executes, and Storage.

So the correct terms of this question are:

Fetch: Gets next instruction

Decode: interprets the instruction

Execute: Carries out instruction.

Store: Save results of instruction.

Answer:

A). Fetch : gets next instruction

B). Decode : interprets instruction

C). Execute : carries out instruction

D). Store : saves result of instruction

Explanation:

I just did the Test on EDGE2020 and it's 200% correct!  

Also, heart and rate if you found this answer helpful!! :) (P.S It makes me feel good to know I helped someone today!!)  :)

Create a for-loop which simplifies the following code segment: penUp(); moveTo(100,120); turnTo(180); penDown(); moveForward(25); penUp(); moveTo(100,120); turnTo(180); penDown(); moveForward(25); penUp(); moveTo(100,120); turnTo(180); penDown(); moveForward(25);

Answers

Answer:

for(var i=0; i<3; i++) {

  penUp();

  moveTo(100,120);

  turnTo(180);

  penDown();

  moveForward(25);

}

Explanation:

The i variable is the loop dummy. The code block will be executed 3 times.

Hi, I couldn't delete my questions so I'm just editing them so you don't have to do it.

Answers

Ok that got h in by going go off do us do

Where should citations be included in your research paper? Select all that apply.

In the header

At the end of every paragraph

As footnotes

In a separate Works Cited page

(EASY!!! BUT I NEED HELP PLEAASE!!!)

Answers

Answer:

in a separate works cited page

What is the output of the following code:
lang=
['Python','C','C++, JAVA,ASP'PHP',VB', Oracle
'MySQL)
list1 = lang(2:-2]
list2 = langl-2:-5)
list3 = langl: : 3]
print(list)
print(list)
print(list3)​

Answers

Answer:

Syntax error.

Explanation:

There are many typing mistakes in this source code.

What is the purpose of the Print Area feature?

printing graphs and charts for the document
printing how many copies of a document should print
selecting specific cells and ranges to print
selecting color for the Print Area’s border

Answers

Explanation:

printing how many copies of a document should print

Answer:

C. selecting specific cells and ranges to print

What are the lines of communication on a motherboard?

Answers

Answer:

buslines

Explanation:

hybfndndndjdkd

Write code which takes inputs and creates two Rectangle objects (using the edhesive.shapes.Rectangle class) and compares them using the equals method.

JAVA!!

Answers

Answer:

System.out.println("Enter length:");

Scanner scan = new Scanner(System.in);

Double x = scan.nextDouble();

System.out.println("Enter 2 lengths:");

Double a = scan.nextDouble();

Double b = scan.nextDouble();

Rectangle rect = new Rectangle(x);

Rectangle rect2 = new Rectangle (a,b);

if (rect2.equals(rect)){

 System.out.print("Congruent Rectangles");

}

else {

 System.out.print("Different Rectangles");

}

 }

}

Explanation:

Complete the sentence.
A _______ error might appear when you are attempting to view a secure web page

Answers

Answer:

An internal server error

Which term means an unsecure protocol used when remotely accessing a computer?

Transmission Control Protocol (TCP)
Secure Shell (SSH)
Telnet
Internet Protocol (IP)

Answers

Answer:

9Internet Protocol (IP)

Answer:

The answer is Secure Shell (SSH)

Question # 6 Fill in the Blank You designed a program to create a username using the first three letters from the first name and the first four letters of the last name. You are testing your username program again for a user whose name is Paula Mano. The output should be

Answers

Its PuaMano

Explanation:

got it wrong and it shows this answer for edge

why is it when you put earbud aux cords in a phone or computer they sound weird until you move the aux cord? Then it is somehow clear. Why?

Answers

Answer:

that might just be the headphone cord itself or it might be the port on the pc/phone

Explanation:

i had this happen with my old droid razr hd i thought it was the aux cord on my speaker and head phones but i used the same things on a friends phone and they worked just fine and this might be do to an old  or broken port on the phone /c my phone headphone port got used almost everyday and it was just the port you can replace this on some tech or you could just use bluetooth if the tech doesent have it buy and adapter.

            hope this helps!!!

. Write a Python command to assign the value 80.35 to a variable called 'point'.

Answers

Answer:

point=80.35

Explanation:

HELP!!!!!
Your colleague has made a suggested change to an important document you are both working on. You disagree with their suggested change. They will be reviewing the changes you make before the final version of the document is submitted to your boss. You both work remotely and are in radically different time zones. What is the best step to take next?

Answers

Leave the room and let someone else figure it out!

Fill in the blanks.
1.
Cloud offers the services to a limited and well-defined number of parties.
model.
2. Cloud computing services are based on a
3.
provides a cloud platform and allows developers to create, test, and ru
their program, website, web app, etc.
4. In
, you can keep files, folders, backups and everything important, online
5. Whenever you delete any file, it goes into
folder​

Answers

Answer:

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

Explanation:

This question is about to fill-in-the-blanks. To correct answer to each sub-question is given below:

1.

Cloud offers services to a limited and well-defined number of parties.  It is a Private model.

2.

Cloud computing services are based on software as a service (SaaS), infrastructure-as-a-service (IaaS), and platform-as-a-service (PaaS).

3.

Google provides a cloud platform and allows developers to create, test, and ru n their program, website, web app, etc

It is also noted other cloud platforms such as Amazon cloud services, Microsoft Azure cloud services provide such functionalities.

4.

In  Cloud backup storage, you can keep files, folders, backups, and everything important, online

5.

Whenever you delete any file, it goes into  Recycle Bin (if you are using windows) or trash (if you are using MAC) folder​

Which of the following ideas would not be appropriate for an essay
comparing two dog breeds?
A. Terriers are feisty and smart, which can cause headaches for their
owners.
B. My dog Sally would play fetch for hours.
C. With a couple of exceptions, terriers are smaller than retrievers.
O D. Broadly speaking, retrievers are docile and friendly.

Answers

Answer:

B.

Explanation:

The following ideas would not be appropriate for an essay comparing two dog breeds:  My dog Sally would play fetch for hours. Thus option (B) is correct.

What is an essay?

An essay is defined as a brief formal piece of writing and an essay deals with a particular subject. It is generally written to try to influence the reader using selected research evidence.

In general, an academic essay has three parts:

An introduction part ,that provides the reader an idea of what they are about to learn and presents an argument in the form of a thesis statement

A body part, or middle section, that provides evidence used to prove and persuade the reader to accept the writer's particular point of view

A conclusion that summarizes the content and findings of the essay.

The following ideas would not be appropriate for an essay comparing two dog breeds:  My dog Sally would play fetch for hours. Therefore, option (B) is correct

Learn more about an essay here:

https://brainly.com/question/20426054

#SPJ5

How do information systems help organizations?

Answers

Answer:

Information systems assist in disseminating information by allowing managers and other organization leaders to store data in folders and documents that can be seamlessly shared with the appropriate employees.

Explanation:

Write the count below the rests.

How do I do I do this?
Help guys

Answers

Well 1234 for the first one

8.6 Code Practice: Question 1
Write a function named buildArray that builds an array by appending a given number of random two-digit integers (10-99). It should accept two parameters — the first parameter is the array, and the second is an integer for how many random values to add, which should be input by the user.

Print the array after calling buildArray

Answers

In python 3.8:

import random

def buildArray(arr, nums):

   i = 0

   while i < nums:

       arr.append(random.randint(10,99))

       i+=1

arr = []

numbers = int(input("How many values to add to the array:\n"))

buildArray(arr, numbers)

print(arr)

I hope this helps!

The function named buildArray that builds an array by appending a given number of random two-digit integers (10-99) and accept 2 parameters is represented below

import random  

def buildArray(array, integer):

   i = 0

   while i < integer:

       array.append(random.randint(10, 99))

       i += 1

   return array

print(buildArray([], 12))

The code is written in python.

A function is declared called buildArray. This function accept 2 parameters which are arrays and integer.

i is use to declare a variable assigned to zero.

while i is less than the integer(one of the parameter), random number between 10 and 99 is appended to the parameter array.

The value of i keeps on increasing until it becomes less than the integer.

The filled array is returned.

Finally, we call the function with the required parameters.

The bolded portion of the code are keywords in python.  

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

What keyword can we use within a form to pass it as an argument to a JavaScript snippet? A. form B. onSubmit C. send D. this

Answers

Answer:

the answer is: this

Explanation:

trust me

The total mass for the substances after any
reaction change from its original.​

Answers

Answer:

If this is a T or F the answer would be TRUE

Explanation:

May I have brainliest please? :)

Answer:

No, the total mass of the substance doesn't change from it's original after any reaction

Explanation:

Due to Law of Conservation of Mass

A + B = AB

ex :- C (12) + O2 (16×2) = CO2 (44)

what is media ethics. Explain two forms of maintaining media ethics with examples​

Answers

Media ethics is the best division of applied ethics dealing with the specific ethical principles and standards of media, including broadcast media, film, theatre, the arts, print media and the internet. The field covers many varied and highly controversial topics, ranging from war journalism to Benetton ad campaigns. In relation to news coverage it includes issues such as impartiality, objectivity, balance, bias, privacy, and the public interest. More generally, it also includes stereotyping, taste and decency, obscenity, freedom of speech, advertising practices such as product placement, and legal issues such as defamation.

where to buy a ps5
I really want one please help meh

Answers

Answer:

You can buy one at gamestop, target, walmart, best buy and probably more stores

Answer:

Amazon, walmart, target, gamestop?

Explanation:

I'm sure a quick go ogle search will get u what u want to see, have a nice day and I hope u get what u want!

what format can be applied to text in excel?

Answers

You can apply accounting format,date,numbers, currency, percentage or even fraction

PLEZ ANSWER QUICK
Another name for a web page's address is _____.

ISP

web server

HTTP

URL

Answers

The answer is URL. ........

Answer:

URL is the other name for a web page's address

Which of the following is NOT an example of application software?
Internet Explorer web browser
Photoshop image editing program
Microsoft PowerPoint presentation software
Windows operating system

Answers

Application software is a type of software that also carries out another personal, educational, and business function, and its further discussion can be defined as follows:

Each application is designed to support the user in a particular process that could be associated with productivity, creativity, and communication.In this question except for Windows all "web browser,  Photoshop, and presentation software" is a type of Application software, that is run on OS.  Windows is a software accumulation known as just an OS that controls a PC (personal computer).

Therefore, the final answer is "Windows operating system ".

Learn more:

brainly.com/question/2949220

Icon view, list view, and details view are all common views provided by which kind of program?
a web browser to view web pages
a word processor to view headings
a file browser to view folders
a file manager to view files and folders

Answers

Answer: The standard program that uses common views such as the icon view, list view, and details view would be the program known as "File Explorer" (Windows) or "Finder" (Mac). This program uses all the views to make selecting and tracking down certain files a much more painless and easier process to complete.

Explanation:

boom : )

Answer: Maybe C

Explanation:

Which of the following statements best compares and contrasts the role of editors in a television news room and editors at a newspaper?

a.) Both television and print editors work to ensure the quality of production; however, television editors must have a background in film media.
b.) Both television and print editors must make sure content is accurate and appropriate; however, print editors must also consider the length of the content.
c.) Both television and print editors must make sure their sources are reliable; however, fewer people read print news, so fewer would know if a print editor makes a mistake.
d.) Both television and print editors work under tight deadlines, which cause a great deal of stress; however, print editors finish their work sooner than television editors.
Need this now please, thank you!!!!

Answers

Answer: It is A

Explanation:

Other Questions
The New Jersey Plan was concerned that.................................A. all of the aboveB. the Virginia Plan did not give a strong enough central governmentC. the larger states should have more power.D. smaller states should not be deprived of equality that they currently had. Ned is learning about cells in science class. He drew a picture to model a cell. What can he show with his cell drawing?A)how big a cell isB)how fast cells growc)what cells do to moveD)what the cell parts are Wenn die Schuhe zu klein sind, kann man sie nicht mehr _____.spielenessentragenParty 5 1/2 as an improper fraction is: Please help The question is in the picture linked to this question Thank you also it's about science Helpppppppppppppp plzzzzzzz helpppppp SundayMondayWhatTheFreakSaturday WHOEVER RESPONDS TO THIS FIRST WILL GET BRAINIEST!!!!!!What is the velocity of a car going 4miles in 30 seconds, with the displacement of 36? The Pony ExpressChapter IAt A Nation's CrisisThe fall of Fort Sumter in April, 1861, did not produce the Civil War crisis. For many months, the gigantic struggle then imminent had been painfully discernible to far-seeing men. In 1858, Lincoln had forewarned the country in his "House Divided" speech. As early as the beginning of the year 1860 the Union had been plainly in jeopardy. Early in February of that momentous year, Jefferson Davis, on behalf of the South, had introduced his famous resolutions in the Senate of the United States. This document was the ultimatum of the dissatisfied slave-holding commonwealths. It demanded that Congress should protect slavery throughout the domain of the United States. The territories, it declared, were the common property of the states of the Union and hence open to the citizens of all states with all their personal possessions. The Northern states, furthermore, were no longer to interfere with the working of the Fugitive Slave Act. They must repeal their Personal Liberty laws and respect the Dred Scott Decision of the Federal Supreme Court. Neither in their own legislatures nor in Congress should they trespass upon the right of the South to regulate slavery as it best saw fit.These resolutions, demanding in effect that slavery be thus safeguardedalmost to the extent of introducing it into the free statesreally foreshadowed the Democratic platform of 1860 which led to the great split in that party, the victory of the Republicans under Lincoln, the subsequent secession of the more radical southern states, and finally the Civil War, for it was inevitable that the North, when once aroused, would bitterly resent such pro-slavery demands.Read this sentence from the text:...for it was inevitable that the North, when once aroused, would bitterly resent such pro-slavery demandsBased on the description provided, what was the North's attitude toward slavery? (5 points)The Northern states were in favor of slavery.The Northern states expected slavery to continue.The Northern states opposed slavery.The Northern states assumed slavery would end. (7x^6+2x^5-3x^2+9x)+(5x^5+8^3-6x^2+2x-5) a package of marbles contains 20 blue marbles, 38 red marbles, 48 green marbles, and 16 yellow marbles. which color of marbles can be divided evenly between 6 people? Use the graph to determine the object's average velocityWhat is the average velocity of the object?m/sPosition vs TimePosition (m)N A 0 001020304050Time (s) Complete the following sentences with the present tense of the verb VIVIR Which of the following equations is equivalent to ab 8 = 3b, when solving for b .a = 11b = 8/2ab = -8/3 - ab = -8/a - 3 quick please!! need it ASAP!! Read the sample passage and highlighttransitional words.The Willis Tower is the ideal location for abusiness. First of all, it is the tallest buildingin the area, so it stands out from all otherbuildings. Next, it has the most impressivestate-of-the-art conference rooms for anybusiness meeting. Although the otherbuildings may be less expensive, a companythat wants to be noticed by the public shouldchoose to rent space in the Willis building. Charlie's art class is 8 hours long. How long is his class in minutes? I need help ASAP!!!! how long will it take for yumiko to run 5 miles Whenever significant expansionary policies are implemented and left in place for at least half a year or more, the likely result is:_____.