The domain extension most likely used for your school is _____. com edu gov info

Answers

Answer 1
Answer:

Answer:

.edu

Explanation:

When you are about to create a website for your brand or company, thinking about a good domain name is key to boosting and strengthening your network presence. And an essential factor in this is the different types of web domain that exist, in particular what is known as domain extensions.

Broadly speaking, extensions are those letters at the end of the address of a website, such as .com, .cl or .net. These terminations determine either the geographic location or the nature of such sites.

Thus, with the correct domain extension you can make your users clearly perceive what your digital proposal is, by transmitting an image that matches the products or services your business offers.

Thus, for example .edu is exclusively for associations or educational institutions and .gov for goverments

Answer 2
Answer: "edu". This is the most common TLD (Top Level Domain) used by schools. 

Related Questions

Computer piracy occurs when what is violated
Moore's Law postulates that:This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt 1 to alt 9. A a paradigm shift will take place in the technical sciences every two years. B the number of transistors per square inch on integrated circuits will double every two years. C the rate at which new ideas spread through cultures depends on distribution channels. D the members of a given population will usually adopt or accept a new product or innovation.
You are administrator for an Active Directory domain and have been tasked with improving response time for resolving DNS queries for resources in a second company owned domain that does not use Active Directory. What type of zone can be used to accomplish this task with minimal overhead?
What two things must you have in order to use FTP?A. E-mail client and FTP clientB. E-mail client and serverC. Files and serverD. FTP client and server
Your sister is starting 9th grade next year and is thinking about going to college. What step would you recommend she take first?

Which precautions should you follow to prevent an abrasive wheel from cracking? a. all of the answers are correct
b. fit the wheel on the spindle
c. make sure the spindle speed does not exceed the maximum speed marked on the wheel
d. tighten the spindle nut enough to hold the wheel in place without distorting the flange

Answers

I'd say that the precautions that you should follow to prevent an abrasive wheel from cracking is A. all of the answers are correct: fit the wheel on the spindle, make sure the spindle speed does not exceed the maximum speed marked on the wheel, and tighten the spindle nut enough to hold the wheel in place without distorting the flange.

How is train timetables used

Answers

They used to keep track of all consumer,time they got on and off.

What does the word spam mean?

Answers

The term spam is used in the Internet to denote something that is not needed or required. Spam include search engine spam, instant messenger spam, forum spam and comment spam. An unsolicited commercial email is example for e-mail spam. Other example is receiving promotional messages from people or companies with which you have no relationship.

If you spam someone with likes on Instagram your basically liking all their photos if you spam someone with texts you keep texting them if you spam someone with pictures you keep picture messaging them ect

THE PROTOCOL ORIGNALLY RAN ON TOP OF NETBT,BUT today runs by itself and uses port 445?

Answers

You are talking about the Server message Block (SMB) protocol in Windows 2000/XP

with port 445, we can use direct tcp/ip networking without the need of NETbios layer which will make better communications between nodes on a network


What is the difference between the (BIOS) basic.input.output.system and R.O.M

Answers

EX: A BIOS is a file used to make an emulator work properly. A ROM is a copy of a game downloadable online.

Worth 3 Points Write the definition of a public class WeatherForecast that provides the following behavior (methods) A method called setSkies that has one parameter, a string o A method called setHigh that has one parameter, an int A method called setLow that has one parameter, an int. o A method called getSkies that has no parameters and that returns the value that was last used as an argument in setSkies that was last used as an argument in setHigh was last used as an argument in setLow o A method called getHigh that has no parameters and that returns the value o A method called getLow that has no parameters and that returns the value that No constructor need be defined. Be sure to define instance variables as needed by your "getter"/"setter" methods-initialize all numeric variables to 0 and any String variables to the empty string 1

Answers

Answer:

public class WeatherForecast {

       

       private String sky = "";

       private int highTemperature = 0;

       private int lowTemperature = 0;

       

       public void setSkies(String sky ){

           this.sky = sky;

       }

       

       public void setHigh(int highTemperature){

           this.highTemperature = highTemperature;

       }

       

       public void setLow(int lowTemperature){

           this.lowTemperature = lowTemperature;

       }

       

       public String getSkies(){

           return sky;

       }

       

       public int getHigh(){

           return highTemperature;

       }

       

       public int getLow(){

           return lowTemperature;

       }

   }

Explanation:

- Three private variables are created to hold values.

- Since variables are private, three set methods are created to set the given values.

- Since variables are private, three get methods are created to return the values