It is important to know the terms of use of any website because why

Answers

Answer 1
They may be selling your information. For example have you ever seen a icon that said accept cookies.. that is a type of term you must agree on to enter certain websites.
Answer 2
They could sell your information or HAC you

Related Questions

An employer uses the spreadsheet below to determine the average hourly salary of her four employees. She begins by determining the hourly salary of each person and displaying that in column D. Which formula can she then use to determine the average hourly salary?



=average(D2:D5)

=average(B2:B5)

=average(C2:C5)

=average(B5:D5)

A. =average (D2:D5)

Answers

Answer:

The answer is "=average(D2:D5)"

Explanation:

 In Excel, the AVERAGE function is used to measures the average number, in the arithmetic average.This method is used as the group of numbers, that determines by using the AVERAGE function. This feature is an AVERAGE, which is used to ignores the logical data, empty columns, or text cell. It is up to 255 specific arguments, that could be handled by AVERAGE, including numbers, numerical values, sets, arrays, or constant.

Answer:

A

Explanation:

Can a host have more than one IPv4 address? Explain.

Answers

Answer:

Yes.

Explanation:

This is referred to as multihoming. Typically you use this when you want to connect to multiple networks. Also when you use VPNs, you have a separate IP address per VPN.

hich of these statements is a value statement?
a.
Tacos are delicious.
b.
Lying is wrong.
c.
Cooking is hard.
d.
Puppies are funny.

Answers

The answer to your question is b
the answer would be B, lying would be the “value” part of the statement

what happens if none of the selector values match selector in a simple case expression in pl/sql

Answers

Answer:

If no values in WHERE clauses match the result of the selector in the CASE clause, the sequence of statements in the ELSE clause executes. ... When the IF THEN statement has no ELSE clause and the condition is not met, PL/SQL does nothing instead raising an error.

Explanation:

On what menu in Microsoft Word can you locate the Macro feature?
Group of answer choices

Review

Edit

Home

View

Answers

Answer:

View

Explanation:

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.

In Microsoft Word 2019, the users are availed with the ability to edit the word document in the following view type;

I. View Mode

II. Print Mode

III. Drift Layout

The Microsoft Word developers has made it easy for their users to automate the tasks used frequently through the creation and execution of macros.

Basically, macros comprises of commands and instructions which may be grouped together as a single command to automatically execute a task. You can locate the Macro feature in the View tab of Microsoft Word.

There are many advantages and some disadvantages to using social media. Explain at least one of the advantages to
social media use and at least one of the disadvantages. Do you think that the widespread use of social media is a good
thing over all? Why or why not?

Answers

Answer:  yes

Explanation:social media has the advantage of long distance communication and a disadvantage is cyber bullying and yes i thank if most people where nice long social media is good  

what are pixels?
A: The colors In an image
B: The overall size of the image
C: The overall file size of the image
D: The smallest unit on the image that can be controlled​

Answers

Answer:

D: The smallest unit on the image that can be controlled

Option D????........

(PYTHON) Complete the program to print out nicely formatted football player statistics. Match the following output as closely as possible -- the ordering of players is not important for this example.
2012 quarterback statistics:
Passes completed:
Greg McElroy : 19
Aaron Rodgers : 371
Peyton Manning : 400
Matt Leinart : 16
Passing yards: ...
Touchdowns / Interception ratio:
Greg McElroy : 1.00
Aaron Rodgers : 4.88
Peyton Manning : 3.36
Matt Leinart : 0.00
quarterback_stats = {
'Aaron Rodgers': {'COMP': 371, 'YDS': 4925, 'TD': 39, 'INT': 8},
'Peyton Manning': {'COMP': 400, 'YDS': 4659, 'TD': 37, 'INT': 11},
'Greg McElroy': {'COMP': 19, 'YDS': 214, 'TD': 1, 'INT': 1},
'Matt Leinart': {'COMP': 16, 'YDS': 115, 'TD': 0, 'INT': 1}
}

print('2012 quarterback statistics:')

print(' Passes completed:')
for qb in quarterback_stats:
comp = quarterback_stats[qb]['COMP']
#print(' %?: %?' % (qb, comp)) # Replace conversion specifiers
# Hint: Use the conversion flag '-' to left-justify names

print(' Passing yards:')
for qb in quarterback_stats:
print(' QB: yards')

print(' Touchdown / interception ratio:')
# ...
# Hint: Convert TD/INTs to float before calculating ratio

Answers

Answer:

quarterback_stats = {

'Aaron Rodgers': {'COMP': 371, 'YDS': 4925, 'TD': 39, 'INT': 8},

'Peyton Manning': {'COMP': 400, 'YDS': 4659, 'TD': 37, 'INT': 11},

'Greg McElroy': {'COMP': 19, 'YDS': 214, 'TD': 1, 'INT': 1},

'Matt Leinart': {'COMP': 16, 'YDS': 115, 'TD': 0, 'INT': 1}

}

print("2012 quaterback statistics: ")

print("Passes completed: ")

for qb in quaterback_stats.keys():

   print(f"{quaterback_stats[qb]} : {quaterback_stats[qb]['COMP']}")

print("Passing yards:")

for qb in quaterback_stats.keys():

   print(f"{quaterback_stats[qb]} : {quaterback_stats[qb]['YDS']}")

print("Touchdown / interception ratio")

for qb in quaterback_stats.keys():

   if quaterback_stats[qb]['TD'] > 0 and quaterback_stats[qb]['INT'] > 0:

       print(f"{quaterback_stats[qb]} : {float(quaterback_stats[qb]['TD']) / float(quaterback_stats[qb]['INT])}")

   else:

       print(f"{quaterback_stats[qb]} : {0.0}")

Explanation:

The python program gets data from a dictionary called quaterback_stats which holds the data of football players with their names as the keys and a list of records as the value.

The program prints the individual records from the dictionary using a for loop statement on the list of dictionary keys (using the keys() method).

Which of these type parameters is used for a generic class to returnrand accept any type of object?
Select one:
a. T
b. N
C.V
d. E
e. K​

Answers

Answer:

To accept and return any type of object T

What's the difference between an IDS and an IPS?

Answers

Answer:

Following are the differences between IDS and IPS

IDS is a monitoring and detection system whereas IPS is a controlling system.IDS does not execute any action on its own whereas IPS accepts or rejects the packets based on the ruleset provided.IDS requires human involvement to review the results whereas IPS updates the database by the new threat faced.

Explanation:

Intrusion Detection System ( IDS )

The system analyzes the network traffic for signals that shows that the attackers use to hack and steal the data is known as Intrusion Detection System ( IDS ). It detects different kinds of behaviors, like security violations and malware.

Intrusion Prevention Systems (IPS)

IPS works like a firewall between the external world and the internal network. IPS actively protects the network from threats based on the security profile provided.

The process of changing a variable's data type is called type casting.
True
Or False

Answers

True ! I think totally true (:
This statement would’ve been true

Can you withdraw from courses in top hat?

Answers

Answer:

Yes, but this must be done before the withdraw deadline

Explanation:

TopHat is an online learning platform. Students register for courses and if they decide not to continue with a course for reasons best known to them, they are allowed a time period usually one to two weeks to drop the courses. They are then reimbursed the fee for that particular course.

But if that time period elapses and they drop the course, that is considered a withdrawal that is not accepted and which no provisions for reimbursements are made.

In 2002, Congress passed the Federal Information Security Management Act (FISMA), which mandates that all federal agencies __________.

Answers

Answer: implement plans regarding information security so that sensitive data can be protected.

Explanation:

FISMA is an acronym that simply means Federal Information Security Management Act. This Act was passed by the Congress of the United States in 2002. According to the Act, there should be implementation of plans regarding information security by every federal agencies so that sensitive data's can be protected.

This was necessary so that there can be integrity, and confidentiality with regards to the informations that are system related.

Popular operating systems include _______. Select all that apply. A. Chrome OS B. Safari C. macOS D. Microsoft Windows

Answers

Answer:

The correct answers are C and D. Popular operating systems include macOS and Microsoft Windows .

Explanation:

An operating system is a program (usually a set of cooperating programs) that is loaded into memory after a computer is started and controls the hardware. It acts as a medium between the hardware and the computer user, with the aim of allowing the user to run programs, being responsible for the start and end of other programs, the control of hardware and the data input. Common operating systems are Microsoft Windows, Apple macOS and Linux.

Sites on the surface web are _____.
A. freely available to all users

B. home pages only

C. older pages that have not been updated

D. member-only sites

Answers

It’s A because surface website’s are available for everybody but the dark web is opposite

It should be noted that Sites on the surface web are A. freely available to all users.

What is Surface Web?

The Surface Web can be regarded as a portion of the World Wide Web which is accessible for  general public and it can be  searched with standard web search engines.

Therefore, option A is correct.

Learn more about Surface Web at:

https://brainly.com/question/4460083

Select the correct answer.
Which task occurs during the development phase of the SDLC?
A.
requirements gathering
OB.
coding
O C.
maintenance
OD. budgeting

Answers

Answer:

The correct answer is: Option OB. Coding

Explanation:

Software Development Life Cycle is used to develop software. It is a general collection of steps that have to be followed in development of software.

The development phase comes after the system design phase of SDLC. The coding and programming for software is done in the development stage.

Hence,

The correct answer is: Option OB. Coding

Answer:

coding

Explanation:

Did anyone do 5.7.5 Factorial on Code HS??



20 POINTS

Answers

I’m so sorry that you have no more than me and I have to ask you something

A large multinational client has requested a design for a multi-region database. The master database will be in the EU (Frankfurt) region and databases will be located in 4 other regions to service local read traffic. The database should be a managed service including the replication. The solution should be cost-effective and secure. Which AWS service can deliver these requirements

Answers

Answer:

RDS with cross-region Read Replicas

Explanation:

The Amazon Web Service, popularly known as the AWS is a subsidiary company of the Amazon.com which provides various cloud computing platforms on demand and Application Programming Interface or the API to other companies, governments and individuals.

The Amazon web services provides an effective RDS. RDS stands for Relational Database Service. The Amazon RDS is used to set up as well as operate and scale relational database in cloud. It provides resizable capacity and cost effective database.

In the context, Amazon Wen Services  can deliver RDS with cross regional Read Replicas.


b. List any four major drawbacks of the first generation computer​

Answers

Answer:

Terribly low storage space, limited to mathematics/computing, required entire rooms to use, and low information yield for hours of processing.

Explanation:

A spreadsheet is an example of a(n):

Answers

Answer:

general-purpose application

Explanation:

General purpose application

1. These are software applications which can be used for multiple purposes.

2. These applications perform various tasks as per the need of the user. These tasks can vary in complexity and may or may not be related to each other.

3. These applications are useful for almost all categories of users.

Example include spreadsheets which is a primary application for accounting purpose. It can also be used for to store numerical data or other data in an organized format.

Another use of spreadsheets is visible in data analysis. Graphs and charts can be created based on the given numerical data stored in the spreadsheet. This helps in business growth.

Microsoft Excel and Apple Numbers are spreadsheet applications.

Another example is a word application that can be used to prepare document, reports, and flyers also. Microsoft word is a word processor.

Specialized program

1. These are software applications which can be used for special purpose only.

2. These applications can perform only the task for which it is created.

Examples include windows media player. This application can only run media (audio or video) programs.

System application

1. These include operating system and utility applications.

2. The operating system acts as an interface between the user and the hardware resources of the computer.

For example, Windows is an operating system. It is available in various versions.

3. The computer system and its resources, both software and hardware, are maintained and optimized using utility applications.

Anti-virus is an example of utility applications. It protects the computer resources from virus.

Utility applications

4. The computer system and its resources, both software and hardware, are maintained and optimized using utility applications.

5. These applications are mandatory to smooth functioning of a computer.

For example, disk driver, file manager and back up applications help in managing disks and aid in taking back ups and file management is done by file manager

write a program to accept a name and roll number of 5 student using structure in C​

Answers

Answer:

This C program is to store and display the information of a student using structure i.e. to store and display the roll number,name,age and fees of a student using structure.

Basically one should know how to write the syntax of a structure and the rest is just implementation of the programs done so far.

If you yet need a dry run of the program or any other query, then kindly leave a comment in the comment box or mail me, I would be more than happy to help you.

CODE

#include <stdio.h>

#include <string.h>

struct student {

char name[50];

int roll;

};

int main() {

struct student student1;

strcpy(student1.name, "Chris Hansen");

student1.roll = 38;

printf("Name: %s\nRoll number: %d\n", student1.name, student1.roll);

struct student student2;

strcpy(student2.name, "Edip Yuksel");

student2.roll = 19;

printf("Name: %s\nRoll number: %d\n", student2.name, student2.roll);

struct student student3;

strcpy(student3.name, "Skeeter Jean");

student3.roll = 57;

printf("Name: %s\nRoll number: %d\n", student3.name, student3.roll);

struct student student4;

strcpy(student4.name, "Sinbad Badr");

student4.roll = 114;

printf("Name: %s\nRoll number: %d\n", student4.name, student4.roll);

struct student student5;

strcpy(student5.name, "Titus Alexius");

student5.roll = 76;

printf("Name: %s\nRoll number: %d\n", student5.name, student5.roll);

return 0;

}

DISPLAY

Name: Chris Hansen

Roll number: 38

Name: Edip Yuksel

Roll number: 19

Name: Skeeter Jean

Roll number: 57

Name: Sinbad Badr

Roll number: 114

Name: Titus Alexius

Roll number: 76

EXPLANATION

Use string.h to access string functions for names.

Create a struct outside of the main on student name and roll number.

strcpy works for strings.

Create for 1 student and copy and paste for the others.

Display the name and roll number for each student.

if you were an architect planning on building a large scale Municipal complex what type of engineer would you identify as essential to the Project's success
mechanical engineer
structural engineer
civil engineer
computer engineer​

Answers

Answer: civil engineer

Explanation:

Based on the information given, the type of engineer that would be identified as essential to the success of the project would be the civil engineer.

Civil engineers are the engineers that are in charge of the planning and overseeing building and infrastructure construction. They plan and monitor constructions involving bridges, road, houses, power plants etc.

Answer:

The answer is civil engineer.

Explanation:

Explain why the MS08-067 exploit is bad.

Answers

Answer:

MS08-067 was a security update. It is considered bad.

Explanation:

The MS08-067 was a security bulletin by Microsoft. It was a security update of out-of-band which was released by Microsoft Inc. on October 23rd in the year 2008.

The MS08-067 is considered bad as the vulnerability which stated that the Server service in the Microsoft Windows version of SP4 and XP SP2 and SP3, along with the Server 2003 SP1 and sP2, also Vista Gold as well as SP1, Server. This shows that system is vulnerable to MS08-067 exploit on the Port 445, which makes the TargetVulnerable01 to be a very high-risk system.

1. Trust can be built in a relationship if:
A. There is transparency, both parties feel listened to and understood, communication is
approached with a "win-win" mentality, and all parties assume their due responsibility for
problems and issues
B. There is transparency, and it is established as soon as possible which party is right
C. O All parties feel heard and understood, and the dominant party gets their way
D. O Communication is approached with a "win-win" mentality, as long as all parties get their
point across

Answers

Answer:

A

Explanation:

because if both parties feel safe communicating and feel understood by the other party they feel safe trusting the other person and it develops a trust worthy relationship

Trust can be built in a relationship if there is transparency, both parties feel listened to and understood, communication is approached with a "win-win" mentality, and all parties assume their due responsibility for problems and issues. Thus, option (a) is correct.

What is relationship?

The term relationship was to maintain of the person. The relationship was the measure of the one parties to the another parties. The relationship was the included of the two members. The friends and the family are the included of the relationship. The relationship was the necessary.

The two participants in the relationship-building process were transparent with one another. They experience being heard and understood. They are explained to the people who are approached with a "win-win" perspective. All of the parties involved's concerns and difficulties fall under their proper jurisdiction.

Therefore, option (a) is correct.

Learn more about on relationship, here:

https://brainly.com/question/23752761

#SPJ2

Write a method doubleUp that doubles the size of a list of integers by doubling-up each element in the list. Assume there's enough space in the array to double the size. Suppose a list stores the values [1, 3, 2, 7]. After calling list.doubleUp(), the list should store the values [1, 1, 3, 3, 2, 2, 7, 7].

Answers

Answer:

def double_up(self, mylist):

   doubled = list()

   for item in mylist:

       for i in range(2):

           doubled.append(item)

   return doubled

Explanation:

The program method double_up gets the list argument, iterates over the list and double of each item is appended to a new list called doubled.

Methods are functions defined in classes. A class is a blueprint of a data structure. Each instance of the same class holds the same attributes and features.

When preparing the heading for an MLA Format Academic Report, which of the following shows the proper order of the for lines of the header?

A. Student Name, Instructor, Course, Date
B. Instructor, Course, Student Name, Date
C. Course, Student Name, Instructor, Date
D. Student name, Date, Instructor, Course

Answers

Answer:

A. Student Name, Instructor, Course, Date

Explanation:

Begin one inch from the top of the first page and flush with the left margin. Type your name, your instructor's name, the course number, and the date on separate lines, using double spaces between each. Double space once more and center the title

A user clicks. such as option buttons and check boxes in a dialog box to provide information

Answers

Answer:

It's an input,

Write a program called FarewellGoodBye that prints the following lyrics. Use static methods to show structure and eliminate redundancy in your solution. Farewell, goodbye, au revoir, good night! It's time, to go, and I'll be out of sight! Farewell, goodbye, au revoir, take care! I'll say, goodbye, that's neither here nor there! Farewell, goodbye, au revoir, see you later! I hope, you think, I'm a lover, not a hater!

Answers

Answer:

Please find the attachment file of the code.

Explanation:

In this code, a static method "lyrics" is declared, that defines three-string variable "a,b, and c ", that holds some values, which is defined in the question and use print method to print other values and prints "a,b, and c" string value inside the main method the static method "lyrics" is called that print the above values.  


What is the document that provides basic guidance and regulatory requirements for derivative classification
for DoD personnel?

Answers

Answer: DoDM 5200.01, DoD Information Security Program

Explanation:

The document that provides basic guidance and regulatory requirements for derivative classification

for DoD personnel is referred to as the DoDM 5200.01, DoD Information Security Program.

The purpose of this is to help in the promotion of an effective way that can be used in the classification, protection, and application of applicable instructions.

It should be noted that the  document that provides basic guidance and regulatory requirements for derivative classification for DoD personnel are;

DoDM 5200.01 DoD Information Security Program

According to the question, we are to discuss document that provides basic guidance as well as regulatory requirements for derivative classification.

As a result of this, we can see that the best documents for this is DoDM 5200.01, this is because, provides basic guidance and regulatory requirements as regards a DoD personnel.

Therefore, DoDM 5200.01 serves as document that provides basic guidance and regulatory requirements for derivative classification.

Learn more about DoD Information Security Program at;

https://brainly.com/question/13171394

Melissa wrote the following method in Java. It is designed to compute 2^n, but returns an incorrect result. In which line has she made a mistake?
public static int powerTwo(int n)
if (n == 1){
return 1;
} else {
return 2 + powerTwo(n-1);

Answers

Answer:

public static int powerTwo(int n) {

  if (n == 0){

     return 1;

  } else {

     return 2 * powerTwo(n-1);

  }

}

Explanation:

There are actually three mistakes:

2⁰ = 1, so the end criterium of the recursion should be n==0the + should be a *various curly braces missing
Other Questions
Solve the equation X-4/2=10X=24X=22X=29X=39 This is a measure of mass per unit volume. Henry is planning to create two rectangular gardens.Part AHenry has 96 feet of fencing to enclose the first rectangular garden. The garden will be x feet wide.Which function, f(x), can Henry use to determine the area, in square feet, of the first garden?a f(x) = 48xf(x) = 48 - xf(x) = 48 xf(x) = 48x - x2 How can you express 11x7 using the distributive property 5.6 x 10^3 cm = ___cg When it is winter in the northern hemisphere we are receiving? A) No sunlight B) A moderate amount of sunlight C) Direct sunlight D) Indirect sunlight Select the correct answer. Matt has been asked to write a draft for a business message based on an outline. What is his main task? O A. to create a polished copy of the message that can be published O B. to create a rough draft of the message with short sentences C. to create a more detailed outline with grammatically correct sentences D D to create an alternative outline based on his own ideas question in pic help Describe all the x-values at a distance of 25 or less from the number 12. Enter your answer in interval notation. PLEASE HELP! BRAINLIEST! ENGLISH QUESTIONWhich statement best explains how the infinitive is used in the sentence?I read the Spider-Man comic book to compare the movie plot with the original story written by Stan Lee.A. The infinitive TO COMPARE functions as an adverb that modifies the verb READB. The infinitive WRITTEN BY functions as a prepositional phrase describing Stan Lee.C. The infinitive WRITTEN BY functions as a verb giving action to Stan Lee.D. The infinitive TO COMPARE functions as an adjective that describes THE MOVIE PLOT. 1. What is the primary tool that Windows Server administrators use to create and manage user accounts Pls pls pls help me Hola a todos:Hay que hacer todas las tareas de la casa. Todos los das hay que lavar los platos despus de comer. Tambin hay que barrerla cocina. Los nios tienen que hacer sus camas por la maana. Pap tiene que sacar la basura y cocinar.Susi, tienes que pasear al perro por la maana y por la tarde. Andrs, tienes que poner la mesa para la cena. Laura, tienes queregar las plantas.Nios, todos deben ayudar mucho a su pap. Tienen que ser buenos con pap.Un beso.Mam K12 students help please!!!!!!!!!!!! 5. ______cuadernos tienes?a. Cuantob. Cuantac. Cuantosd. CuantasCorrect form of cuanto? 4 and 9/10 minus 2 and 2/5 = (in fractions)5 and 1/2 minus 2 and 2/5 = (answer in fractions)5 and 1/2 plus 2 and 3/5 =4 and 5/6 minus 2 and 1/4 = A country with an absolute advantage can produce a good or service Think about what you read in this text. Which of thefollowing statements is an example of Ulysses'wisdom?leaving his good sword back on the ship for safe keepingBdescribing the location where the crew had anchored hisshipsCignoring the giant when he devoured the crew membersDknowing he would be stuck in the cave if he slayed thegiant 5. Vosotrosa la escuela juntos.ibamosibanibaisMARK THE BRAINLIEST If 6 days ago was Wednesday, what day will it be 701 days from now?A Wednesday B Thursday C Friday D Saturday E Sundayshow work!!