john is responsible for security devices at his company. he is concerned about detecting intrusions. he wants a solution that would work across entire network segments. however, he wants to ensure that false positives do not interrupt work flow. what would be the best solution for john to consider?

Answers

Answer 1

Devices for network security are often real or virtualized hardware appliances with installed software from a particular vendor. On rare occasions, companies build their own network security device using bespoke software and commodity server hardware.

There are three primary categories of security system packages on the market today: home automation, security hardware, and environmental monitoring. Because it recognizes when someone is inside your home when they shouldn't be, a motion sensor (also known as a motion detector) is the key component of your security system. Motion is detected in a space using one or more technologies using a motion sensor. Any method or technology used in a security and protection system to protect people and property from a variety of dangers, such as theft, fire, accidents, espionage, sabotage, subversion, and attack.

Learn more about security here-

https://brainly.com/question/28070333

#SPJ4


Related Questions

which expression references the data member suit within an object that is stored in position win (an integer variable) of the variable my deck, which is a one-dimensional array of objects?

Answers

my_deck[win].suit

option 1:-> it is not used in member calling

option 3: Here the positin variable is not opting

option 4:Suit is not an object

double result = 0.0;  for (int i = 0; i < 20; i++) {    result += all_registers[i].get_total(); }

new_month > 0 && new_month < 13

Other options are not checking new_month variable individually.

you can learn more through link below:

https://brainly.com/question/19585043#SPJ4

an application integrates all of its functionality into a package that is either deployed in its entirety or not at all, and all of its elements use a shared database. which architectural model does the application follow?

Answers

The application will follow the cloud architecture model. You don't have to be an expert to use cloud-based architecture. This monitoring and assistance are part of the deal with cloud servers.

The way technological elements come together to create a cloud, where resources are pooled through virtualization technology and shared across a network, is known as cloud architecture. The elements of a cloud architecture are as follows:

an entrance platform (the client or device used to access the cloud), a supporting platform (servers and storage), an online delivery system, a system.

These technologies work together to build a cloud computing infrastructure on which applications can operate, enabling end users to take use of the strength of cloud resources.

You don't have to be an expert to use cloud-based architecture. This monitoring and assistance are part of the deal with cloud servers. You pay less for it, and it guarantees that someone is always aware of the status of your program. By sharing resources among a group of users, multi-tenant systems also cut costs.

To know more about cloud architecture click here:

https://brainly.com/question/14187559

#SPJ4

suppose that we are exploring a rectangular maze containing 10 rows and 20 columns. what is the maximum number of recursive calls that can be generated if you start at the entrance of the maze and call traverse maze?

Answers

Recursion depth is the maximum number of nested calls (including the first one). It will be exactly n in our situation.

The JavaScript engine imposes a maximum recursion depth limit. We can rely on it being 10000; certain engines permit more, but most likely, 100000 exceeds the limit for most of them. By using mathematical induction, recursive algorithms' correctness is frequently demonstrated. This approach consists of two steps: establishing the base first, followed by an inductive step. The basis in your situation is any instance when k=0, or where k is odd but n is even. formal thinking. Formal or mathematical reasoning is the sole technique to demonstrate an algorithm's correctness for all potential inputs.

Learn more about recursion here-

https://brainly.com/question/20749341

#SPJ4

you are a unix engineer, and on october 29 you discovered that a former employee had planted malicious code that would destroy 4,000 servers at your company. this malicious code would have caused millions of dollars worth of damage and shut down your company for at least a week. the malware was set to detonate at 9:00 a.m. on january 31. what type of malware did you discover?

Answers

The type of malware you discovered that a former employee had planted in order to destroy 4,000 servers at your company and cause millions of dollars worth of damage and shut down your company for at least a week is the magic bomb.

What is a malware?

A Malware also known as a malicious software, is any program or file designed by hackers or cybercriminals that is intentionally harmful to a computer, network or server or capable of stealing or destroying data. Types of malware include computer viruses, Trojan horses, ransomware, worms and spyware.

Learn more on malware from:

https://brainly.com/question/22185332?referrer=searchResults

#SPJ4

the switch statement is a . question 1 options: a) test expression b) sequence structure c) multiple alternative decision structure d) nested decision structure

Answers

The switch statement is a multiple alternative decision structure.

What is switch statement?
In C#, a switch statement is a selection statement that enables the movement of programme control to the a statement list with such a switch label that matches the switch expression's value. Depending on the outcome of a comparison between such a controlling expression and the labels defined in the switch block, a switch statement is indeed a control statement which performs a set of logic. This kind of statement aids in selecting the code block to run from a list of candidates that reflect the various possible outcomes based on the value of the a variable or expression. Comparing use of a switch statement to the if..else..if. ladder, the switch statement performs better and is easier to read.

To learn more about switch statement
https://brainly.com/question/20228453
#SPJ4

we plan to use the pca algorithm on a data set of 2-dimensional feature vectors. then we find out that all the features vectors happen to fall onto the same straight line in the 2-d space. what will be the first principal vector e1 and the second largest eigen value λ2 from the pca algorithm

Answers

One of the most often used methods of linear dimension reduction is principal component analysis (PCA). It can be used both on its own and as a starting point for further dimension reduction techniques.

By projecting the data onto a set of orthogonal axes, the projection-based PCA approach changes the data. An unsupervised linear transformation method known as Principal Component Analysis (PCA) is frequently utilized in a variety of domains, most notably for feature extraction and dimensionality reduction. Data compression, made possible by dimensionality reduction, results in less storage space being used. It speeds up computation. It also aids in removing any extraneous features. Since PCA is a variance-maximizing activity, normalization is crucial. our original data is projected in a manner that maximizes variance.

Learn more about dimension here-

https://brainly.com/question/28688567

#SPJ4

find the maximum value and minimum value in milestracker. assign the maximum value to maxmiles, and the minimum value to minmiles. ex: if the input is: -10 20 30 40 the output is: min miles: -10 max miles: 40

Answers

#include <bits/stdc++.h>

std::vector<int> v;

int main(int argc, char* argv[]) {

   std::cout << "How many items will be in Milestracker?: ";

   int idx; std::cin>>idx;

   assert(idx>0);

   

   for(int i=0;i<idx;i++) {

       int m; std::cin>>m;

       v.push_back(m);

   }

   int maxmiles = *std::max_element(v.begin(),v.end());

   int minmiles = *std::min_element(v.begin(),v.end());

   

   if(maxmiles==minmiles) std::cout << "Elements in array are the same each other. So there is no maximum and minimum." << std::endl;

   else std::cout << "Max miles: " << maxmiles

             << "\nMin miles: " << minmiles << std::endl;

   return 0;

}

you're installing a new linux server that will be used to host mission-critical database applications. this server will be heavily utilized by a large number of users every day. which distributions would be the best choices for this deployment? (choose two.)

Answers

Use the printenv command to display the values of environment variables. When the Name parameter is specified, the system only prints the value corresponding to the variable you asked for.

Libraries - Libraries are collections of ready-made code that programmers may incorporate into their programs. Asynchronous JavaScript with XML is referred to as AJAX. Due to the compelling user experience it offers, it has gained popularity quickly despite being built on a blend of already-existing Web standards like HTML, JavaScript, CSS, XML, and SOAP. The environment variables in the current shell are displayed using the printenv command-line tool. On the command line, we can specify one or more variable names to print only those particular variables.

Learn more about command here-

https://brainly.com/question/14548568

#SPJ4

What happens when you are using non volatile storage? Where does it go?

Answers

Non volatile storage is stored in a memory chip that retains its data even when the power is turned off.

What is non-volatile storage?

Non-volatile storage is indeed a type of computer memory that can preserve data even after the power is turned off. In contrast, volatile memory requires constant power to maintain data. Non-volatile memory is commonly used to describe storage in semiconductor memory chips that store data in floating-gate memory cells made up of floating-gate MOSFETs (metal-oxide-semiconductor field-effect transistors), including flash memory storage including such NAND flash as well as solid-state drives (SSD).

Non volatile storage is used to store data that needs to be persistent, even when the power is turned off. This could be data like the operating system files on a computer, or user data like documents or photos. Non volatile storage can be either internal, like a hard drive, or external, like a USB flash drive.

To learn more about non-volatile storage

https://brainly.com/question/24688176

#SPJ13


What is the output of the attached code? *

Square s1 = new Square (4);
Square s2 = new Square (4);
s1.setRadius (2) ;
System.out.println("The area is " + (s2.getLength()*s2.getLength (
O The area is 4
O The area is 2
The area is 16
O The area is 6
O The area is 8

Answers

S1 B. Is the answer
Ur welcome

5.19 lab: output range with increment of 5 write a program whose input is two integers. output the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. ex: if the input is: -15 10 the output is: -15 -10 -5 0 5 10 ex: if the second integer is less than the first as in: 20 5 the output is: second integer can't be less than the first. for coding simplicity, output a space after every integer, including the last. 411942.2850272.qx3zqy7

Answers

The map() function takes a function (in this case an int function) and applies that function to each part of the enum returned by the split() function. So if you write a, b = map(int, input().split(" ")) and the user types 123 456 , then a == 123 and b == 456 .

This function is useful for getting multiple inputs from the user. Splits the given input at the specified delimiter. Any white space is a delimiter if no delimiter is specified. Usually the user splits her python string using the split() method, but you can also use it to get multiple inputs. In Python, use the input() function to get input from the user. Whatever you type as input, the input function converts it to a string. If you enter an integer value, the input() function converts it to a string. syntax: (command prompt).

Learn more about Function here-

https://brainly.com/question/12431044

#SPJ4

a b -tree is to be stored on disk whose block size is 3096 bytes. the data records to be stored are 36 bytes, and their key is 4 bytes. determine the values for m and l for the b -tree. assume pointers are 4 bytes each.

Answers

NARA's technical research staff conducted a nationwide survey of federal agencies to identify existing optical digital data disc installations.

This data collection process provided a modern user experience and helped system administrators gather insight into their institutions' plans to adopt optical digital disc technology. Small systems are defined as systems with fewer than 20 optical digital discs, few image capture and user workstations, and no jukeboxes. In practice, smaller systems are often pilot projects that have not yet been fully scaled, or serve as research test platforms. Larger systems, on the other hand, typically store optical digital data discs in jukeboxes, use network communications to link multiple image processing and user retrieval workstations, and are equipped with high-speed image capture equipment.

Learn more about research here-

https://brainly.com/question/18723483

#SPJ4

a firewall can do which of the following? (choose all that apply.) a. screen traffic for viruses. b. determine what user is sending transmissions. c. filter traffic based on rules. d. provide a layer of protection for the network.

Answers

By controlling network traffic, a firewall can assist in protecting your computer and data. By preventing undesired and unsolicited inbound network traffic, it does this.

By scanning this incoming traffic for any unwanted content like hackers and viruses that could infect your machine, a firewall verifies access. Firewalls are hardware or software devices that filter network traffic according to a set of rules. They are frequently characterized as host-based firewalls or network firewalls. While host networks are run on host computers, network firewalls filter traffic between two or more networks. In the OSI model's network layer (Layer 3), packet-filtering firewalls work. Firewalls with packet filtering make processing choices depending on protocols, ports, or network addresses.

Learn more about firewalls here-

https://brainly.com/question/13098598

#SPJ4

Why is data processing needed​

Answers

Data processing is essential for organizations to create better business strategies and increase their competitive edge. By converting the data into readable formats like graphs, charts, and documents, employees throughout the organization can understand and use the data.

Hopefully the answer was long enough!

assume a class window with a constructor that accepts two int arguments: width and height (in that order). declare an array named winarr, consisting of 3 window objects, where the first element is an 80x20 window, the second a 10x10 window, and the third a 133x40 window.

Answers

A constructor that takes arguments, also referred to as parameters, is referred to as a parameterized constructor.

A constructor, as we covered in the Java Constructor tutorial, is a unique kind of method that initializes the freshly generated object. The default constructor doesn't allow the passing of any parameters. Zero or no arguments is the response to the aforementioned query. To a default constructor, we are unable to pass parameters. A default constructor's sole function is to create the object. When a class in C++ includes a constructor that only requires one argument, this constructor is known as a conversion constructor because it enables automatic conversion to the class being created.

Learn more about Constructor here-

https://brainly.com/question/17347341

#SPJ4

What type of storage device that is usually configured as the Drive A?​

Answers

Answer:

Drive A called floppy drive

lauren wants to be a blogger but uses a chromebook for writing posts and uploading them to the website. if she has an internet connection, what software can help her do her work?

Answers

If Lauren has an internet connection, the software that can help her do her work is option b: Zoho writer

What does Zoho Writer serve as a tool for?

With the help of Writer's robust document automation tools, you can speed up processes and save time. Now, among other things, you may draft proposals, letters, contracts, publish papers, plan your posts on WordPress, and much more on this application.

Therefore, a capable word processor for editing, teamwork, and distribution is Zoho Writer. You may create business contracts, nondisclosure agreements (NDAs), sales agreements, and others.

Learn more about internet connection from

https://brainly.com/question/901213
#SPJ1

See full question below

Lauren wants to be a blogger but uses a Chromebook for writing posts and uploading them to the website. If she has an Internet connection, what software can help her do her work?

A. OpenOffice Writer

B. Zoho writer

C. Prezi app

D. Venmo

hat is the function of the interpreter? translates and executes instructions at every runtime translates high-level language program into separate machine language program once programs that control and manage basic operations of a computer where a computer stores data used by a program python

Answers

During RUN Time, the interpreter changes the source code line by line. A program written in a high-level language is completely translated into machine code using interpret.

While a program is running, evaluation and change are permitted by an interpreter. Instruction by instruction, an interpreter converts code into machine code; the CPU executes each instruction before the interpreter continues on to the next instruction. When a problem arises, interpreted code will immediately display an error, making debugging it simpler than with compiled code. An interpreted language is one in which instructions are executed by implementations without first being translated into machine code. Computed programs execute more quickly than interpreted ones. The compiled program runs faster than the interpreted program.

Learn more about instructions here-

https://brainly.com/question/15708427

#SPJ4

erica is participating in a road race. the first part of the race is on a 5.2-mile-long straight road oriented at an angle of 25∘ north of east. the road then turns due north for another 2.0 mi to the finish line.

Answers

Answer:

Explanation:

ee

1. what will be the value in edx after each of the lines marked (a) and (b) execute? .data one word 8002h two word 4321h .code mov edx,21348041h movsx edx,one ; (a) movsx edx,two ; (b)

Answers

a = FFFF8002h

b = 00004321h

The words or bytes contained in the register or effective address are read by movsx. The 16- or 32-bit value is subsequently sign-extended to the operand-size attribute of the instruction via movsx. Movesx stores the outcome in the final register.

A few restrictions apply to the MOV instruction: Directly moving an immediate value into a segment register (moving ds,10) is not possible. Directly copying a segment register is also not possible (i.e. mov es,ds) It is impossible to copy one memory region into another memory location (i.e. mov aNumber,aDigit)

A mnemonic for copying data from one place to another in the x86 assembly language is MOV (x86 instruction).

Learn more about mov :

https://brainly.in/question/77918

#SPJ4

after a program (running as normal user) disables a capability a, it is compromised by a buffer-overflow attack. the attacker successfully injects his malicious code into this program’s stack space and starts to run it. can this attacker us

Answers

Malware attacks, password attacks, phishing attacks, and SQL injection attacks are the various kinds of cyber-attacks.

Software threats are harmful programs and pieces of code that can harm our computer and steal your personal or financial data. Because of this, these harmful programs are frequently referred to as malware (short for "malicious software"). Active and passive attacks on networks are the two main categories. In passive network assaults, malevolent parties watch and steal sensitive data from networks without making any changes. Data modification, encryption, or damage are all aspects of active network attacks. An application attack involves online criminals entering restricted locations. Attackers frequently look at the application layer first, looking for application vulnerabilities included inside the code.

Learn more about attack here-

https://brainly.com/question/28232298

#SPJ4

the memory architecture of a machine x has the following characteristics: virtual address 54 bits; page size 16 k bytes; pte size 4 bytes. assume that there are 8 bits reserved for the operating system functions (protection, replacement, valid, modified, and hit/miss- all overhead bits) other than required by the hardware translation algorithm. derive the largest physical memory size (in bytes) allowed by this pte format. make sure you consider all the fields required by the translation algorithm

Answers

The memory address space is 128 MB, so 227. However, each word is 8 (23) bytes, so there are 224 words. This means that log2 224 or 24 bits are required to address each word.

Therefore, each entry is at least 44 bits long (6 bytes if byte aligned, 8 bytes if word aligned). So each top-level page table is 256 * 6 = 1536 bytes (256 * 8 = 2048 bytes). Pages are typically between 512 and 8192 bytes, with 4096 being a common value. Page sizes are almost always powers of 2 for reasons explained below. The loadable module is also divided into several side frames. A page frame is always the same size as the page in memory.

A 128 x 8 RAM chip can be written as 27 x 8. Each RAM chip requires a 7-bit address.

Learn more about address here-

https://brainly.com/question/20012945

#SPJ4

ou want to generate ssh keys for your user account and copy them to a remote computer to simplify future ssh authentication. what two commands can you use to perform these actions? (choose two answers.)

Answers

The two commands can you use to perform these actions are ssh-copy-id, ssh-keygen.

What is command?

A command in computing is a request to a computer programme to complete a specified task. It can be issued using a command-line interface, such as a shell, as input to a network service as part of a network protocol, or as an event in a graphical user interface triggered by the user picking an item from a menu. The term command is used specifically in imperative computer languages. The name comes from the fact that sentences in these languages are typically written in an imperative mood, which is common in many natural languages. If one considers a statement in an imperative language to be similar to a sentence in a natural language, a command is similar to a verb in such a language.

To learn more about command

https://brainly.com/question/26278263

#SPJ4

6. (01.02 LC)
The programming language C: uses a series of 1s and Os to communicate with the computer. (5 points)
O True
False

Answers

Answer:

False

Explanation:

suppose you have the following 2 bytes: 01011100 and 01100101. the sum of the two given bytes is 11000001 does the sum generate a carryout most significant bit? (yes/no) yes what is the sum after carryout bit is added to the least significant bit?

Answers

No, the sum does not generate a carryout most significant bit. The two bytes are added to yield 11000001. The result of adding one to the ones is 00111110.

The smallest piece of data that a computer can process and store is a bit (binary digit). Similar to an on/off light switch, a bit is always in one of two physical states. Usually a 0 or 1, the state is represented by a single binary integer. However, yes/no, on/off, or true/false can also be used to describe the state. Capacitors are used to store bits in memory because they can store electrical charges. Each bit's state, which in turn determines its value, is determined by the charge.

The majority of systems process and store data in bytes, even if a computer may be able to evaluate and alter data at the bit level. A byte is an eight-bit string that is regarded as a single entity. Bytes are always used to refer to a computer's memory and storage. For instance, a storage device may be able to hold 1 terabyte (TB), or 100,000 megabytes, of data (MB). 1 MB is equivalent to 1 million bytes, or 8 million bits, to put things into perspective. In other words, a 1 TB drive has an 8 trillion bit capacity.

To know more about bit click on the link:

https://brainly.com/question/2545808

#SPJ4

which event occurs in the long run? group of answer choices a restaurant hires another server. a new movie theater is built. an aircraft manufacturer adds another shift. a grocery store expands its hours of operation.

Answers

The movie theater is built event occurs in the long run because a new competitor enters the market.

A time frame when all cost and production parameters are movable is referred to as the long run.

What happens over the long run?

A time frame when all cost and production parameters are movable is referred to as the long run. Over time, a company will look for the manufacturing technique that enables it to deliver the desired amount of output at the most affordable price.

An economy's capacity to produce more goods and services over time is referred to as long-term growth. A nation's GDP is closely related to population growth in addition to price and supply and demand. (Must Read: Micro and Macro Economics' Differences) Take note: Growth in the Long Run

To learn more long run refer to:

https://brainly.com/question/13029724

#SPJ4

the owner of a company asks a network manager to recommend a mobile device deployment model for implementation across the company. the owner states security is the number one priority. which deployment model should the network manager recommend for implementation?

Answers

The network manager should suggest using the BYOD deployment paradigm.

What is a NetworkManager's function?

Network managers supervise the network administrator in their organisation and provide support for all network subsystems and networks. Switching, router, as well as the addition of new servers are all part of the network infrastructure they design, deploy, and manage.

What location is the NetworkManager in?

The simplest method for determining the edition of NetworkManager that is currently installed would be to launch NetworkManager directly. Using nmcli, a NetworkManager front-end that runs from the command prompt, is an additional shortcut. The version of nmcli and NetworkManager are compatible because nmcli is a component of the network-manager package.

To know more about Network manager visit:

https://brainly.com/question/5860806

#SPJ4

If a program needs to make a decision based on specific circumstances, the program code needs to contain

a
a loop

b
an "if" statement

c
debugging

d
logical reasoning

Answers

Answer: b

Explanation:

Why is it best to save images in the native (raw) format while editing them?

Question 9 options:

A) It's less expensive.


B) It takes less memory.


C) It's faster to re-open the image.


D) The layers are kept distinct.

Answers

Answer:

b is correct

Explanation:

heuristics do not always yield an optimal schedule, but they are very capable of yielding aschedule for very complex networks with many types of resources.

Answers

Heuristics do not always provide an optimal schedule, but they are very capable of providing a good schedule for the sort of very complex networks with several types of resources.

The heuristics are rules of thumb used to make scheduling decisions about critical activities/tasks and the shortest duration activities/tasks so that the complex projects can be completed efficiently within the shortest possible time period.

Unfortunately, it is still a problem to find the optimal solution to schedule activities in many large and complex projects even with heuristics. It is because heuristics do not always provide optimal scheduling of tasks. But also it cannot be denied that heuristics yield possibly good schedules for the range of complex network problems.

To schedule the tasks of complex problems, heuristics are developed to obtain an optimal or near optimal schedules with minimum computational time and resources.

Complete question is:

“heuristics do not always yield an optimal schedule, but they are very capable of yielding a __________ schedule for very complex networks with many types of resources.”

You can learn more about heuristics at

https://brainly.com/question/9008084

#SPJ4

Other Questions
10. One contestant on a game show has1,500 points and another contestant has-250 points. What is the differencebetween the scores of the contestants? Why would a protruding branch block the view from your window Mass of empty Erlenmeyer Flask (g) 30.46 g Mass of flask 100 ml 10% vinegar (g) 85.56 g Mass of flask 100 ml NaOH (g) 90.23 g Mass of flask after mixing the NaOH with 10% vinegar (g) 175.79 g Mass of the flask after the reaction (g) 145.33 g Temperature of the solution before it is mixed 21.9oC Temperature of the solution after it is mixed 23.1oC 1. Find the combined mass of the two reactions that have taken place. 2. Calculate the combined mass of the contents of the flasks after the reaction has taken place. 3. Finally, calculate the percent deviation within the lab. If the percent deviation was not 0%, what do you think might have happened in the lab that caused it to not be zero? (hint: remember, matter cannot be destroyed). You work as a cosmetologist at an incredibly popular salon in your area. You have two new clients coming in today that you will need to complete hair and scalp analyses on prior to performing any services. For the first client, you decide to go ahead and perform the hair color service that has been requested; you advise the second client to seek treatment from a medical professional before receiving any salon services. Based on this, what have you likely observed during each new clients hair and scalp analysis? Describe what you would have needed to see during the hair and scalp analyses in order to proceed as you did with each client. Student a reasoned that the thunder was produced after lightening had struck. student b disagreed. what reasoning would student b claim if they state were actually made at the same time? Why were the Articles of Confederation weak?O They did not give the central government enough power to act.O They did not give the states enough power to protect the people. They gave the people the power to elect three branches ofgovernment.They allowed only the central government to collect taxes. how do i do this question Simplify these thing below please. I am stuck again... Thank you The functions f(x) and g(x) are shown on the graph.f(x) = |x|What is g(x)?10f(x) = x-5107-5-10g(x) = ?~XAXK Which type of reaction has only one product?CombinationDecompositionSingle ReplacementO Double ReplacementO Combustion3Clear selecti Please help!! I did it once and got an F on it so I need it redone!! Needs to be very in detail and multiple paragraphs with works cited! Ah please help! I cant fail! Below Ive posted the comment he left on my response so maybe that will help ? Just help meeeAnalyze how British colonial policy led to the unity of the 13 colonies and eventually their Declaration of Independence.Give specific examples and evidence in your answer.(Examples of British colonial policy would be like the Stamp Act or try to control the colonists through theRevolutionary War) How does Ishmael beah address accountability in a long way gone? why is that cell structure and function are related because If f(x)=rootx-3 and g(x)=1-x^2, then what do you notice about the domaine of (fg)(x) Which type of transformation is described by (x,y)(x,y) (x-4, y+8)? 2,2-dimethylbutane condensed structural formula Express Your Answer As A Polynomial In Standard Form. f(x)= x-7 g(x)= 3x^2-7x-10 Find (f o g)(x) Look at photo the graph of F(x) = |x| is shown below. if you horizontally shift this function right 7 units, what is the equation of the new function? natalie loves her work at the shoe production facility. she is inspired by the company because, for every pair of shoes someone buys, the company gives a pair of shoes to a child in need. what type of leadership is this company providing that empowers natalie? For each word in each word pair, provide 1) the part of speech (noun, verb, etc.) (some words may be contractions) 2) a pronunciation key and definition of the word 3) a sentence of your own that uses the word correctly1. advice/advise2. affect/effect3. conscious/conscience4. its/its5. lie (meaning to recline, NOT to tell a falsehood)/lay6. lose/loose7. than/then8. their/there/theyre9. to/too10. whose/whos