HTML coding tells a computer what to do by using a series of?

Answers

Answer 1

Answer:

Elements

Explanation:

A computer code acts as a medium by which a person can communicate with the computer machine.

One such language is known as HTML or hypertext markup language.  HTML stands for Hypertext markup language which is used to markup the language for web pages in computer.

The HTML series consists of a series of elements which are enclosed in the tags commonly called start tag and a stop tag.

Example <head>  

here,  

the head is a series of elements.

< start-tag

> stop-tag

Thus, element is the correct answer.


Related Questions

Why is it important in manufacturing to determine allowances? How do allowances relate to tolerance dimensioning?​

Answers

Answer:

Sry I can’t really help you with this one

Explanation:

16 Select the correct answer. Rachel has set up a computer network. In this network, due to a device, the computers partake in the message transfer process. Which device is this? ОА. NIC B. hub C. modem D. switch E. bridge Reset Reset Next​

Answers

Answer:D. switch

Explanation:cause it is

From the demonstration video on navigating the Outlook interface, which of the following is true? Check all that apply.

Use the ALT key on the keyboard to toggle letter keys to activate functions in Outlook.
To get to the Backstage view, click on the File tab on the top left.
The Outlook icon can be found on the Task Bar in Windows by default.
The Message Pane is where you can read the body of the message.
The Reading Pane and the To-Do List can be toggled on and off as needed.

Answers

Answer:

A, B, and E.

Explanation:

I just did it!

What does 'online social networking' mean?

Answers

Answer:

The 3rd one is correct :)

Which of these is not a rule for creating variable names?
You can’t begin with a number.
You can’t have spaces.
You can’t begin with a special character.
You can’t begin with an upper-case letter.

Answers

Answer:

You can't have spaces...........

7) Which of the following is False regarding RISC and CISC architectures?
a) CISC has variable length instruction formats while RISC has fixed length instructions. b) CISC has a larger number of instructions than RISC.
c) CISC has more addressing modes than RISC.
d) In RISC, memory access is limited to load and store instructions, while in CISC, other instructions can support memory access.
e) CISC has a larger number of general purpose registers than RISC.

Answers

D hope that helps
Have a. Good one

Write a procedure that takes a positive integer as a parameter. If the number given to the procedure is no more than 30, the procedure should return the absolute difference between that number and 30. If the number is greater than 30, the procedure should return the number doubled.

Answers

Answer:

The following code is written in C++

#include<iostream.h>

int main()

{

int n;

cin>>" Enter Number>>n;

if(n < 30)

      {

            cout<<"Absolute Difference is 30";

      }

else

       {

             cout<<"Absolute Difference is "<< 2*n;

       }

return 0;

}

Which utility is used to transform a standalone Windows Server 2012 R2 system into an Active Directory domain controller?

Answers

Answer:

The utility that is used to transform a standalone Windows Server 2012 R2 system into an Active Directory domain controller is called:

PowerShell Command Line 6.

Explanation:

An Active Directory Domain Controller is the box that holds the keys to the Active Directory, centrally managing the access for users, PCs, and servers on the network.  It responds to the authentication requests and verifies the users on computer networks.  The Active Directory is the database that organizes the company's users and computers.

2. The Internet could best be described as: *
10 points
WWW
A large spider web
A series of roads and highways
A never ending tunnel

Answers

Answer:

Explanation:

All options are correct.


You use utility software to
Select all that apply

Answers

to help analyze, configure, optimize or maintain a computer. Utility software usually focuses on how the computer infrastructure (including the computer hardware, operating system, software and data storage) operates.

Create a program to determine the largest and smallest number out of 15 numbers entered (numbers entered one at a time). This should be done in a function using this prototype: double larger (double x, double y); Make sure you use a for loop expression inside your function. Enter 15 numbers 11 67 99 2 2 6 8 9 25 67 7 55 27 1 1 The largest number is 99

Answers

Answer:

#include <iostream>

using namespace std;

double larger( double x, double y){

   if (x > y){

       return x;

   } else{

       return y;

   }

}

int main(){

   int n, max = 0;

   for (int i =0; i < 15; i++){

       cout<< "Enter item"<< i+1 << ": ";

       cin>> n;

       cout<< "\n";

       max = larger( n, max);

   }

   cout<<"The maximum number is: "<< max;

   return 0;

}

Explanation:

The C++ program defines the function 'larger' that compares and returns the largest of two numbers. The main program prompts the user for 15 numbers and the larger function is called to return the largest of the fifteen numbers given.

which option enable you to change the background colour of a slide​

Answers

Explanation:

In order to change the background color in Microsoft PowerPoint 2010 we need to go to View and Slide Master. Then, right click on the first slide and click Format Background. Then you can access the background options, including a way to change the background gradient effect or use a solid background color.

5. Describe the concept behind a digital signature and explain how it relates to cybersecurity by providing a hypothetical example of a situation in which a digital signature could enhance cybersecurity

Answers

Answer:

Could help when two doctors have to approve a patients treatment, or when two workers of the same company are working on classified information.

Explanation:

A digital signature creates a stamp on a document, that has time, location and is used to assure that the right person was the one that signed off the document and that no one changed the message or the content of the document between the signer and the receiver.

This helps in providing security and a legal frame to digital documents.

how to hack free fire dimond

Answers

Explanation:

no way

your account gets banned if u try

Answer:

Its easy

Explanation:

Give Money to the guy in the cyber then he will hack for you ,

1.Which of these is used to create a table in MS Access?
a. Datasheet View
b. Table Design View
c. Both a and b​

Answers

Answer:

I believe it's both a and b.

Explanation:

Hope this helps! ^^

C . Both a and b......

Custom actions help your users by

Answers

Answer:

D) Making it fast and easy to interact with information in your organization.

Explanation:

PLEASE MARK ME AS BRAINLIEST

5.

What will be displayed when this program finishes running?

var numbersList = [20, 10, 5]

appendItem(numbersList, 50)

appendItem(numbersList,100)

removeItem(numbersList,1)

insertItem(numbersList, 0, 30)


console.log(numbersList.length)

Answers

Answer:

Explanation:

5 is correct answer

Answer:

D. 5

Explanation:

Write a program that inputs a text file. The program should print the unique words in the file in alphabetical order. Uppercase words should take precedence over lowercase words. For example, 'Z' comes before 'a'.

Answers

Answer:

unique = []

with open("file_name.txt", "r") as file:

   lines = file.readlines()

   for line in lines:

       # assuming comma is the only delimiter in the file

       words = line.split()

       for word in words:

           word = word.strip()

           if word not in unique:

               unique.append(word)

unique = sorted(unique)

print(unique)

Explanation:

The python module opens a file using the 'with' keyword (the file closes automatically at the end end of the indentation) and the open built-in function and reads the content of the open file as a list of lines of the content.

Each line is split into a list and the unique words are collected and stored in the unique list variable.

The program is an illustration of file manipulations.

File manipulation involves writing to and reading from a file

The program in Python where comments are used to explain each line is as follows:

#This creates an empty list

wordList = []

#This opens the file

with open("myFile.txt", "r") as file:

   #This reads the file, line by line

   lines = file.readlines()

   #This iterates through each line

   for line in lines:

       #This splits each line into words

       words = line.split()

       #This iterates through each word

       for word in words:

           #This removes the spaces in each word

           word = word.strip()

           #This adds unique words to the list

           if word not in wordList:

               wordList.append(word)

#This prints the unique words in alphabetical order

print(sorted(wordList))

Read more about similar programs at:

https://brainly.com/question/19652376

Which of these is a super class of wrappers Double & Integer?
a. Long
b. Digits
c. Float
d. Number

Answers

A I’d believe sorry if it wrong

What is the purpose of creating folders in a file structure????
A. To store more than 256
location
B. To allow windows naming to be applied
C. To secure files
D. To store thousand organized way

Hurry I need help plzzzz!!!

Answers

Answer:

D

Explanation:

everything is about organised it's about how you store your things to find them faster when you need them


1. Avoid unnecessary sliding of T-square or triangles across the drawing

Answers

Answer:

The answer is "True".

Explanation:

It is vertical or ambiguous districts are called a triangle. It typically comes in different sizes but is made of photographic film or plastic. Its triangles more widely shown are 45 grades and 30 grades were x 60. The following illustrations illustrate their correct use of T-square or triangle graph lines. The T-Place a designing tool, which is used to draw horizontal and vertical lines.

Adam is so good at playing arcade games that he will win at every game he plays. One fine day as he was walking on the street, he discovers an arcade store that pays real cash for every game that the player wins - however, the store will only pay out once per game. The store has some games for which they will pay winners, and each game has its own completion time and payout rate. Thrilled at the prospect of earning money for his talent, Adam walked into the store only to realize that the store closes in 2 hours (exactly 120 minutes). Knowing that he cannot play all the games in that time, he decides to pick the games that maximize his earnings

Answers

Answer:

line = sys.stdin.readline()

print(line)

Explanation:

The first line of input is always an integer denoting many lines to read after the first line. In our sample test case, we have 6 in the first line and 6 lines after the first line, each having a game, completion_time and payout_rate.

In each data line, the game, completion_time and payout_rate are separated by a ','(comma).

The games board may change but the store still closes in 120 minutes.

Input

6

Pac-man,80,400

Mortal Kombat,10,30

Super Tetris,25,100

Pump it Up,10,40

Street Fighter II,90,450

Speed Racer,10,40

Output Explanation

Print the game names that earn him the most into the standard output in alphabetical order

Output

Mortal Kombat

Pump it Up

Speed Racer

Street Fighter II

Python:

import sys

line = sys.stdin.readline()

print(line)

When preparing the heading for an MLA Format Academic Report, which of the following shows the proper order of the for lines of the header?

A. Student Name, Instructor, Course, Date
B. Instructor, Course, Student Name, Date
C. Course, Student Name, Instructor, Date
D. Student name, Date, Instructor, Course

Answers

Answer:

A. Student Name, Instructor, Course, Date

Explanation:

Begin one inch from the top of the first page and flush with the left margin. Type your name, your instructor's name, the course number, and the date on separate lines, using double spaces between each. Double space once more and center the title

Which of the basic data structures is the most suitable if you want to be able to insert elements in the middle in O(1)?
A. Array
B. Queue
C. Linked list
D. Stack

Answers

Answer:

A. Array

Explanation:

An array is a data structure that holds a collection of similar data types. Though it is ordered, the location of the array is indexed, which means that the items of the array can be accessed and retrieved with their index location values (starting from 0 to n).

The time complexity of accessing or retrieving a specific item in an array is O(1) which is a constant of the specified item.

Recursion is a method in which the solution of a problem depends on ____________ Larger instances of different problems Larger instances of the same problem Smaller instances of the same problem Smaller instances of different problems

Answers

Answer: Option C  Smaller instances of the same problem.

Explanation:

In computer science, recursion is a method by which the solution of the problems can be get by solving the problem to many smaller instances of the same problem.

It can be done by iteration by this has to be done at the time of programming, by identifying and  indexing.

Recursion is one of the main central idea in the filed of computer science.

Print air_temperature with 1 decimal point followed by C. Sample output from given program: 36.4C Python?

Answers

Answer:

print( f"{round(air_temperature, 1)}C")

Explanation:

The print function is a function in python used to output the result of the program. The 'f' is a python3 syntax used to format strings, while the round function is used to return a float number with a specified number of decimal points.

The code above outputs a string of the float number variable air_temperature in celsius.

Answer: print(f'{air_temperature:.1f}C')

Explanation:

The letter 'f'  indicates that this string is used for formatting. 1f basically means that we are looking for one decimal point. That is how we get the .4 instead of more decimals.

If we had 3f for example, we would see 36.400

We then include C after the brace so that is ends with C.

Write a function called getRowTotal. This function should accept a two-dimensional int array as its first parameter (the array has 5 columns) and an integer as its second parameter. The second parameter should be the subscript of a row in the array. The function should return the total of the values in the specified row. Only write the function no need to write the main function

Answers

Answer:

The solution is implemented using C++

int getRowTotal(int a[][5], int row) {

  int sum = 0;

  for(int i =0;i<5;i++)

  {

      sum += a[row][i];

  }

  return sum;

}

Explanation:

This defines the getRow function and the parameters are arr (the 2 d array) and row and integer variable

int getRowTotal(int arr[][5], int row) {

This defines and initializes sum to 0

  int sum = 0;

This iterates through the row and adds the row items

  for(int i =0;i<5;i++)    {

      sum += arr[row][i];

  }

This returns the calculated sum

  return sum;

}

Which of these file types does not share info in a spreadsheet?

Answers

Answer:

A file with extension ".exe".

or A system file

It is important to know the terms of use of any website because why

Answers

They may be selling your information. For example have you ever seen a icon that said accept cookies.. that is a type of term you must agree on to enter certain websites.
They could sell your information or HAC you

Chief technology officers can influence a company's current and future ____.

Answers

Answer: developments is my best guess

Explanation:

Other Questions
I know its a lot but 23 points and will make brainliest!!!Please do 5-10 Troy and Phillip both noticed that each time they represented a problem with a division sentence, they could write a related multiplication sentence. Their team decidedto see if they could represent each situation below in four ways: with words, diagrams, a multiplication number sentence, and a division number sentence.Help them finish what they started by filling in the missing representations. Part (a) is already completed.a. Question in Words: How many quarter-pies make three whole pies?Symbols (2 sentences): 3 + 1 = 12 and 3 . 4 = 12Diagram:00Answer in Words: Twelve quarter-pies make three whole pies.b. Question in Words: f is of how much money?Symbols (2 sentences):Diagram:Answer in Words:c. Question in Words: How many half-dollars make $30? Which non-firefighting career role handles emergency calls?A _________ responds to emergency and non-emergency telephone and radio calls and sends firefighting teams to emergency areas. Outline for Disabled people Which sentence best restates franklins major claim in this passage?A. It is better to wake up early than to stay lateB. A government that taxes ten percent is harsh C. Slothful ness has negative consequences D. Life is short, so people should enjoy it Read the excerpt from Shakespeare's Romeo andJuliet.How is the setting of the excerpt similar to the setting ofOvid's "Pyramus and Thisbe"?Gregory: Say better; here comes one of my master'skinsmen.Both take place in servants' quarters Both take place in castles ruled by unjust leaders.Both take plac in towns in which violence isSampson: Yes, better, sir.Abraham: You lie.discouraged.O Both take place in time periods in which men carrySampson: Draw, if you be men.--Gregory, rememberthy swashing blow.[They fight.][Enter BENVOLIO.]Benvolio: Part, fools! put up your swords; you know notwhat you do.(Beats down their swords.]weapons. The length of time, y hours, it takes to put a jigsaw puzzle together is inversely proportional to the number of children, x, working on it. It takes 16 children 6 hours to put the jigsaw puzzle together. How many children are needed to put the same jigsaw puzzle together in 4 hours? PLEASE HELP WITH #2 complete sentences please I will mark brainliest 2. What is the smallest particle into which anelement can be divided?O protonparticleO atomO nucleus A line with a slope of 3 passesthrough the points (2, -1) and (4, 5).Which of the following is not anequation of the line that passesthrough those points?B. y = 3x-11A. y+1 = 3(x-2)D. y-5 = 3(x-4)C. y = 3x-7 Which list represents the number in order from least to greatest?A. 7%, 1/12, 18%, 1/25 B. 1/25, 7%, 1/12, 18%C. 1/25, 7%, 18%, 1/12 D. 1/12, 7%, 18%, 1/25 Solve the equation.x2 + 13x + 30 = 0Select the correct choice below and, if necessary, fill in the answer box to complete your choice.O A. The solution(s) is/are x =(Type an integer or a simplified fraction. Use a comma to separate answers as needed.)O B. There is no solution. solve for x what is the solution to the system of equations Which of the following best explains energy transformations that would occur if the archer were to release the bow string in each picture. Find the vertices of the following functions.Y=4(x-2)(x-3)Y=-4(x+2)^2 -5 Which organism is defined as something that lives deep in the ocean in areas with very high temperatures and pressure? Name 3 sources of CO2. Which of these statements is true?A Rocks can only change on the earth's surfaceB Rocks can change from one type to anotherC Rocks can only change inside the earthD Rocks never change Find the lowest common multiple (LCM) of the 90 and 150 A 1020 kg car is pulling a 365 kg trailer. Together, the car and trailer have an acceleration of 2.21 m/s2 directly forward. (a) Determine the net force on the car. N forward (b) Determine the net force on the trailer. N forward