g Tonya recognizes that one example of the impact of censorship on Internet service providers (ISPs) is that

Answers

Answer 1
law-enforcement agencies can force ISPs to identify customers who send emails using anonymous remaliers

Related Questions

explain different users of computer in briefly?​

Answers

Answer:

The question is invalid; there are many types of computer user. Why on earth do you think there are five?

From the top of my head.

Casual- someone at home browsing the web, reading email.

IT Consultant. Advising people.

Software developer- writing software

Secretary - manages email for a company

Academic. Writing research papers.

Monitors. Monitor a computer system.

That’s six off the top of my head. There are probably a dozen more. So why do you think there are five?

All Office programs have similar commands on the tab for changing the document view a. File b. View c. Locate d. display ​

Answers

Answer:

B. View

Explanation:

So you can eliminate "Locate" and "Display", since those do not exist on the Microsoft Word task bar.

Now you're left with File and View. File has everything to do with sharing and exporting your file, such as printing or saving it to your computer as a specific file.

With that being said, we're left with "B. View", which as you can see when you click it, presents many us with ways to view our document.

Good luck on your Microsoft Office/Word Certification!

1. Go to a popular online electronic commerce site like Amazon. Place several items in your shopping cart, and then go to check out. When you reach the screen that asks for your credit card number, right-click on the Web browser and select Properties. You may need to use the help feature of your browser to find the security protocols in use and the certificates used to secure your transactions. What did you find out about the cryptosystems and protocols in use to protect the transaction

Answers

On Amazon.com, I found that there are a few cryptosystems and protocols in place. The most interesting thing I found was that there were 12,292 blank lines of code before anything was actually written. Amazon ensures a secure transaction by encrypting the users information on the users end, and then decrypts their information on their end.

Each JavaScript command line ends with a(n) ____ to separate it from the next command line in the program.

Answers

The answer is :
semicolon (;)

You can change the ____ or position of text within a document's margins.
a. fielding
b. proportion
c. location
d. alignment​

Answers

Answer:

Alignment

Explanation:

That should be correct

You can change the alignment or position of the text within a document's margins. Thus, the correct option for this question is D. This is because it refers to the way text is arranged in the document between the margins.

What is alignment in a text?

Text alignment may be characterized as a type of paragraph formatting attribute that determines the appearance of the text in a whole paragraph. It is a term that describes how text is placed on the screen.

The changes in the text alignment are made by the following action:

Place the insertion point anywhere in the paragraph, document, or table that you want to align.Do one of the following: To align the text left, press Ctrl+L. To align the text right, press Ctrl+R. To center the text, press Ctrl+E.

Therefore, you can change the alignment or position of the text within a document's margins. Thus, the correct option for this question is D.

To learn more about Text alignment, refer to the link:

https://brainly.com/question/7512060

#SPJ2

How can I have a private conversation with no one knowing on my iPhone

Answers

Answer:

Just share a note by making one.

Explanation:

Thank you

why is it important to o save a file when using a computer

Answers

Answer:

I think that it's important to save a file when using a computer so you won't lose it. Much like a document usually files are important and mark progress. Like if you're writing an essay and get tired simply save it to a file or document and continue it later. But if you weren't to do that you could lose all your saved work.

Explanation:

Hope that helps. there's not a lot of information to go off of

I think that it's important to save a file when using a computer so you won't lose it.

how does the internet bring people farther apart
use a paragraph to answer the question​

Answers

Answer:

First of all you may not be able to see your friend in person and it gets very sad. Sometimes you call them but they don't answer you because they don't have enough time to talk or they have something else to do. They won't always want to be on the internet you know, they want to go outside and get a life and not be like the FRE-KIN T-I-K T-O-K-E-R-S WHO ARE CHILDREN AND BEING VERY STU-PID AND ARE TOTAL IDIOTS AND SAY STUFF THAT MAKE NO SENSE AND TRY TO GET ATTENTION. OH DON'T BRING TOWARDS THE GA-CHA IT SO TRASH. I still hate gacha :) and I am happy. Another thing is what some people post, you see you meet friends in real life and sometimes you get to know them but you don't know what they might be doing on the internet and another thing is that they post stuff that makes you feel uncomfortable and disgusted.

Q) Look at the code and determine the output

y=-10
while(y<10):
print('$', end="") y += 5

(a) $$$$$$$$$$
(b) $$$$
(c) $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
(d) Nothing will be printed

Answers

Answer:

B.

Explanation:

Write an if/else statement that assigns 1 to the variable fever if the variable temperature is greater than 98.6; otherwise it assigns 0 to fever.

Answers

Answer:

temperature = int(float(input("Enter temperature: ")))

fever = 0

if temperature > 98.6:

   fever +=1

else:

   fever = 0

print(fever)

Explanation:

Explain the difference between the = symbol in Java and in mathematics.

Answers

Answer:

In maths the '=' sign tells us that the two integers or variables on either side are the same, wheras in Java the '=' sign means that you are assigning the variable on the left hand side it's value which will be on the right

What is the term for the action of Brazil imposing tariffs on US imports in response to the imposed tariffs by the U.S. on Brazilian exports to the United States ?

A. Reclaiming
B. Retaliation
C.retribution

Answers

I think the answer is B.

Does technology always follow the science, yes or no and explain the reason your choice

Answers

Answer:

NO

Explanation:

because Technology does not always follow science but it may actually lead science in some instances. An example is weather forecasting.Mark me brainliest plz

I want know answer for best way to copy formula on MS Access

Answers

Answer:

copy and paste is alternate

The problem below uses the function get_numbers() to read a number of integers from the user. Three unfinished functions are defined, which should print only certain types of numbers that the user entered. Complete the unfinished functions, adding loops and branches where necessary. Match the output with the below sample:


Enter 5 integers:

0 5

1 99

2 -44

3 0

4 12

Numbers: 5 99 -44 0 12

Odd numbers: 5 99

Negative numbers: -44

Answers

size=6

def get_numbers(num):
numbers = []
print('Enter %s integers:' % num)

for i in range(0,num):
print(i,end=' ')
user_input = int(input())
numbers.append(user_input) # Add to numbers list
return numbers

def print_all_numbers(numbers):
# Print numbers
print('\nNumbers:',end=' ')
for i in range(0,len(numbers)):
print(numbers[i],end=' ')

def print_odd_numbers(numbers):
# Print all odd numbers
print('\nOdd numbers:',end=' ')
for i in range(0, len(numbers)):
if numbers[i]%2!=0:
print(numbers[i], end=' ')


def print_negative_numbers(numbers):
# Print all negative numbers
print('\nNegative numbers:',end=' ')
for i in range(0, len(numbers)):
if numbers[i] <0:
print(numbers[i], end=' ')

nums = get_numbers(size)
print_all_numbers(nums)
print_odd_numbers(nums)
print_negative_numbers(nums)

Discuss your role as an IT professional in terms of your responsibility to clients, co-workers and society.

Answers

An IT professional is expected to deliver correct installations and programming that are safe from security breaches to clients. To co-workers, teamwork, respect, and brainstorming are needed to work together and achieve results. To society, an IT professional is expected to deliver architectures that do not compromise security and privacy.

An information technology professional could be focused on the hardware or software of systems. It is vital that IT professionals deliver services that are foolproof and not susceptible to attacks.

When working with colleagues, they must cooperate in order to deliver the most efficient services.

Learn more about IT professionals here:

https://brainly.com/question/14314381

What free website can you record videos on, and edit them without money?

Answers

Answer:

You can edit videos on Capcut for free and I think you can also use Alightmoon

Answer:

You can edit videos using this application called Kinemaster.

Explanation:

After recording the video download Kinemaster available on Playstore and App store


Which two of these can be stored in a float variable?
1
C
3.4
true
"hello"

Answers

Answer:

3.4

Explanation:

A float variable can only store a floating-point number which means it can store a number that has a decimal place or a decimal number.

Answer:

float variable is

3.41

why GUI operating system is more popular than CUI operating system these days? discuss
please give me long answer​

Answers

Answer:

Explanation:GUI operating system is more popular than CUI operating system these days because they support extra devices and multimedia system and also network and internet which CUI doesnot support. In CUI operating system we have to type commands to perform any task in the computer but in GUI operating system we can give vommands to the computer by clicking on icons, menus and buttons which is easier to us.

Hope It helps................

You would like the word "Employee" to appear in cells A1, B1, C1, D1, and E1. To be efficient, you should
type the label in Al and drag down column A
use the merge and center command
type the label in Al and use autofill
type the label in each of the cells

Answers

To be efficient, type the label in Al and use autofill. Check more about excel below.

What is Excel used for?

Microsoft Excel is known to be a kind of software that helps its users to be able to edit, organize and calculate data through the use of a spreadsheet.

Note that one can be able to duplicate a word such as "Employee" on excel by typing the label in Al  and use autofill.

Learn more about Excel from

https://brainly.com/question/25879801

#SPJ2

1. All the computer has a power button.​

Answers

Answer:

The power button is a round or square button that powers an electronic device on and off. Nearly all electronic devices have power buttons or power switches. Typically, the device powers on when the button is pressed and powers off when it's pressed again.

Explanation:

1. True. All computers have some way of turning on or off. whether that be a button or a switch.

Write code that assigns bigValue with the return value of calling the function GetBiggestValue passing number1 and number2 as arguments (in that order). Then, assign bigValue with the return value of calling GetBiggestValue passing bigValue and number3 as arguments (in that order).

Answers

Code:

Function GetBiggestValue(integer value1, integer value2) returns integer result
if value1 > value2
result = value1
else
result = value2

Function Main() returns nothing
integer userVal1
integer userVal2
integer userVal3
integer bigValue

userVal1 = Get next input
userVal2 = Get next input
userVal3 = Get next input

bigValue = GetBiggestValue(userVal1, userVal2)
bigValue = GetBiggestValue(bigValue, userVal3)

Put "Max value: " to output
Put bigValue to output

a web server is a computer that manages files for multiple user on a net work. true or false​

Answers

True. I’m pretty sure

Which item would a small business most likely used to meet its daily operational needs ?

Answers

They could use a Budget software

Answer:

Commercial, ready-to-use software

Explanation:

what is the keyboard shortcut to display formulas on the worksheet

Answers

the keyboard shortcut is c=8

Write a program that allows the user to enter three separate strings: a city name, a state name, and a ZIP code.

Answers

Answer:

In Python:

city = input("Enter a city: ")

state = input("Enter a state: ")

zip_code = input("Enter a zip code: ")

Consider a system which has a memory access time of 300 nsec. An average page fault takes around 10 millisecond to get serviced. If the page fault occurs with a probability of 4% in the system, then find out the effective memory access time of that system. If somehow, you manage to reduce the probability of page fault to 2%, then by how much the system performance improves as compared to the previous case?

Answers

Answer 72 ncs is the answer im pretty sure

You can find the answer in the attached photo

Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string in c++

Answers

#include
#include

using namespace std;

int CountCharacters(char userChar, string userString){
int result = 0;
for(int i = 0;i if(userString[i] == userChar){
result++;
}
}
return result;
}

int main(){
string userString;
char userChar;
cin>>userChar>>userString;
cout< return 0;
}

Please answer these questions.

Answers

For question 15 the answer is option C. I don't know the answers to the other questions

Explain network optimization challenges of internet providers.

Answers

Answer:

The internet was initially used to transfer data packets between users and data sources with a specific IP adress.Due to advancements,the internet is being used to share data among different small,resource constrained devices connected in billions to constitute the Internet of Thing (IoT).A large amount of data from these devices imposes overhead on the (IoT) network.Hence,it is required to provide solutions for various network related problems in (IoT) including routing,energy conservation,congestion,heterogeneity,scalability,reliability quality of service (QoS) and security to optimally make use of the available network.In this paper,a comprehensive survey on the network optimization in IoT is presented.

Other Questions
When I had laid it on the floorI went to blow the fire a-flame,But something rustled on the floor,And someone called me by my name:It had become a glimmering girlWith apple blossom in her hairWho called me by my name and ranAnd faded through the brightening air.The Song of Wandering Aengus,William Butler YeatsHow should a reader change tone to match the change of events between the first half of the stanza and the second half? Answer by completing the sentence.The reader's voice should change from a descriptive tone to one that sounds. Which segments show changes of state that release heat? check all that apply. Ba cb dc ed fe. which two details are the most important in a summary of the excerpt. Can someone help me with 45 ? Could somebody please explain this to me? Hello! Sorry for asking again!!Here is my social science/history question!How did Muslims advance in Astronomy?50 points + brainilest!! How would I simplify radical expressions? Sleeper Class coaches of the Indian Railways have a seat numbering arrangement as shownbelow. Each 'cubicle' seats 8 people as shown.WINDOW SIDE410MiddleSeats2.63AISLE (PASSAGE)8SIDE SEATS7Ramesh and his parents have 3 tickets and their seat numbers are 29, 30 and 31. What are theirseats?A One aisle, one window, one middle seat. B One middle, one aisle and one side seat.C One aisle and two side seatsD Two side seats and one window seat 21 Answer: Select the letter of the term that identifies how the underlined word or phrase functions in the sentence: A Turkish man made the carpet hanging here. a. subject c. adjective b. direct object d. part of a verb phrase22 Answer: Select the letter of the term that identifies how the underlined word or phrase functions in the sentence: The wool used in this rug is coarse and heavy. a. subject c. adjective b. direct object d. part of a verb phrase23 Answer: Select the letter of the term that identifies how the underlined word or phrase functions in the sentence: The museum plans to display a number of rugs in its new exhibit. a. subject c. adjective b. direct object d. part of a verb phrase24 Answer: Select the letter of the term that identifies how the underlined word or phrase functions in the sentence: Hanging all of those rugs for display will be quite a job. a. subject c. adjective b. direct object d. part of a verb phrase25 Answer: The infinitive form of CREATE a. creating b. to create c. created26 Answer: The past participle of BUY a. to buy b. buying c. bought27 Answer: The gerund formed from DESIGN a. designing b. designed c. to design28 Answer: The present participle of DISPLAY a. to display b. displaying c. displayed Identify the total number of molecules in the chemical formula: 6CH4 a 6 b 10 c 24 d 30 A serving of food that has 10% to 19% of a nutrient based on a 2,000-calorie diet is considered to have __________.A.low nutritional valueB.good nutritional valueC.average nutritional valueD.excellent nutritional valueA serving of food that has 10% to 19% of a nutrient based on a 2,000-calorie diet is considered to have __________.A.low nutritional valueB.good nutritional valueC.average nutritional valueD.excellent nutritional value What impact did Uncle Tom's Cabin have on the slavery controversy?a. It provided Northern readers with an account of slavery in the Southa.b. White Southerners viewed it as a fair account on their way of lifeC. It led to the repeal of the Fugitive slave act. d. All of the above what is the solution to the system 3x+2y=-3 and 9x +4y=3 Liz has 72 stamps in her stamp collection. Risa, who just started her collection, has 9 stamps. Lizs collection is how many times larger than Risas? Choose the answer that has the correct equation AND the correct solution to the equation.9x = 72; x = 8 times as many stamps9 + x = 72; x = 63 times as many stamps9x = 72; x = 7 times as many stamps72x = 9; x = 8 times as many stamps Hayley is considering two gym membership plans. The plans are detailed here.HELP ASAP 10 POINTS Plan One: $40 for a monthly pass plus $4 for each gym visitPlan Two: $12 for each gym visit.Which equation expresses the situation in the form of y=mx+b where x is the number of gym visits per year and y is the total cost per month for Plan One? Can someone please give me the (Answers) to this? ... please ... What effect did the trade route between Manila and Acapulco have on the Spanish colony of Louisiana?pls help en cul pas se puede encontrar el chaco, una zona rida donde es importante la explotacin de madera? PLEASE HELP Solve for x PLEASE HELP also i know this isnt physics but there was no HOPE/Gym subject for me to choose.