Which file is usually the first file to be displayed when you navigate to a website?

A. Starter.html
B. Home.html
C.index.html
D. Template.html

Answers

Answer 1
Home. HTML is the first file to be displayed

Related Questions

Dora has inserted a text box into a Word document that she is formatting. Which strategy will not format text boxes? Create a link between two text boxes. Set the height and width of the text box. Add background images to the text box. Link the text box to another document.​

Answers

Answer:

D. Link the text box to another document.​

Explanation:

A text box is an object that you may add to your page that allows you to place and enter text wherever in it. The correct option is D.

What is a text box?

A text box is an object that you may add to your page that allows you to place and enter text wherever in it. Content boxes may be handy for attracting attention to a certain text and also for moving text about in your document.

Dora has inserted a text box into a Word document that she is formatting. Therefore, the strategy that will not format text boxes is strategy will not format text boxes.

Hence, the correct option is D.

Learn more about Text Box:

https://brainly.com/question/13812028

#SPJ2

In the following code snippet, what are the local variables of the function modByTwo?

function addFive(x){
var five = 5;
var result = x + five;
return result
}

function modByTwo(x){
var result = x % 2;
return result;
}


result and x


x only


five, result and x


result only

Answers

Result is the local variable because it can only be accessed and determined by the main functions which are addFive and modByTwo. A local variable is a variable that can only be accessed by its scope. Remember to like if this helped

In the following code snippet, the local variables of the function modByTwo are the result and x. The correct option is a.

What are local variables?

A local variable is one that can only be accessed from within a certain section of a program. These variables are often declared or defined within a subroutine and are local to that routine.

Local variables can alternatively be thought of as parameters that have values. The duration of the program's execution is reflected in a global variable. When the function is called, a local variable is created, and it is removed after the function has run its course. All the program's functions have access to it at all times.

One particular sub-program of a bigger main program declares a local variable. The values of local variables will be stored in RAM while this sub-program is running.

Therefore, the correct option is a, result, and x.

To learn more about local variables, refer to the link:

https://brainly.com/question/16978529

#SPJ2

Can you see the processing step yes or no

Answers

Answer:

I cannot see anything on my screen

Explanation:

I can't see anything............................

this is very simple i just need someone to type out this for me

Answers

Answer:

#27

2i , -2i, i, -i            i^2 = -1

1(x - 2i)(x + 2i) 1(x-i)(x+i)

x^2 +2x-2x -4.2i x^2 -xi-xi -i

(x^2 + 4)      x^4 + 1

x^2 +x^2 +11x

x^4 +5x^2 +4

+4+2+2+-1

*This was not simple for me

plz hurry i'm timed Which type of essay presents one side of an argument to convince readers to support it?

a descriptive essay
an expository essay
a narrative essay
a persuasive essay

Answers

Answer:

persuasive

Explanation:

Persuasive essay

Hope this helps

Which line of code will cause the loop to execute exactly one time?

for b in range(12, 12):
for b in range(12, 13):
for b in range(13, 13):
for b in range():

Answers

for b in range (12, 13)?

Will Mark Brainliest

Why did Constantine establish a new capital of the Roman Empire in Byzantium?



Byzantium was located on trade routes and could be better protected.


Byzantium was close to Rome, so travel between the two cities was easy.


Byzantium was already a huge city that needed little construction to make it the capital.


Byzantium was located in the middle of Europe and close to the people of the Western Empire.

Answers

Answer:

Byzantium was located on trade routes and could be better protected.

Explanation:

Byzantium became the capital of the Roman Empire in 330, with the established objective of fulfilling a fundamental role in the control of the commercial routes used by Rome to the East: this city was located in the passage of these commercial routes, thus which was fundamental its protection in order to control trade in the area. In this way, it was agreed to name this city as the capital, which gave importance to the eastern region within the Empire, and allowed these trade routes to be better managed and protected by the Roman government.

A                                                                  A

l Marking so other guy can get brainliest l

l                                                                    l

First time using this site so be mindful if I make any mistakes
For Micro Econ AP I am having a problem with this one question
It goes:
In what ways do households dispose of their income? How is it possible for a family's persoal consumption expenditures to exceed its after-tax income?

Answers

Answer:

Okay... Well

I will. help you out dear

The image below shows an encoding for a black and white pixel image. The first two
bytes of the data (circled in red) are used to encode the width and height of the
image. What is the best term for this type of "data about the data"? Explain why it is
necessary to include this data in the encoding.

Answers

Answer:

where is the image i need the image

Explanation:

How many bit make a byte .​

Answers

Answer:

It is easy .8 bits.You have to note this

Answer: 8

1 byte = 8 bit

Your friend told you that your favorite celebrity couple split. What is the best media form to use?
a
Wiki
b
Social Network
c
Infotainment site
d
Forum

Answers

Answer:

b

Explanation:

I think social network is the first source of every update of reality even wiki gets info from social network

Answer:a)wiki

kalo salah maaf ya

Edhesive unit 2 lesson 5 coding activity 1 Write code which creates three regular polygons with 11, 14 and 19 sides respectively. All side lengths should be 1.0. The code should then print the three shapes, one on each line, in the order given (i.E. The one with 11 sides first and the one with 19 sides last). Sample run: regular hendecagon with side length 1.0 regular tetrakaidecagon with side length 1.0 regular enneadecagon with side length 1.0

Answers

Answer:

public class Polygon {

   private String name;

   private int sides;

   private double sideLength;

   public Polygon(String name, int sides, double sideLength) {

       if (sideLength <= 0) throw new IllegalArgumentException("Length cannot be zero or negative.");

       if (sides <= 0) throw new IllegalArgumentException("Sides cannot be zero or negative.");

       this.name = name;

       this.sides = sides;

       this.sideLength = sideLength;

   }

   public String getName() {

       return name;

   }

   public void setName(String name) {

       this.name = name;

   }

   public double getSideLength() {

       return sideLength;

   }

   public void setSideLength(double sideLength) {

       if (sideLength <= 0) throw new IllegalArgumentException("Length cannot be zero or negative.");

       this.sideLength = sideLength;

   }

   public int getSides() {

       return sides;

   }

   public void setSides(int sides) {

       this.sides = sides;

   }

   (use the at sign here)Override

   public String toString() {

       return "regular " + name + " with side length " + String.format("%.1f", sideLength);

   }

}

public class TestPolygon {

   public static void main(String[] args) {

       Polygon sides11 = new Polygon("hendecagon", 11, 1);

       Polygon sides14 = new Polygon("tetrakaidecagon", 14, 1);

       Polygon sides19 = new Polygon("enneadecagon", 19, 1);

       System. out. println(sides11);

       System. out. println(sides14);

       System. out. println(sides19);

   }

}

Explanation:

This java source code defines a class that creates a regular polygon based on the number of sides given to it.

Below is a screenshot of the program code and output.

aquatic life zone such as acorans and their bays, estuaries, coastal wetlands, shorelines, coral reffs and mangrove forests?

Answers

Answer:

Iajajkwbwiw whw

Explanation:

Bshsiwiqnqiaowpwownsbbsdk akakwjnwkwnwkwnwoqknanamamalamkakakskwkwkwnwmw.

I hope u liked my answer. Thank u

Which feature in PowerPoint is used to correct common capitalization and text formatting issues but can also be modified for more robust and personalized corrections?

Grammar Checker
Insights
Spelling Checker
AutoCorrect

Answers

Answer:

AutoCorrect: D on edge

Explanation:

Answer:

D.AutoCorrect

Explanation:

a software function that automatically makes or suggests corrections for mistakes in spelling or grammar made while typing.: a computer feature that attempts to correct the spelling of a word as the user types it The iPad boasts an autocorrect system that will try to figure out what you mean to type even when you don't quite tap the right keys.

Sending the same messages to a large number of users is called​

Answers

Answer:

Can you give me the options

Please please help what kind of device. is this​

Answers

Answer:

uuuummmmm im pretty sure that is some type of tablet

Explanation:

sorry im not much help.........

Answer:

It's a Hard drive. It's on your pc

Explanation:

With _________, users will receive recommendations for items liked by similar users.

Answers

Answer:

Collaborative filtering

Explanation:

Collaborative filtering is an algorithms family in which there are various ways to determine the same users or items also there are various ways to determine the rating depending upon the same users rating

Therefore as per the given situation, the above is the answer

Hence, the same is to be considered

True or false binary code is a base ten system

Answers

Answer:

false it is a two base system

What social media profession entails determining how and in what way an organization will create and maintain a social media presence?
social media strategist
social media marketer
social media manager
social media specialist

Answers

Answer:

i believe the answer is b.

Explanation:

Answer:

(a) strategist

Explanation:

its the proven answer on my test

WILL GIVE BRAINLIEST! The command simplify is used if you only want the first two digits of a decimal to appear in the interpreter.

true

false

Answers

Answer:

falsee?

Explanation:

Answer:

Yes its false i believe

Explanation:

What is the "middle" value for the "vertical-align" property based on?
a) a line's x-height
b) the height of the age
c) the shortest element on a line
d) the number of elements on a line

Answers

Answer: a) a line's x-height.

Explanation: The middle of the parent element is calculated by taking the x-height, halving it, and adding it to the baseline. Therefore, the "middle" value for the "vertical-align" property must be also based on the line's x-height.

What are movies filmed before 1990's?

Answers

Answer: Once Upon a Time in the West (1968) PG-13 | 165 min | Western. ...

Cinema Paradiso (1988) R | 155 min | Drama. ...

Blade Runner (1982) R | 117 min | Action, Sci-Fi, Thriller. ...

2001: A Space Odyssey (1968) G | 149 min | Adventure, Sci-Fi. ...

Apocalypse Now (1979) ...

Chinatown (1974) ...

Stardust Memories (1980) ...

Le Notti Bianche (1957)

Explanation:

what could happen if I break copyright law in the future​

Answers

um i’m pretty sure you could go to jail and you would have to pay fines
youd pay fine. amount depends on the situation. you could also potentially face time in prison

What is bill Gates passion?

Answers

Computing. He makes software design and that revolves around computing

tO CrEaTe ToiLeT. Sorry, the real answer is to change the world via technology, and to keep on innovating.

I hope this helps, and Happy Holidays! :)

What is the output?
class car:
model = "
age = 20
myCar = car()
myCar.age= myCarage + 10
print(myCarage)
Output:

Answers

Answer:

Following are the modified code to this question:

class car:#defining a class car  

   model = ""#defining a class

   age = 20#defining an integer variable that hold a value

myCar = car()#creating reference of class

myCar.age= myCar.age+ 10#Use reference to add value in age variable

print(myCar.age)#print age value

Output:

30

Explanation:

In the above code class care is defined, inside the car a string variable "model", and an integer variable "age" is defined that hold a value, in the next step, class reference myCar is defined, that used to add value in age variable an at the last we use print method to print age variable value.

Type the correct answer in the box. Spell all words correctly.
What does Clara create that programmers can use to write code?
Clara works in a software development company. Her boss identifies that she has strong problem-solving skills. Clara’s boss places her on the planning team to create____ for programmers.
This is for Edmentum final! thanks

Answers

Answer:

design documents

Explanation:

Usually, in a software development company or information technology (IT) department, software is developed through a team effort. Such teams have programmers and various other professionals, such as software developers and engineers. These professionals perform parts of the entire software development process. For example, the programmer is not the only person in a team who can formulate a solution to a problem. Many times, software developers and system analysts do this. They create design documents for the programmer to follow. Based on these design documents, a programmer writes the code for the program.

Which of the following is an example of data an Earth-observing satellite would collect?
studying ocean and land changes

monitoring the movement of ships

tracking signals between different points on Earth

studying weather patterns

Answers

Answer:

A

Explanation:

Hopefully this helps

Adam has created a document for publishing and needs to ensure that no changes can be made. He has accessed the
Developer tab and is using the Restrict Editing task pane. Which option should Adam choose?

Formatting Restrictions

Editing Restrictions

Start Enforcement

Track Changes

Answers

Answer:

formatting restricions

Explanation:

i took the test

Answer:

B) Editing Restrictions

Explanation:

By enabling this and leaving it as the default setting, the document is now read only and cannot be edited.

Which of the components of the box model is transparent and does not take a background color? content padding border margin

Answers

Answer:

the answer is

ও d- margin

Explanation:

⁂ just did the cumulative exam review, hope this helped ☺

Margin is the component of the box model which is transparent and does not take a background color. Thus, the correct option is D.

What is background color?

The background color is, in most of the cases, displayed in the form of an RGB triplet or a hexadecimal code of colors. The three separate pairs of different numbers which are given in the command, represent the different set of color values of the RGB spectrum. The first value in this set stands for the red color, the second color stands for the green color and the last one stands for the blue color.

The background style of the content, padding, and border areas of a box model are specified by the background property of the generating element of the system. Margin backgrounds are the elements which are always transparent in color.

Therefore, the correct option is D.

Learn more about Background color here:

https://brainly.com/question/14928554

#SPJ2

(This is for photography segment exam btw)

Who created the first known photograph?

A. George Eastman
B. Ansel Adams
C. Joseph Niepce
D. Louis Daguerre

Answers

Answer:

C. Joseph Niepce

Explanation:

C is correct for sureee
Other Questions
PLS HELP!!! I am gonna fail Force is measured in what unit? What is this unit equal to in other units? Which statement best describes bias?O Bias is how an event is viewed.O Bias is information that can be proved. O Bias is the favoring of one person or point of view.O Bias is direct information from a specific time. Was the British takeover of India actually a blessing in disguise considering it improved the overall life of the Indian citizen?(chapter 24 sect 4) Imagine you are taking a crosS-country trip whose route goes through the southern half of Oklahoma. As you leaveArkansas and enter Oklahoma, which mountain area will you encounter first?a. Wichitab. Arbucklec. Ouachitad. TahlequahPlease select the best answer from the choices providedABC)D Peter was told by his teacher that he needed to measure the height of the building in which his classroom was located. He backs away from the building and places a mirror on the ground between him and the wall. When he can see the top of the building in the mirror, Peter is 2 feet 9 inches away from the mirror and the mirror is 11 feet away from the wall of the building. Peter knew his eye level was exactly 5 ft 6 inches off of the ground, so he was able to calculate the height of the building. How tall is the building in feet? Find the of the slope of the line through (6,-10) and (4,-8) Based on the map and your knowledge of history, which of the following conclusions can be drawn about this map? Susan and Kelvin each receive $100$100 as a gift.Part ASusan buys a movie ticket for $12.50$12.50 and 33buckets of popcorn that cost $14.20$14.20 each with her $100$100. Which statement is true? historical movement from segregation to inclusion PLEASE HURRY!! Why does it feel cooler at 90F when the relative humidity is 30% compared to the same temperature and the relative humidity is 80%?Group of answer choicesBecause the drier air evaporates moisture off your skin more easily.Because the lower humidity brings down the temperature.There is no real difference because the temperature is the same.Because there is less air movement at 80% humidity. Dana needs to buy a bathroom mirror that is 5 feet wide and 7 feet long. If the mirror sells for $4.98 per square foot, what will the total cost of the mirror be The formula CaCl, represents the compound Using the van der waals equation, the pressure in a 22.4 L vessel containing 1.50 mol of chlorine gas at 0.00 c is____________atm. (a= 6.49L^2-atm/mol^2, b=0.0562 L/mol) A. 1.50 b. 0.676 c. 0.993 d. 1.48 e. 1.91 write a paragraph about what the Hawthorne Studies tells us about workers and what happens when they are being observed and why that is important 98 x 1/10help me out, please. If u anserw correctly ill give u 20 points and put u the brainlest Why is it so important to a president to have the opportunity to appoint a justice to the Supreme Court? a he or she can advise that justice on how to vote on future cases b it makes him or her feel extremely important c the new justice can kick out/replace an existing justice of the president's choice d his/her ideas or political beliefs can be carried on for decades rather than just 4 or 8 years On a piece of paper, graph y< x + 1. Then determine which answer matchesthe graph you drew. Alguien me ayuda porfavor