Which similar computer network components connect multiple devices?
A and are similar computer network components that connect multiple devices in a computer network. Please helppp

Answers

Answer 1

Answer: A network switch and/or a network hub its one of those two im not quite sure though

Explanation:


Related Questions

True or false: Sports teams are superior to other forms of entertainment, and do. Do not directly compete with others such as video games and movie theaters

Answers

Because concessions have grown to comprise a significant portion of professional sports teams' overall profits, they have been steadily rising prices in a monopolistic environment, which is why the cost of food and drink in sports stadiums is so high.

Do you mean food by concession?

Some gatherings or locations enter into agreements with third parties to sell food. These agreements are frequently referred to as concessions, which is also the term for a food stand.

What makes food a concession?

A ballpark or other venue's concessions are known as such because the venue has given a certain vendor permission to serve food there. Think about that the next time you're eating peanuts at a sporting event.

To know more about profits visit:-

https://brainly.com/question/15044847

#SPJ4

In object-oriented analysis, objects possess characteristics called 1. properties 2. orientations 3. classes 4. inheritances

Answers

In object-oriented design, objects possess characteristics called properties, which the object inherits from its class or possesses on its own.

What is object-oriented analysis?

This refers to the term that is used to describe and define the use of object-oriented programming and visual modeling to direct stakeholder communication and product quality during the software development process.

Object-oriented analysis and design is a technological approach for assessing and creating an application, system, or company and hence, they possess properties.

Read more about object-oriented analysis here:

https://brainly.com/question/15016172

#SPJ1

What type of methodology works well to ensure that all agents are given and hear the same information

Answers

In order to develop a strategy that is in line with your aims, involves understanding the theories and ideas that support the practices used in your business.

What are the five different methodologies?

Five basic qualitative approach types—ethnography, story, phenomenology, grounded theory, and case study—are distinguished by a common and useful taxonomy.

Which method is most important?

Every study discipline needs a strong technique because a shaky approach will lead to shaky outcomes, which will reduce the value of your examination of the outcomes. Typically, there are many different ways you can investigate into a study topic.

To know more about methodology visit:-

brainly.com/question/29220500

#SPJ4

Which of the following is a likely primary key in a student information record? A) Last name
B) Date of birth
C) Student ID number
D) First name

Answers

Option C) Student ID number is the correct response. Each student has an ID number that is used for specific identification within a facility. As a result, this is recognized as the main key.

What is the fundamental or primary key?

The primary key refers to the column(s) that each row in a table uses to uniquely identify itself. A primary key must exist in a database table for Optim to be able to insert, update, restore, or delete data from that table. Optim makes advantage of the primary keys configured for the database.

Which key is NULL?

When a key is "null," not all records are included in the index and are therefore not accessible through that key. This essentially means that when utilizing SeekBy techniques, records are automatically limited. This code doesn't seem to limit or filter anything.

To learn more about primary key visit:

brainly.com/question/10167757

#SPJ1

The data _____ component of a database management system (DBMS) is used to add, delete, modify, and retrieve records from a database

Answers

The data manipulation component of a database management system is used to add, retrieve, delete, and modify records from a database.

Database Management Systems (DBMS) are referred as to software systems that store, retrieve, and execute data queries. A database management system acts as a bridge between an end-user and a database, allowing users to create, edit, read, and remove data in the database. The data manipulation is the underlying component that a database management system uses to add, retrieve, delete, and modify records from a database.

You can learn more about database management system at

https://brainly.com/question/24027204

#SPJ4

A counterfeit currency printer is operating in country XYZ, and all of the banks must try to identify the bad currency. Every note has a serial number that can be used to determine whether it is valid. The serial number also can be used to determine the denomination of the notes. A valid serial number will have the following characteristics:


1. There are 10 to 12 characters

2. The first 3 characters are distinct uppercase English letters

3. The next 4 characters represent the year the note was printed and will always be between 1900 and 2019 inclusive.

4. The next characters represent the currency denomination and may be any one of (10. 20, 50, 100, 200, 500, 1000)

5. The last character is an uppercase English letter.


Determine the value of the valid currency

Answers

The value of the valid currency can be determined by looking at the last 4 characters of the serial number. If the characters represent the currency denomination and may be one of (10, 20, 50, 100, 200, 500, 1000) then the last 4 characters will indicate the denomination of the note.

The key point in determining the denomination of a note is the next characters after the year of the note, which represent the denomination, they may be one of (10, 20, 50, 100, 200, 500, 1000). Based on this information, the denomination of a note can be determined by looking at the last 4 characters of the serial number, if this characters match one of the denomination options then the note is a valid note and the denomination can be determined.

Learn more about value, here https://brainly.com/question/10416781

#SPJ4

WILL GIVE BRAINLIEST!!!

assume numpy array is an integer array and has already been filled with values. fill in the blanks to write a for loop that computes and output the sum of all the elements inside numpy array. when you fill in the blanks, do not put extra empty spaces anywhere is=ndei the code i.e for line x = y+3, dont write as x= y +3

Answers

Answer:

import numpy as np

# import the numpy library

arr = np.array([...])

# create a numpy array with some elements

sum = 0

# initialize a variable to store the sum of elements

for element in arr:

   sum += element

   # iterate over each element in the array and add it to the sum variable

print(sum)

# output the final sum of all elements in the array

LAB: User-Defined Functions: Step counter A pedometer treats walking 2,000 steps as walking 1 mile. Define a function named Steps To Miles that takes an integer as a parameter, representing the number of steps, and returns a float that represents the number of miles walked. Then, write a main program that reads the number of steps as an input, calls function Steps ToMiles with the input as an argument, and outputs the miles walked, Output the result with four digits after the decimal point, which can be achieved as follows: Put result to output with 4 decimal places If the input of the program is: 5345 the function returns and the output of the program is: 2.6725 Your program should define and call a function: Function Steps ToMiles(integer userSteps) returns float numMiles 361108 2293206.qx3zay LAB ACTIVITY 5.9.1: LAB: User-Defined Functions: Step counter 0/10 1 Variables Not shown when editing Input Output Code Flowchart ENTER EXECUTION STEP RUN Execution speed Medium Submit for grading Signature of your work What is this?

Answers

The function StepsToMiles(userSteps) takes an integer as a parameter, representing the number of steps and returns a float that represents the number of miles walked by converting the steps into miles by dividing it by 2000.

What is the significance of the function StepsToMiles?

The function StepsToMiles is used to convert the number of steps taken by a person into miles by dividing the number of steps taken by 2000. It is useful for tracking the distance covered by a person during walking or jogging. It takes an integer as a parameter, representing the number of steps and returns a float that represents the number of miles walked.

What is the role of main program in the given scenario?

The main program is responsible for reading the number of steps as an input, calling the function StepsToMiles with the input as an argument, and outputting the miles walked. It takes input from the user, passes the input to the function StepsToMiles and receives the output in the form of miles walked. It then displays the output with four decimal places. The main program is responsible for driving the entire process by calling the function StepsToMiles and displaying the result to the user.

To know more about StepsToMiles(userSteps) Visit:

brainly.com/question/19263323

#SPJ4

Write a procedure ConvertToBinary that takes an input as a number from 0 to 16 (including 0 but not 16) and converts it to a binary number. The binary number should be returned as a list.

Answers

Answer:function ConvertToBinary(n) {

console.log(n.toString(2).split(''));

}

ConvertToBinary(13);

Explanation:

Some of your technically proficient users have modified their company-issued Android smartphone to provide full device access in order to install apps requiring this permission. Which term best describes this scenario

Answers

Answer:

NIPS HIDS HIPS

Explanation:

A is not specific to a host but instead analyzes network traffic from many sources to detect potentially malicious activity

What type of attack involves the attacker sending too much data to a service or application that typically results in the attacker gaining administrative access to the system

Answers

An program that receives excessive amounts of data from a hacker, forcing the data to be stored outside of the buffer area, is subject to a buffer overflow attack.

Which kind of attack includes the attacker adding a client-side script to the website?

Malicious scripts are injected into websites that are normally safe and reputable in Cross-Site Scripting (XSS) attacks. XSS attacks take place when an online application is used by an attacker to deliver malicious code, typically in the form of a browser side script, to a separate end user.

What are the four different attack types?

Cyberattacks can take many different forms, including phishing, SQL injection, malware, and password attacks.

To know more about buffer overflow attack visit :-

https://brainly.com/question/28232298

#SPJ4

under what circumstances would a multi-domain structure not be an ideal choice?

Answers

A multi-domain structure would not be the best option in PDC emulator master. conditions.

Can a forest contain many domains?

Multiple domain trees may exist in a forest. When a new tree is created in a forest, its root is a child domain of the original root domain.

What is a domain and how can members of the domain's machines and users benefit from it?

Network resources including computers, servers, and user accounts that allow for centralized management are grouped together as domains. It is possible to control which resources, including shared folders and printers, users and computers within a domain can access.

To know more about multi-domain structure visit :-

https://brainly.com/question/1133820

#SPJ4

Select the correct answer. crystal detected a problem in a computer network, due to which she could not send or receive data within the network. she pings computers from the administrator computer. which problem is she trying to detect?
a. incorrect password
b. same ip address of two computers
c. faulty network interface card (nic)
d. erroneous changes in the configuration settings

Answers

Faulty network interface card (nic). A network interface card (NIC) is a piece of hardware required for network connectivity on a computer.

What is network interface card ?A computer's connection to a computer network is made possible by a network interface controller, a piece of hardware. Expansion cards that hooked into a computer bus were frequently used to create early network interface controllers.A dedicated, permanent connection to a network is provided by a NIC for a computer. It puts into practise the physical layer hardware required for interacting with a data link layer standard, like Ethernet or Wi-Fi. Each card serves as a device and has the ability to prepare, transmit, and manage data flow on the network.An unstable network connection should be one of the first signs that NIC problems are about to start. You probably have a NIC problem if you find that your connection constantly dropping out for lengths of time that can range from a few seconds to hours.

To learn more about NIC refer :

https://brainly.com/question/20689912

#SPJ4

During which stage of sleep does the body experience increased heart rate, rapid breathing, and genital arousal?
a. NREM-2
b. NREM-3
c. NREM-1
d. REM sleep

Answers

Your heart rate, breathing rate, and blood pressure all rise during REM sleep as your eyes move quickly under your eyelids.

What is the case with REM sleep?

Sleep is not as deep when you enter REM sleep because brain activity picks back up. Similar to when you are awake, there is a lot of activity. Because of this, REM sleep is when you'll have vivid dreams. Major muscles that you usually control are used simultaneously.

Which wave does Stage 1 sleep have as a characteristic?

Stage 1 sleep is connected to both alpha and theta waves in terms of brain wave activity. Alpha waves are coordinated patterns of electrical activity (waves) that are relatively low frequency (8–13Hz) and high amplitude during the early stages of stage 1 sleep.

To know more about REM sleep visit :-

https://brainly.com/question/14664351

#SPJ4

In Hyper-V, an _____ virtual switch, allows the host to communicate with the virtual machines connected to the switch.

Answers

Virtual machines (VMs) may connect online with one another, the host operating system, and external networks thanks to Hyper-V virtual switches.

What does Hyper-virtual V's switch mean?

When you install the Hyper-V server role, Hyper-V Manager makes the software-based layer-2 Ethernet network switch known as Hyper-V Virtual Switch available.

How can virtual COM ports on a Hyper-V host computer connect with one another?

Using the Serial over Ethernet Connector method (in Windows or Linux) is one of the simplest ways to connect a COM port in a virtual machine. With the help of the program Serial to Ethernet Connector, you can access COM in VirtualBox, Hyper-V, and VMware environments.

To know more about Virtual machines visit:-

https://brainly.com/question/29535108

#SPJ4

Constructing strings
Construct a string alphaString from 'a' to endLetter, using the double colon operator.
Ex: If endLetter is 'e', then alphaString is 'abcde'
function alphaString = CreateString(endLetter)
% endLetter: Ending letter of string
% Construct a string alphaString from 'a' to endLetter, using
% the double colon operator
alphaString = 'fixme';
end

Answers

A three-part inclining wall structural surface feature constructed of reinforced concrete. It serves to sustain the stairway's elements. The base of the string refers to the lower portion.

What is the purpose of string in construction?

A string is used in masonry to create a level or straight line. It serves as a reliable guide while constructing a wall. Determine the fixed points that need to be linked before using a string.

What exactly does "string processing" mean?

As a result of the computer's ignorance of words or concepts and treatment of text as strings of letters, working with text in computer programs is referred to as "string processing." Anything constituted by strings.

To know more about structural surface visit:

https://brainly.com/question/29834264

#SPJ4

You have configured a wireless access point to create a small network. For security, you have disabled SSID broadcast. From a client computer, you try to browse to find the access point. You see some other wireless networks in the area, but cannot see your network. What should you do

Answers

Create a profile on the wireless client and try to browse from a client computer to the access point. You notice a few additional wireless networks.

How do you set up a wireless access point so that a wireless client can connect to it?

You can use a serial cable to connect a laptop or PC to the wireless access point's console port in order to configure the access point for your client. You can see access point setup panels using terminal software and modify particular settings, including radio channel and transmit power.

Which of the above items can be turned off to assist block access to a wireless network?

Utilizing MAC address filtering, turning down DHCP, and deactivating SSID broadcast all aid in limiting illegal access to wireless networks.

To know more about SSID broadcast visit:-

https://brainly.com/question/13191413

#SPJ4

You are working on a computer with a fully qualified domain name of srvr6.Courier.net. What is this computer's DNS Suffix

Answers

If you are working on a computer that has the fully qualified domain name srvr6.Courier.net, then Courier.net is the machine's DNS suffix.

A DNS suffix: what is it?

When a fully qualified domain name (FQDN), suitable for a DNS name query, is attached to an unqualified host name, such as "contoso.com," the DNS suffix indicates the domain name.

How should a fully qualified domain name be used?

An internet host or computer's full domain name is known as a fully qualified domain name (FQDN). The hostname and domain name make up the first two characters of the FQDN. For illustration, a possible mail server's FQDN would be mymail.somecollege.edu.

To know more about DNS suffix visit :-

https://brainly.com/question/15701860

#SPJ4

A loop that will output only the names that come before "Thor" in the alphabet from the names list.


names = ["Peter", "Bruce", "Steve", "Tony", "Natasha", "Clint", "Wanda", "Hope", "Danny", "Carol"]



Please answer with code for someone who is starting to learn lists in python

Answers

The following is a loop that will only output from the names list names that are in alphabetical order before "Thor":

names = ["Peter", "Bruce", "Steve", "Tony", "Natasha", "Clint", "Wanda", "Hope", "Danny", "Carol"]

names.sort()

for x in names:

 if x == "Thor":

     break

 else:

     print(x)

How do loops work?

In computer programming languages, a loop is a sequence of instructions that constantly repeats itself up until a predetermined condition is met.

The difference between decorative and extended program loops is the time it takes to calculate how many times the loop iterates before the loop actually executes.

A loop is referred to as a pretest if the specified condition is tested before the block of code that makes up the loop is executed. The loop is to be continued until the provided condition becomes false.

To learn more about the loop, refer to the link:

brainly.com/question/25955539

#SPJ4

Describe the ideal location to conduct troubleshooting.

Answers

The ideal location to conduct troubleshooting is to make sure to note that you have not determined the underlying cause and that the repair is just temporary.

What is troubleshooting?

Finding the source of a problem and determining the best course of action to restore it to operation are both steps in the troubleshooting process.

To effectively troubleshoot a problem, the root cause must be found and thoroughly reported in order to prevent the recurrence of the issue.

Therefore, making sure to mention that you have not found the underlying cause and that the repair is only temporary is the optimal place to conduct troubleshooting.

To learn more about troubleshooting, refer to the link:

https://brainly.com/question/30048504

#SPJ1

What should the Force New Page property be set to in order to create page breaks? Check all that apply.
False
Yes
Before Section
Within Section
After Section

Answers

To create page breaks, set the Force New Page attribute to Within Section.

How may a page break in access be forced?

1. Select Design view to view the report.

2.Click Insert Page Break under the Controls group on the Design tab.

3. Click the spot where the page break control should be placed. A thin line on the left border of the report from Access denotes the page break.

In AutoCAD, how do you add a break to a table?

To activate table breaks, select the table and use the Properties palette's Table Breaks section. The generated subsidiary tables can be positioned above, below, or to the right of the main table. Additionally, you can select the table's maximum height and spacing.

To learn more about page breaks visit:

brainly.com/question/6886781

#SPJ1

What happens if you run a delete command that does not contain a where clause?

Answers

All rows in the table will be destroyed if you issue a delete command without a where clause.

What happens if you execute a DELETE command without a WHERE clause?

REMOVE Syntax Which record needs to be erased is indicated by the WHERE clause. The entire table's records will be removed if the WHERE clause is left off.

If you type DELETE, what will happen?

We don't need to be concerned about retrieving any data from the table after executing the delete command, and we don't need to be concerned about manipulating any data we receive back from the table. We only instruct the database to remove a certain record, and it either does so or it doesn't. That much is obvious.

To know more about delete command visit :-

https://brainly.com/question/8305259

#SPJ4

explain plat data model​

Answers

Data models are a set of guidelines and/or constructs that are employed in computers to define and represent elements of the real world. There are two main data models.

Describe data models using an example.

There are two distinct but related notions that might be referred to as data models. It can also refer to an abstract formalization of the entities and connections present in a certain application domain, such as the clients, goods, and orders in a manufacturing company.

By data model, what do you mean?

Data models for an organization visually represent data elements and their interactions. Models help define and structure data within the context of relevant business activities, which aids in the development of effective information systems.

To know more about data model​ visit:-

https://brainly.com/question/29651109

#SPJ1

What is the name of the process which permits a continous tone image to be printed simultaneously with text

Answers

The Halftone process is the name of the process which permits a continous tone image to be printed simultaneously with text.

An image in halftones is what?

Halftones are used most frequently to print photographs, paintings, or other comparable pictorial works that are reprinted in books, periodicals, and newspapers. In a halftone, the picture's continuous tones are divided into a sequence of evenly spaced, varying-sized dots and printed using just one ink colour.

In image processing, what is halftoning?

By changing the size of teeny black dots placed in a regular pattern, halftoning, also known as analogue halftoning, simulates different shades of grey. Printing companies and the publishing business both employ this method.

To know more about Halftone visit

brainly.com/question/10678312

#SPJ4

The main reason to use secondary storage is to hold data for long periods of time, even when the power supply to the computer is turned off.
True
False

Answers

Answer:

Explanation:

True. The main reason to use secondary storage is to hold data for long periods of time, even when the power supply to the computer is turned off. Secondary storage devices, such as hard drives and solid state drives, are used to store data that is not currently being used by the computer but needs to be kept for future use. These devices retain data even when the computer is powered off, unlike primary storage devices such as RAM which lose their data when the power is turned off.

Secondary storage is also used for archiving older files and data that are not needed on a regular basis. They also provide a larger storage capacity than primary storage devices, which allows users to store more data or larger files. With the availability of large external storage devices, like hard drives or USB drives, it's possible to take the secondary storage outside of the computer, making it easy to backup or share data.

splunk Which scheduled report setting allows you to define a time range for a report to run if it is delayed: (A) Schedule Time Range
(B) Schedule Window
(C) Report Window
(D) Report Time Range

Answers

We may choose when our report should run by using the Schedule Window options.

Which alert setting gives you the ability to choose how many alerts are fired when a trigger condition is met?

As the escalation level increases, you can customize the alert to take various actions. Escalation Level 1 includes all initial steps you want to do when the alert is activated and the trigger criteria are met.

What Splunk edit option enables the display of a report to users outside your company?

In external (non-Splunk) websites, dashboards, and portals, you can embed scheduled reports using report embedding. Results from embedded reports can be shown as event views, tables, charts, maps, single values, or any other style of visualization.

To know more about Schedule Window visit :-

https://brainly.com/question/29892252

#SPJ4

E-commerce refers to the use of any networking technologies to transact business
True
False

Answers

E-commerce does not necessarily refer to using networking technologies to do business, which is a false statement.

Which statement best describes e-commerce?

E-commerce is described as the exchange of money and data to complete sales while purchasing or selling products or services online. It is often referred to as online commerce or electronic commerce.

An e-commerce easy response is what?

E-commerce refers to the exchange of products and services over the internet. On the information superhighway, your bustling city center or physical store is being transformed into zeros and ones. Ecommerce, usually referred to as electronic commerce or internet commerce, is the term for the online purchase and sale of products and services as well as the exchange of financial instruments.

To know more about networking technologies visit:-

https://brainly.com/question/7499316

#SPJ4

Jack wants to insert a Win/Loss sparkline in Excel. To do this, he can click on the cell he wants to insert a Sparkline in, then click Apps tab, select Win/Loss Sparkline from the Sparklines group and then click OK. (T/F)

Answers

In Excel, Jack wishes to add a Win/Loss sparkline. He may accomplish this by clicking in the cell where he wants to place the Sparkline, selecting the Apps tab, and then selecting the Given statement is True.

Where is the Sparklines group in Excel?

Simply click Sparklines on the Insert tab to choose the correct sparkline type. Due to your decision in step 1, you will notice that the first field in the Insert Sparklines dialog box is already populated.

The Sparklines crew where are they?

Follow these instructions to make a sparkline in Excel: Wherever you wish to add a sparkline, usually at the end of a row of data, choose a blank cell. the Sparklines group on the Insert tab.

To know more about sparkline group visit:

https://brainly.com/question/29832130

#SPJ4

What is the term used to describe image file that contains multiple small graphics?
a. thumbnail image
b. sprite
c. image link
d. viewport

Answers

The term "sprite" refers to an image file that contains numerous little graphics.

What is the term for the amount of detail that an image can store?

An image's resolution determines how much detail it has. Digital images, film images, and other sorts of images all fall under this umbrella phrase. Image detail is increased with "higher resolution." There are numerous ways to gauge image resolution.

Is Graphic an element in HTML5?

With HTML5, we no longer need to rely on pictures or external components like Flash to create visuals. There are two different categories of graphic elements: Canvas. Vector images that can be scaled (SVG). The relative-position attribute is used to position things. absolute. The "left", "right", "top", and "bottom" parameters are used to specify the area's position (and conceivably its size).

To know more about sprite visit:-

https://brainly.com/question/29386251

#SPJ4

What type of processor memory is located on the processor chip (processor die)?
O Level 1 chace (L1 chace)
O Level 2 chace (L2 chace)
O Level 3 chace (L3 chace)
O Level 4 chace (L4 chace)

Answers

Level 1 cache (L1 cache) is the name of the type of processor memory that is present on the processor die (processor die).

Which kind of cache does the CPU die have?

Although L2 cache is substantially bigger than L1, it is also slower. On top-tier CPUs, they range from 4 to 8 MB (512KB per core). The L1 and L2 caches are private to each core, whereas the L3 cache is shared by all the cores on a die.

Which kind of memory does the processor use?

The major internal memory of the central processor unit is random access memory (RAM) (CPU). Your electrical device uses it to store temporary data.

To know more about processor memory visit:-

https://brainly.com/question/29772194

#SPJ4

Other Questions
Sigmund Freud developed a form of therapy known as _____________, which assumes that the unconscious mind is the most powerful force behind thought and behavior. According to Dyson, what distinguishes cyberspace from physical space? Thomas family also runs a gourmet food store that sells two main products: Premium Caviar and Goose Foie Gras. They import the Premium Caviar from Russia, and purchase Goose Foie Gras from Upstate New York. The two products are sold in boxes. Thomas gathers the following information: When Thomas took accounting courses at college, he knows how to do cost-volume-profit analysis pretty well. However, he just remembers how to do the analysis for those companies with only one product. Therefore, he needs your help to calculate the following:a. What is the business weighted-average contribution margin per unit? (show your computation)b. Calculate the business break-even point in units assuming the current sales mix. (show your computation)c. What will be the number of Premium Caviar and Goose Foie Gras boxes at the break-even level of sales? (show your computation)d. What is the business weighted average contribution margin ratio? (show your computation)I have it completed... just need to check my work. I would appreciate a response as soon as possible. Which of the following does not increase a person's need for water?a) following a high-fiber dietb) following a low-sodium dietc) following a high-protein dietd) competing in a local 5K run What is the opposite reciprocal of 0/6 What is the name of the systematic approach that scientists use to understand the natural world?a lawthe scientific methoda hypothesisa theory Brainliest Compare and contrast fibrous, tap, and water root systems. Triangle ABC was rotated to form triangle A'B'C'. Triangle A'B'C' was reflected across the x-axis to form Triangle A"B"C".Which of the following statements correctly describes the relationship between Triangle ABC, Triangle A'B'C', and Triangle A"B"C"? Select all that apply.Group of answer choicesTriangle ABC has greater angle measurements than Triangle A"B"C".Triangle ABC is congruent to Triangle A"B"C".Triangle A'B'C' has greater angle measurements than Triangle A"B"C".Triangle ABC has greater side lengths than Triangle A"B"C".Triangle A'B'C' is congruent to Triangle A"B"C". the american marketing associan has established these to ensure that marketing firms do not return findings How does the change from the setting in the museum to the setting in the painting contribute to the plot? In 1848, Whitman traveled south to become an editor for the New Orleans Crescent.He stayed only a few months in the city, but in that time he was exposed to theugliness of _____.the human trafficking marketsthe French Quarterthe city's landscape.prostitution rings PLIS HELPThe total cost in dollars, y, that a t-shirt company charges can be modeled by the toes per day by the equation y = 5x + 62, where x represents the number of t-shirts sold. If they sell 74 shirts, what will the total cost be? The statement "atoms have a small, dense nucleus" is true. What evidence do scientists use to prove this statement as true?Most alpha particles shot at gold foil go straight through, without any changes in their direction.The particles ejected in Thomson's experiment bent away from the negatively charged plates, but toward positively charged plates.A few alpha particles shot at gold foil bounce in the opposite directionNo matter which element Thomson put in a cathode ray tube, the smae negative particles wit the same properties (such as charge and mass) were ejectected. Networking is an example of this section of the marketing plan.O marketing strategyO marketing tacticO competitive analysisO market analysis The entrance of The U.S made the war a __________ ______________. What are fixed variable and discretionary expenses? What is log and example? What is a midpoint for zero? I need serious help !! Which neurologic disorder is characterized by a protein detaching from neurons causing the cortical nerve cell processes that become twisted and dilated