In order to connect to the internet via the web you will need communications hardware, browser software and a(n)_____,

Answers

Answer 1

In order to connect to the internet via the web you will need communications hardware, browser software and a(n) Internet Service Provider.

What does internet service provider mean?

An ISP (internet service provider) is known to be called any firm or a company that tend to carry out or give people and organizations access to the internet as well as  other linked services.

Note that an ISP is said to possess the equipment as well as the telecommunication line access that is known to be needed to have a  place of presence on the internet.

Therefore, In order to connect to the internet via the web you will need communications hardware, browser software and a(n) Internet Service Provider.

Learn more about Internet Service Provider from

https://brainly.com/question/23902843

#SPJ1


Related Questions

A clogged printer nozzle is a possible disadvantage of using ____. a. a laser printer b. an inkjet printer c. a wi-fi printer

Answers

A clogged printer nozzle is a possible disadvantage of using an inkjet printer.

Inkjet printers are relatively light and inexpensive but provide reasonable quality assurance.

In an inkjet printer, the printer nozzle shoots the ink drops onto the print paper, which is discharged by a large electrostatic charge, thermal expansion, or sound waves.

There can be various reasons for the printer nozzle to get blocked including dust, high temperature, and if the temperature is lower than required then it may not be possible for the filament to melt.

On the other hand, laser and wi-fi printers do not require printer nozzles. Ink is not used in a laser printer as they are based on lasers to print paper.

To learn more about inkjet printers, click here:

https://brainly.com/question/8204968

#SPJ4

Name the piece of hardware found in a tablet computer that is both an input and output device.

Answers

Answer:

The screen.

Explanation:

You interact with the tablet via the screen and it displays information.

to make sure that the html and css for a web page are interpreted the same way by all browsers, you can use

Answers

To make sure that the HTML and CSS for a web page are interpreted the same way by all browsers, you can use: both A and B.

What is CSS?

CSS is an abbreviation for Cascading Style Sheets and it can be defined as a style sheet programming language that is designed and developed for describing and enhancing the presentation of a webpage (document) that is written in a markup language such as:

XMLHTML

What is HTML?

HTML is an abbreviation for hypertext markup language and it can be defined as a standard programming language which is used for designing, developing and creating websites or webpages.

In Computer programming, you can use a JavaScript shiv and the normalize.css style sheet to ensure that the HTML and CSS for a webpage are all interpreted the same way by all browsers.

Read more on CSS style here: brainly.com/question/14376154

#SPJ1

Complete Question:

To make sure that the HTML and CSS for a web page are interpreted the same way by all browsers, you can use:  

a JavaScript shiv

the normalize.css style sheet

both A and B

neither A or B

The number ____ is the standard dots per inch used for blogs, social media, webpages, and emails.

That question is for my photography class.

Answers

Answer:

72 dpi

Explanation:

72 DPI is standard for social media posts and others. It is not 300 DPI which is standard for print.

The standard dots per inch (DPI) used for blogs, social media, webpages, and emails can vary depending on the specific platform and device.

A common standard for these digital mediums is 72 DPI.

DPI refers to the resolution or sharpness of an image on a digital display. A higher DPI means more dots or pixels per inch, resulting in a clearer and more detailed image. On the other hand, a lower DPI means fewer dots per inch, resulting in a less sharp image.

For digital content displayed on screens, a DPI of 72 is often used because it strikes a balance between image quality and file size. This resolution is considered sufficient for viewing images online without causing excessive loading times or using excessive bandwidth.

It's important to note that when printing physical copies, a higher DPI is generally recommended to achieve better print quality. In print media, resolutions like 300 DPI are commonly used to ensure sharp and detailed prints.

Know more about dots per inch,

https://brainly.com/question/32108345

#SPJ3

A ________ is a small message box that displays when the pointer is placed over a command button.

Answers

An enhanced ScreenTips is a small message box that displays when the pointer is placed over a command button.

What are ScreenTips?

ScreenTips is known to be a term that connote a small windows that shows any kind of descriptive text if a person place the pointer on a command or on a control.

Note that Enhanced ScreenTips are found to be bigger windows that shows a lot of descriptive text than a ScreenTip.

Therefore, An enhanced ScreenTips is a small message box that displays when the pointer is placed over a command button.

Learn more about ScreenTips from

https://brainly.com/question/26677974

#SPJ1

The default output of a command is displayed on the?

Answers

Answer:

It is displayed on the console or screen.

Select the correct answer.
Which letter will be uppercase in the below sentence?

she will have exams next week.

A.
s in she
B.
h in have
C.
e in exams
D.
w in week
E.
n in next

Answers

Answer:D

Explanation:

1)write a python program to check wheter the given number is even or odd
2) write a python program to add any 5 subjects makrs, find sum and average (average=sum/5)
3)write a python program to print numbers from 1 to 100 using loops

Answers

Answer:

n = 16

if n%2:

 print('{} is odd'.format(n))

else:

 print('{} is even'.format(n))

m1 = 5

m2 = 4

m3 = 6

m4 = 8

m5 = 9

sum = m1+m2+m3+m4+m5

average = sum/5

print("The sum is {}, the average is {}". format(sum, average))

for i in range(1, 101): print(i, end=",")

Explanation:

Above program does all three tasks.

Answer:

1) num1 = int(input("Enter the number to be checked: "))

if num1%2==0:

   print("Your number is an even number!")

else:

   print("Your number is not even!")

2) maths = int(input("Enter your maths mark: "))

english = int(input("Enter your english mark: "))

social = int(input("Enter your social mark: "))

science = int(input("Enter your science mark: "))

computer = int(input("Enter your computer mark: "))

Sum =  maths + english + social + science + computer

average = Sum / 5

print("Sum of your marks are:",Sum)

print("average of your marks are:",average)

3) num = 0

while num <= 99:

   num+=1

   print(num)

Explanation:

Welcome.

some programmers dislike return statements in the middle of a method. it is always possible to restructure a method so that it has a single return statement. rearrange the following lines of code to produce such a version of the firstspace method of the preceding exercise.

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that produce such a version of the firstspace method of the preceding exercise.

Writting the code:

import java.util.Scanner;

public class FindSpaces

{

   

   

   public static int firstSpace(String str)

   {

       boolean found = false;

       int position = -1;

       for(int i = 0; !found && i < str.length(); i++)

       {

           char ch = str.charAt(i);

           if(ch == ' ')

           {

               position = i;

               found = true;

           }

       }  

       return position;

   }

   

   public static void main (String[]args)

   {

       Scanner in = new Scanner (System.in);

       String inputStr = in.nextLine ();

       int firstSpacePosition = firstSpace (inputStr);

       System.out.println (firstSpacePosition);

   }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

a complete model of the skeleton that could be useful for all practical applications would b a dissected human a dissected human a 3d computer generated model a 3d computer generated model such a model is impossible such a model is impossible a 2d computer generated model

Answers

A complete model of the skeleton that could be useful for all practical applications would be: C. such a model is impossible.

What is a model?

A model can be defined as the creation of a physical object either from kits, components or other applicable materials that are acquired by the builder, so as to simulate a phenomenon or process.

This ultimately implies that, a model should be probabilistic in nature rather than being perfect, so as to effectively illustrate or describe the relationship that is existing between an independent variable and the dependent variable.

Generally, some of the ways in which models cannot be useful include the following:

Building intuition for situations.Useful for all practical applications.Making predictions that can be verified.

In this context, we can reasonably infer and logically deduce that a complete model of the skeleton that could be useful for all practical applications would be impossible.

Read more on models here: https://brainly.com/question/27844970

#SPJ1

Complete Question:

A complete model of the skeleton that could be useful for all practical applications would be

A. a 3D computer generated model

B. a 2D computer generated model

C. such a model is impossible

D. a dissected human

Answer:

C. Some translation work will require a human being instead of a computer.

Explanation:

Write, compile, and test the moviequoteinfo class so that it displays your favorite movie quote, the movie it comes from, the character who said it, and the year of the movie.

Answers

The program that writes, compiles, and tests the moviequoteinfo class so that it displays your favorite movie quote,  the movie it comes from, the character who said it, and the year of the movie is given below:

The Program

public class MovieQuoteInfo { //definition of MovieQuoteInfo class

//All the instance variables marked as private

private String quote;

private String saidBy;

private String movieName;

private int year;

public MovieQuoteInfo(String quote, String saidBy, String movieName, int year) { //parameterized constructor

super();

this.quote = quote;

this.saidBy = saidBy;

this.movieName = movieName;

this.year = year;

}

//getters and setters

public String getQuote() {

return quote;

}

public void setQuote(String quote) {

this.quote = quote;

}

public String getSaidBy() {

return saidBy;

}

public void setSaidBy(String saidBy) {

this.saidBy = saidBy;

}

public String getMovieName() {

return movieName;

}

public void setMovieName(String movieName) {

this.movieName = movieName;

}

public int getYear() {

return year;

}

public void setYear(int year) {

this.year = year;

}

//overriden toString() to print the formatted data

public String toString() {

String s = quote+",\n";

s+="said by "+this.saidBy+"\n";

s+="in the movie "+this.movieName+"\n";

s+="in "+this.year+".";

return s;

}

}

Driver.java

public class Driver {

public static void main(String[] args) {

MovieQuoteInfo quote1 = new MovieQuoteInfo("Rosebud", "Charles Foster Kane", "Citizen Kane", 1941);

System.out.println(quote1);

}

}

Read more about programming here:
https://brainly.com/question/23275071
#SPJ1

suzanne’s at 2 inches per week suzanne’s at 1.5 inches per week megan’s at 3 inches per week megan’s at 2.5 inches per week

Answers

Based on the above, the plant that grew at a faster rate would be Megan’s at 2.5 inches per week.

What is the growth rate about?

The term growth rates is known to be one that is often used to show the annual alterations in a variable.

Note that:

Megan's rate = 12 - 4.5 / 4 -1

= 2.5 inches per week

Suzanne's rate = 11 - 5 / 4-1

= 0.5 inches per week

Based on the above,, the plant that grew at a faster rate would be Megan’s at 2.5 inches per week.

Learn more about growth rate from

https://brainly.com/question/2480938

#SPJ1

Megan and Suzanne each have a plant. They track the growth of their plants for four weeks. Whose plant grew at a faster rate, and what was the rate? Suzanne’s at 2 inches per week Suzanne’s at 1.5 inches per week Megan’s at 3 inches per week Megan’s at 2.5 inches per week

using the resources available in your library, find out what laws your state has passed to prosecute computer crime.

Answers

The laws my state has passed to prosecute computer crime is Information Technology ACT, 2002 - It is known to be the law that stated that it will deal with cybercrime as well as electronic commerce in all of India.

What are Cybercrime?

Cybercrime is known to be a type of a crime that entails the use of a computer as well as a network.

Note that the computer is one that can or have been used in the commission of any kind of crime, or it one that is said to be under target. Cybercrime is a type of crime that can harm a person's security as well as their financial health.

Therefore, based on the above, The laws my state has passed to prosecute computer crime is Information Technology ACT, 2002 - It is known to be the law that stated that it will deal with cybercrime as well as electronic commerce in all of India.

Learn more about computer crime from

https://brainly.com/question/13109173

#SPJ1

When a user interface is created in the window editor, the ide automatically generates the ________ needed to display each component in the window.

Answers

The ide automatically creates the graphical user interface required to display each component in the window when a user interface is built in the window editor. A system of visual, interactive components for computer software is known as a GUI (graphical user interface).

A graphical user interface presents information-conveying and action-representative items for the user to interact with. The objects change color, size, or visibility when the user interacts with them. In 1981, Alan Kay, Douglas Engelbart, and a handful of other researchers created the graphical user interface for the first time at Xerox PARC.

Learn more about graphical user interface https://brainly.com/question/14758410

#SPJ4

What is the term for the process of giving computers instructions about what they should do next? (1 point)

A. Programming

B. Step-by-step

C. Developing

D. Scheduling

Answers

It’s programming, that gives the set of instructions to the computer, it’s the computers way of understanding what a human wants the computer to do

What is the output? void iseven(int num) { int even; if (num == 0) { even = 1; } else { even = 0; } } int main() { iseven(7); cout << even; return 0; }

Answers

The outpot based from the code is No output. It is because a compiler error occurs due to unknown variable even.

A compiler is a program that is used to convert code written in natural language processing so that it can be understood by computers. So, the main task of a compiler is to do conversion for the code. There are two types of compilers:

A cross compiler that runs on machine 'A' and generates code for another machine 'B'.Source-to-source compiler, which is a compiler that translates source code written in one programming language into source code in another programming language.

Learn more compiler https://brainly.com/question/28232020

#SPJ4

What is an extra external layer of security for user login?
a. multifactor authentication
b. antivirus
c. firewall
d. vpn2

Answers

An additional external layer of security for user login is a. multifactor authentication. Multifactor Authentication (MFA) is a security mechanism that confirms a user's identity for a login or other transaction by requiring multiple ways of authentication from separate categories of credentials.

Multifactor authentication combines two or more separate forms of identification: what the user is, as confirmed by employing biometric verification techniques, what the user owns, such as a security token, and what they know, such as a password. In order to make it more difficult for an unauthorized person to access a target, such as a physical location, computing equipment, network, or database, multi-factor authentication (MFA) aims to build a layered defense.

Learn more about authentication https://brainly.com/question/28398310

#SPJ4

how to move the text in computer​

Answers

Answer:

to move text selected test click on the cut icon from home tab put the cursor where you want to play the selected text click on paste icon from home tab

A(n) ______ bus is used to transfer information about where the data should reside in memory.

Answers

A School bus.......

Protection against active attacks (falsification of data and transactions) is known as?

Answers

Answer:

Message authentication.

Explanation:

When packets arrive at their destination at different speeds, they sometimes arrive out of order. what does this cause?
a. jitter
b. latency
c. dropped packets
d. error rates

Answers

What cause based on the question is a. Jitter. Jitter is the variation in time between arriving data packets, caused by network congestion, or route changes. The longer the data packet is sent, the more jitter will affect the audio and network quality.

Standard jitter measurement in milliseconds (ms). If you receive a jitter higher than 15-20ms, it can increase latency and result in packet loss, causing a decrease in audio quality. Symptoms of jitter include:

Audio is intermittent Call pending or disconnectedStatic, intermittent, or garbled audio

If the test results show the Jitter rating is higher than 15-20ms, there is most likely a problem with the Internet Service Provider (ISP). If the test cannot be plugged directly into the modem, the ISP should be able to run the test. If they run into a jitter problem in the end, they should be able to solve it.

Learn more jitter https://brainly.com/question/13661659?

#SPJ4

What are two problems that can be caused by a large number of arp request and reply messages?

Answers

The two problems that can be caused by many ARP requests and reply messages are if switching is slowed down by a lot of ARP request and reply messages, the switch may have to alter its MAC table a lot and the other one is the ARP request will overwhelm the entire subnet because it is transmitted as a broadcast.

What is ARP?

Address Resolution Protocol is referred to as ARP. The system must translate an IP address into a MAC address before someone can ping an IP address to their local network. The user will need to use ARP to resolve the address in order to accomplish this.

There are some other problems that can be caused by many ARP request and reply messages are :

Because they focus all the traffic from the associated subnets, switches get overloaded.All nodes on the local network must process each and every ARP request message.ARP reply messages have a huge payload because of the 48-bit MAC address and 32-bit IP address that they include, which could cause the network to become overloaded.

To get more information about ARP :

https://brainly.com/question/12975431

#SPJ1

what are the contents of a .class file in java? a. a c source code program b. bytecodes c. all students in the cscs 212 class d. native machine instructions

Answers

The content of a .class file in Java are bytecodes. So, the option (b) is the correct choice of this question.

Bytecodes are the content of a .class file in java. And, .class file created by the java compiler that is based on .Java file. A .class file contains the bytecodes created by the Java compiler. Bytecodes are the binary program code in a .class file that is executable when run by JVM or Java Virtual Machine. Class files are bundled into .JAR files, which are included in the environment variable path for execution.  

The class file can be compiled using the Java's javac command.

While the other options are incorrect because:

.Class file contains the bytecode, while .java file contains the source code program While the student in the cscs 212 class and native machine instructions dont relate to the context of the question. And, these are the irrelevant details.

You can learn more about java .class file at

https://brainly.com/question/6845355

#SPJ4

A programmer is developing software for a social media platform. The programmer is planning to use compression when users send attachments to other users. Which of the following is a true statement about the use of compression?

A. Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.
B. Lossless compression of an image file will generally result in a file that is equal in size to the original file.
C. Sound clips compressed with lossy compression for storage on the platform can be restored to their original quality when they are played.
D. Lossless compression of video files will generally save more space than lossy compression of video files.

Answers

A true statement about the use of compression is Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.

What is Compression?

This refers to the process of modifying, encoding or converting the bits structure of data to use less space.

Hence, we can see that A true statement about the use of compression is Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.

Read more about data compression here:

https://brainly.com/question/17266589

#SPJ1

Develop the IPO chart to calculate the area of a Triangle

Answers

The IPO chart to calculate the area of a Triangle is given below:

The Formula

at=area of triangle

b=Bredth ,h=height.

Formula=0.5×b×h.

Algorithm:

-Step 1:-Start.

Step 2:-Declare at,b,has float.

Step 3:-Initialize value of b and h.

Step 4:-Calculate at 0.5×b×h.

Step 5:-print area of triangle .

Step 6:-End.

Read more about algorithms here:

https://brainly.com/question/13800096

#SPJ1

______ backup providers are companies which provide utility software that creates automated backups to an online account. cloud virtual open source media

Answers

Cloud backup providers are companies which provide utility software that creates automated backups to an online account.

What is a cloud?

In Computer technology, a cloud can be defined as the elastic leasing of pooled computer resources (physical hardware) through virtualization and over the Internet (online website), so as to enable the storage of files and documents virtually.

The characteristics of cloud computing.

In Computer technology, the characteristics of cloud computing include the following:

On-Demand self-service.MultitenancyResource poolingElasticity

Read more on cloud computing here: https://brainly.com/question/19057393

#SPJ1

What is the ip address of the router that will receive packets for unknown destination networks?

Answers

The Gateway IP address is the router's IP address that will receive packets for unknown destination networks.

Whenever a router receives a packet with an unknown destination network address, it will most likely discard it and send an ICMP echo destination net unreachable.

The packet will not be discarded if your router has a default gateway configured. According to the routing algorithm, it will send the packet to the default gateway.

An unknown destination address means your router doesn't have a default gateway set up. As a result, the packet is discarded. After discarding the packet, your router will send a destination unreachable message.

Learn more about gateway IP address: brainly.com/question/28101710

#SPJ4

the internet of things (iot) is a world where interconnected, internet-enabled devices or "things" can collect and share blank without human intervention.

Answers

The  internet of things (iot) is a world where interconnected, internet-enabled devices or "things" can collect and share blank without human intervention is a true statement.

What is Internet of Things explain?

The Internet of Things (IoT) is known  to be a term that connote a kind of a network that is made up of physical objects which are said to be embedded with  things such as sensors, software, as well as  other forms of technologies.

They are known to be mad for the purpose of linking as well as exchanging data with other kinds of devices and systems over the use of internet.

Therefore, The  internet of things (iot) is a world where interconnected, internet-enabled devices or "things" can collect and share blank without human intervention is a true statement.

Learn more about internet of things from

https://brainly.com/question/19995128

#SPJ1

the internet of things (iot) is a world where interconnected, internet-enabled devices or "things" can collect and share blank without human intervention. True/false

Data communications and networking can be considered as a global area of study because:_______.

Answers

Answer: Networks and Communication run the world (I.e., Everything on a computer or non-person communication is driven over a computer network)

Explanation:
Data communications is literally the basis of computer networks by using advanced mathematics and agreed upon computational standards that allow for communication between others via phone, computer, radios, etc. The creation of systems that allow the data communications are contained in network devices and a collection of networking applications create the network. Some real world examples of this can be seen in cellular carriers like Verizon, TMobile, and AT&T. Their whole businesses are built on ensuring data communications can be had in a wireless and accessible way for end users across their networks. And for instance if you talk to people across states or across countries, you are indeed traversing a global area. There will always be a need for data communication and networking to ensure everyone can continue to communicate with one another electronically.

Cheers.

Microsoft office's ________ box enables you to search for help and information about a command or task

Answers

Microsoft office's Search box enables you to search for help and information about a command or task.

What is the Microsoft search box?

The Windows Search Box is known to be one that functions by helping the user to be able to find files and see information on their device and all of OneDrive, Outlook, and others.

Note that At the top of a person's  Microsoft Office apps that is seen on the Windows, a person will be able to find the new Microsoft Search box and this is known to be a powerful tool used for search.

Therefore, Microsoft office's Search box enables you to search for help and information about a command or task.

Learn more about Microsoft office from

https://brainly.com/question/15131211

#SPJ1

Other Questions
4. Old Faithful, Yellowstone National Park's most famousgeyser, shoots a spray of steam and hot water 50 minto the air. Is this height greater or less than 5,000 mm? The most common mechanism for implementing multiprogramming was the introduction of the ____ concept, whereby the cpu was notified of events needing operating systems services. . Tell whether (7,-4) is a solution of y 5 - x. Email tends to be the easiest and most common communication technique for reaching wide audiences; however, it is important to remember that? The idea of a decision process implies that consumers always apply rational processes in their buying decisions. false true In the poem "Annabel Lee" by Edgar Allan Poe, what examples are there of near rhymes? Why were the actions of the British Parliament from 1764 through 1774 seen as so shocking to the American colonists in light of what the colonists had experienced from the early 1700s and into the French and Indian War? give us examples of what was causing such aggressive actions on the part of colonists which of the following describe the changes in and effects of late-nineteenth-century corporate organization? How has the us government used the patriot act to prevent terrorist attacks since september 11, 2001? you own a building that is expected to pay annual cash flows forever. if the building is worth $2100000, the cost of capital is 6.0%, and annual cash flows are expected with the first one due in one year and all subsequent ones growing annually by 2.1%, then what is the amount of the cash flow produced by the building in 3 years expected to be?(round the value to 0th decimal to get a whole number) What is the greatest common factor of 38 and 30? Why can only some patients with diabetes insipidus be treated effectively with ADH? Doug says the area of the figure is 20 square units. What is the correct area ofthe figure? What mistake might Doug have made?5 units5 units write one hundred sixty-six thousandths in standar form In the final draft of the Declaration of Independence, identify the statement that supports John Locke'sphilosophy? A human-operated spaceship reaches the moon in 3 days. the moon is about 386,400 km from earth. mars, our closest planetary neighbor, is, at its closest, about 140 times farther away from us than the moon if mars stays in place. assuming a very simple model of the solar system, about how long would it take that same spaceship to reach mars? which of the following are indirect costs for the finishing department of a furniture manufacturer? (check all that apply.) where qs is the quantity supplied of the good, p is the price of the good, pi is the price of an input, and f is the number of firms producing the good. if pi if the price elasticity of supply is 0.2, and a price increase led to a 3% increase in quantity supplied, then the price increase is about How many fundamental charges make up the value of the enclosed charge? (answer in billions)