A uniform resource locator, or url, specifies where you can find a resource on the web; you are probably most used to thinking of them as web addresses. as you move around the web, you see the url of each web page in the address bar of your browser. there are three key parts to the url:

Answers

Answer 1
Protocol, hostname or address, port number, path to file, data to be passed to a CGI program

Related Questions

Write the code for invoking a method named sendtwo. there are two arguments for this method: a double and an int. invoke the method with the double value of 15.955 and the int value of 133. assume that sendtwo is defined in the same class that calls it.

Answers

sendtwo( 15.955, 133 );

A money ____ refers to moving a cash amount from one account to another.

Answers

Money Transfer.
HOPE THIS HELPS!
The answer is Transfer

You can use ____ arguments to initialize field values, but you can also use arguments for any other purpose.

Answers

do you need help , i think the answer is right in tha tsentence

Which of these can be considered data?

A.facts


B.information


C.belief


D.all of these

Answers

B.Information
can be considered data

Answer:

B) Information

Explanation:

Information is data

Which option helps you choose the design of a slide in a presentation?

A.Slide Layout
B.Shapes
C.Animation
D.Slide Transition

Answers

Hello! The slide transition helps with the transitions of slides and the animation helps out with the words appearing on the screen in a more creative way. Therefore, C and D are out. The slide layout is the part where if you click on it, slide designs are shown for you to choose from. The shapes can be used for design, but it doesn't help if you're looking for the design of a slide. The answer is A: slide layout.

Is a list of variable information such as a name and address that is included in a document?

Answers

the Answer is a Data Source

What does ANSI stand for

Answers

American National Standards Institute
American National Standards Institute

An array of strings , names , has been declared and initialized . write the statements needed to determine whether any of the the array elements are null or refer to the empty string . set the variable hasempty to true if any elements are null or empty-- otherwise set it to false .

Answers

#Python

hasempty = False
for name in names:
   if ( not name ):
      hasempty = True
      break  # speed things up

List the descriptors used to interpret a scatter plot and provide a brief explanation for each

Answers

A scatter plot uses an X and Y axis and is similar to a line graph. A scatter plot is usually used to show a correlation, or a relationship between two variables. It shows how much one variable is affected by a different variable.

HELP QUICK!!!
When cleaning a computer, you need only worry about what you can see.

A. True
B. False

Answers

The answer is B. False.
B) False :) Have a noice night

Two students are discussing how programmable thermostats work. Student A says that a piece of material within the thermostat changes length depending on moisture content of the air and that temperature is related to this change in moisture. Student B says that there's a material within the thermostat that changes its length based on temperature and that the measured temperature is related to the change in length. Which of the following statements is correct?

Answers

Student B is correct.

To change a chart's data series, make the chart active, then in the data group on the chart tools design tab, click the _____ button.

Answers

Answer:

To change the chart type of the whole chart, click the chart area or plot area of the chart to display the chart tools.

Explanation:

Tip: You can also right-click the chart area or plot area

A kind of software that translates a programming language into machine instructions is a(n):

Answers

program is the answer

Which type of network topology connects a peripheral device to a host device?​?

Answers

Point-to-point topology.

You are given two int variables j and k, an int array zipcodelist that has been declared and initialized, and an boolean variable duplicates. write some code that assigns true to duplicates if any two elements in the array have the same value, and that assigns false to duplicates otherwise. use only j, k, zipcodelist, and duplicates.

Answers

Final answer:

The code uses nested loops to check for duplicates in the integer array, setting the boolean variable 'duplicates' to true if any are found.

Explanation:

To determine if there are duplicates in an integer array, you can use a nested loop structure, iterating through the array with two different variables. Here's a piece of code that does this, using the variables j, k, zipcodelist, and duplicates:

duplicates = false;
for (j = 0; j < zipcodelist.length; j++) {
   for (k = j + 1; k < zipcodelist.length; k++) {
       if (zipcodelist[j] == zipcodelist[k]) {
           duplicates = true;
           break;
       }
   }
   if (duplicates) {
       break;
   }
}

This code initializes duplicates to false. It then uses a nested loop where the variable j is the index for the current element, and the variable k is the index for the following elements to check. If a duplicate is found (when two elements have the same value), duplicates is set to true and the loops are exited using break statements.

Final answer:

To check for duplicates in an array, use nested loops to compare each element with every other element.

Explanation:

One way to check if there are any duplicates in the zipcodelist array is by using nested loops. First, you set the initial value of duplicates to false. Then, iterate over each element in the array using the outer loop with the variable j. Within this loop, use another loop with the variable k to compare each element with every other element in the array. If you find two elements that have the same value, set duplicates to true and break out of the loops.

Here is the code:

boolean duplicates = false;
for (int j = 0; j < zipcodelist.length; j++) {
 for (int k = j + 1; k < zipcodelist.length; k++) {
   if (zipcodelist[j] == zipcodelist[k]) {
     duplicates = true;
     break;
   }
 }
}

This code checks every pair of elements in the array for duplicates, and if it finds any, it sets the duplicates variable to true. If no duplicates are found, the duplicates variable remains false.

The Astroliner, in theory, eliminates the two solid rocket boosters on the side of the shuttle, and replaces them with a ______________________ which will ____________ the Astroliner off the ground and into the air to about 20,000 feet.

Answers

The Astroliner, in theory, eliminates the two solid rocket boosters on the side of the shuttle, and replaces them with a 747 aircraft. Which will tow the Astroliner off the ground and into the air to about 20,000 feet. 60 years ago,first demonstration of the basic concept of towing an un-powered aircraft behind a powered aircraft and then releasing it for autonomous flight. It was first accomplished with the German ME321 transport glider. 

The java compiler requires that a source file use the ________ filename extension question 3 options: 1) .class 2) .h 3) .java

Answers

3) .java Let's look at the three options and see why they're right or wrong. 1) .class This is the file extension that the java compiler used to the compiled output from the compiler. So it's the wrong answer. 2) .h This is the file extension used for C and C++ header files. So once again, not the right answer. 3) .java This is the correct extension for a java source file to be compiled.

What is the benefit of an extranet?

Minimize protection
Provide regulatory control
Reduce security
Supply faster Wi-Fi speed

Answers

provide regulatory control

The benefit of an extranet is that it Provide regulatory control. Check more about extranet below

What is the benefit of extranet?

The Advantages of extranet is that it users to be able to communicate and work together more effectively  especially with their clients, customers, etc.

Note that the benefit of an extranet is that it Provide regulatory control as one can be able to communicate in a secure network.

Learn more about extranet from

https://brainly.com/question/15420829

#SPJ2

You walk by the server room and notice a fire has started. what should you do first?

Answers

I would make sure no one is in the room, and pull the fire alarm. Then I would look for a fire extinguisher and put out some of the fire until the fire department gets there.

I would pull the fire alarm and make sure to evacuate everyone from the server room, look for fire extinguisher.

what is server ?

A server can be defined as a computer device or program which  provides service to client as per the need and type of service, it is a physical computer runs a server program in a center called  data center.

That machine can  be a dedicated server, a model where the client service through server is operated called as  client/server programming model, these program awaits and fulfils requests from client programs that may be running on the same or different computers.

A computer application can be operated as per the request for the service from other programmer, it can also keep the feature or component folders from a website, this can be  hooked up into the web and facilitates the sharing of stored information with certain network linked computers.

For more details regarding server, visit

https://brainly.com/question/7142205

#SPJ2

The computer system unit (the box enclosing the equipment) includes the ____, which is the electronic circuit board that connects the systemâs main components.

Answers

motherboard






------------------------------

Suppose that you only have liability and comprehensive car insurance and you allow your roommate (who doesn't have car insurance) to drive your car to run an errand. What will likely happen if there is a single-car accident causing moderate damage to your car while your roommate is driving?

Answers

For an insurance company to pay for a single car accident, one has to have a collision coverage on his or her insurance plan. A liability car insurance plan only covers damage to third party persons and cars while a comprehensive car insurance cater for non collision damages to car. Thus, in the scenario given above, the car insurance company will likely not pay for the damages to the car.

Not providing guarding or fall protection for workers on a 25-foot scaffold. The resulting fall would most likely end in death, broken bones, and/or other serious injuries. What violation type does this describe?

Answers

Not providing any fall protection on scaffolding would mean be a work hazard and a workplace safety violation und the Occupational and Safety Health Act. The employer would be punishable for this offence. He is required to provide necessary safety measures for his employees.

Only those who perform music professionally can have a true appreciation for music. True False

Answers

False. Anyone can have a true appreciation of music, regardless of whether they play it professionally or not.
Your answer is False because you could have a talent but you don't like it any your just doing it to pay the bills some people do because its what they love but others they have a talent and their parents think to can make some money so your just doing it for the money.

Your answer is False.

What is the chief ethical concern concerning all the new sources of data available through new technological means like internet research?

Answers

The chief ethical concern is "Privacy". 

A negative aspect of an enormous number of sources available on internet is the concerns about privacy. Web privacy includes the privilege or command of individual protection concerning the sorting, re-purposing, arrangement to outsiders, and showing of data relating to someone through the Internet.Internet security is a subset of data privacy. Privacy concerns have been enunciated from the beginnings of substantial scale PC sharing.

A computer connected to the internet that asks for data is a ________. aggregator surrogate server client

Answers

The answer to this question would be client.

Client is the computer that most people use. When you browsing a web using the internet, your computer will ask for data from the web server and the data will be arranged into graphical picture or words what you see on your monitor. Server is the computer that gives data the client ask for.

The most popular port scanner in the hacking and security community is ________.

a. portscan

b. nmap

c. servport

d. netbios

Answers

The answer is a i had the same question and i got it right

Which command runs poweroff.target to shutdown the system?

Answers

This is one of the most useful systemD commands : systemctl isolate poweroff.target. For example, if you have a problem with a server and you want to bring the system down so that you could then reseat the card before restarting it, you can use this command, it will shut down the system in an orderly manner.

When operating a computer, a user interacts with
the operating system.
a software license.
the BIOS.
application software

Answers

When operating a computer, a user interacts with application software. Thus, option D is correct.

What is the application software?

An application is a computer software package that performs a specified job directly for an end user or, in certain situations, for another application. It is also known as an application program or application software.

An application can be a single program or a collection of applications. A computer programme that responds to user input and assists users in performing personal, professional, and educational tasks is known as application software.

This programme is frequently useful since it enables you to undertake tasks that express creativity, increase productivity, and improve communication. Application software's main function is to assist the user in doing certain activities.

Therefore, option D is correct.

Learn more about the application software, refer to:

https://brainly.com/question/29353277

#SPJ2

Because of the limited storage capacity of __________, it is unsafe to talk on a cell phone while driving on a freeway during rush hour.
a. sensory memory
b. short term memory
c. long term memory
d. procedural memory
e. episodic next

Answers

the answer is A hope this helped

In your presentation you added a text box to?

Answers

The correct answer would be to - Cite a source
Other Questions
In a legal case, what does equal protection under the law mean? According to the psychoanalytic perspective, __________ motivates moral behavior. Enter a compound inequality to show the levels that are within each range. Then graph the solutions.A typical acoustic guitar has a range of three octaves. When the guitar is tuned to "concert pitch," the range of frequencies for those three octaves is between 82.4 Hertz and 659.2 Hertz inclusive.The compound inequality that represents the range of frequencies for a guitar tuned to "concert pitch" using the variable f is Why did France plan to give the Statue of Liberty to the United States in 1876? Which of these lines from the passage is an example of euphemism?A)I have graduated from Meloncamp High School about 115th out of class of 126. B)Yeah, I could've been the valedictorian somewhere. C)Let's just say I liked Latin but Latin didn't much care for me.D)I would've shown everyone how determined I can truly be. A system used to represent the valence electrons around the chemical symbol of an element is the What is the most likely reason many civilizations developed around rivers?a.people could dispose of their wastes in rivers.b.rivers offered people a way to defend their cities.c.many businesses used rivers to import and export goods.d.the river provided people with water, food, and transportation? Which substance has polar covalent bonds? which substance has polar covalent bonds? n2 bao f2 so2? Marty McFly is a time-travelling teenager in what trio of films? Dr. demarco loves teaching large lecture hall classes. in fact, the larger the class size, the more his teaching seems to improve. the best explanation for this pattern is Why did the democratic-republicans hesitate to challenge the alien and sedition acts before the supreme court? Why are tin granules used instead of just a piece of tin? Explain how the components of strategic thinking contribute to rational thinking. What do researchers believe to be the reason that alcohol lowers inhibitions? A flow of funds from savers to borrowers through financial intermediaries such as banks is direct indirect finance, while a flow of funds from savers to firms through financial markets, such as the new york stock exchange is At a local carnival, a hot dog costs $1.50 each and water costs $0.80 each. You want to buy food and water for yourself and your friends but do not want to spend more than $20. Which inequality represents how many hot dogs and how much water you can buy? Which archetypal character best fits Echo? A. Hero B. Wicked Witch C. Ingnue D. Lady Warrior Why did lyndonb. johnson insist on taking the oath of office with jackie kennedy at his side? What event opened Asian countries particularly China to trade with Europe In the shapes and fluid forces lab, you dropped different shapes in the fluid. what was the dependent variable that you observed and recorded Steam Workshop Downloader