Programs that are written to work with a particular operating system are often called ________ applications.

Answers

Answer 1

Programs that are written to work with a particular operating system are often called software applications.

What is software applications?
An application programme, often known as a software application or an app, is a type of computer programme that is used by end users and is created to perform a particular purpose other than one associated with the operation of the computer itself.  Some examples include word processing, media players, and accounting software. All applications are referred to collectively by the word "application software."System software, which has to do with how computers work, and utility software are the other two main categories of software ("utilities").

Applications can be created as private, open-source, or project-based software, and they can be published independently or combined with the machine and its operating system software.

Apps are typically referred to as being for mobile devices like phones.

To learn more about software applications
https://brainly.com/question/1538272
#SPJ4


Related Questions

the input redirection symbol, << asks the operating system to open a file and pass its contents to your program as standard input. group of answer choices true false

Answers

The Input Redirection symbol is >> asks the operating system to redirect a command’s input to come from the specified file instead of from the keyboard.

Which symbol is used for Input Redirection?

The output of the command is appended to the provided file name rather than overwriting any existing data when the notation > > filename is added to the end of a command. The append redirection operator is also referred to as the >> sign.

What do you mean by the operating system?

An operating system (OS) is the program that controls all other application programs in a computer after being installed into the system first by a boot program.

A text file can also be read by a program that can read input from the keyboard. The command line interface of most operating systems has a feature known as input redirection that allows for this.

Therefore, the Given statement is false.

To learn more about the Operating system from the given link

https://brainly.com/question/22811693

#SPJ4

which is true about the conditional of an if statement? group of answer choices it must always evaluate to a boolean result it should always evaluate to true it should always involve exact comparisons, when using floating-point numbers it should never involve integer comparisons

Answers

The condition in an if statement using relational operators will evaluate to a Boolean result.

What is Boolean result?
A logical assertion that can only be TRUE or FALSE is known as a Boolean expression. As long as both sides of the expression have the same fundamental data type, boolean expressions can compare data of any kind. Data can be tested to check if it is more than, less than, or equal to other data.

Boolean information, like the following, can make up a Boolean expression:

CONTEXT values (YES and NO, and their synonyms, ON and OFF, and TRUE and FALSE)

BOOLEAN formulae or variables

functions that produce BOOLEAN outcomes

Comparison operators calculate BOOLEAN values.
Assume, for instance, that the following Boolean expression appears in your code.
genuine GT 20000

Comparison and logical operators are displayed in Table 2-9, "Comparison and Logical Operators." Each operator has a priority that establishes the order in which it will be evaluated. Unless parentheses indicate a different evaluation order, operators with equal priorities are evaluated from left to right. When the truth value has been determined, the evaluation is stopped. For instance, because the first clause establishes if the entire statement is true, the TOTAL function is never used in the following expression.

To learn more Boolean result
https://brainly.com/question/28503655
#SPJ4

Multiple computers configured to be able to communicate and share information with each other form a ____________.

Answers

Multiple computers configured to be able to communicate and share information with each other form a network.

In the field of computers, a computer network can be described as a network that contains multiple computers connected to each other so that data or information can be shared among these computers.

Local-area networks, also referred to as LAN and wide-area networks also referred to as WAN are two major forms of forming a computer network.

However, certain communication protocols are set for computer networking in order to keep check of the privacy of data that a user doesn't want to share.

In computer networking, nodes and links are used for making connections among the computers.

To learn more about network, click here:

https://brainly.com/question/1167985

#SPJ4

Write a program that hardcodes N and then computes the average (the arithmetic mean) of N integers selected from [0,1000]. This program should run 10 times, and thus provide 10 results.

You should use an outer loop that runs the inner loop (the one which computer the mean) a total of 10 times, printing out the 10 results, one per line.

Answers

Answer:

Explanation:

Program ( PascalABC) and Result:

const N = 25;

 var Summ : integer;

     Num : integer;

     Sa : real;

 begin

   Num := 0;

   for var j := 1 to 10 do

   begin

      Summ := 0;

       for var i:= 1 to N do

           Summ := Summ + Random (1001);    

       Sa := Summ / N;

       Write (' Sa =  ', Sa);

       WriteLn;

    end;

 end.

With p = 1 000 000 the result is naturally close to the middle of the interval (0 - 1000), that is, the number 500

 

bob knows alice is a fool for ascii art, and so he creates the /shared data/bob/fun script. view and take a screenshot of this file's contents with an appropriate command (as bob). labtainers 3 3 as bob, can you modify that script so that when alice runs the script, bob will gain access to the content of the accounting.txt file?

Answers

The answer to this question is about the clear contradiction between access to the file and getting access to the information. Here Bob is unable to read the file  /shared_data/accounting.txt file. And he is very much attractive to know or see the content.

Coding is described as how we communicate with computers. Code explains to a computer what actions to take, and writing code is like creating a set of instructions. By learning to write code, you can request computers what to do or how to behave in a much faster way.

Coding can be described as a list of step-by-step instructions that get computers to do what you want them to do. Coding makes it possible for us to create computer software, games, apps, and websites.

You can learn more about Coding at https://brainly.com/question/1603398

#SPJ4

In cyberspace, bret attempts to steal consumers' credit card numbers stored in the networked computers of cinco corporation, a financial payments service provider. The quantity of data that can be stolen is limited by

Answers

The quantity of data that can be stolen is limited by the same physical limits that exist in the real world.

Quantitative data is defined as data that can be measured in numerical values. The two main kinds of quantitative data are discrete data and continuous data. Height in feet, age in years, and weight in pounds are examples of quantitative data. Qualitative data can be described as descriptive data that is not expressed numerically. Data quality means a measure of the condition of data based on factors such as accuracy, completeness, consistency, reliability and whether it's up to date.

You can learn more about the quantitative data at https://brainly.com/question/96076

#SPJ4

Which type of iot application enables automatic monitoring combined with remote control, trend analysis, and reporting by using individual devices that each gather a small amount of data?.

Answers

The type of IoT application that can be enabled automatically is control and react. React is used to create the development of IoT applications easy-to-use and smarter.

IoT applications run on IoT devices and are created to be specific to almost every industry and vertical, contain healthcare, industrial automation, smart homes and buildings, automotive, and wearable technology. Increasingly, IoT applications are using AI and machine learning to add intelligence to devices.

The Internet of Things (IoT) can be described as the network of physical objects—“things”—that are embedded with sensors, software, and other technologies for the purpose of connecting and exchanging data with other devices and systems over the internet.

You can learn more about IoT applications at https://brainly.com/question/27960929

#SPJ4

consider the sequence of numbers (1, 2, 2, 4, 8, 32, ...) such that each number in the sequence is the product of the two preceding numbers. what is the minimum number of bases cases required to specify this sequence with a recursive definition?

Answers

The minimum number of base cases required to specify this sequence with a recursive definition is 2.

In mathematics and computer science, a recursive definition, or inductive definition, is used to describe the elements in a set in terms of other elements in the set. Some examples of recursively-definable objects consist of factorials, natural numbers, Fibonacci numbers, and the Cantor ternary set. Recursion can be described as a technique used to solve computer problems by building a function that calls itself until your program achieves the desired result.

You can learn more about a recursive definition at https://brainly.com/question/17298888

#SPJ4

your users are young children

Answers

The program that solves the problem given is indicated below. This is solved using Python.

What is the program that solves the above-mentioned problem?

The code is given as follows:

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

while True:

  i = 0

  userChoice = input("Adding or Multiplying? (a/m) ")

  if userChoice == "a":

      while i < len(numA):

          answer = int(input("What is {} + {} ".format(numA[i],numB[i])))

          if answer == numA[i] + numB[i]:

              print("Correct!")

          else:

              print("That's incorrect. The right answer is {}".format(numA[i] + numB[i]))

          i += 1

  elif userChoice == "m":

      while i < len(numA):

          answer = int(input("What is {} * {} ".format(numA[i], numB[i])))

          if answer == numA[i] * numB[i]:

              print("Correct!")

          else:

              print("that's incorrect. The right answer is {}".format(numA[i] * numB[i]))

          i += 1

Learn more about Python:
https://brainly.com/question/25774782
#SPJ1

Full Question:

Your users are young children learning their arithmetic facts. The program will give them a choice of practicing adding or multiplying. You will use two lists of numbers. numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]. numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6].

If the user chooses adding, you will ask them to add the first number from each list. Tell them if they are right or wrong. If they are wrong, tell them the correct answer. Then ask them to add the second number in each list and so on. If the user chooses multiplying, then do similar steps but with multiplying.

Whichever operation the user chooses, they will answer 12 questions. Write your program and test it on a sibling, friend, or fellow student.

ou are implementing security at a local high school that is concerned with students accessing inappropriate material on the internet from the library's computers. the students use the computers to search the internet for research paper content. the school budget is limited. which content filtering option would you choose?

Answers

The school budget is limited - Restrict content based on content categories

What is budget?
A budget is a calculating plan, typically financial but not always, for a specific time frame, typically one year or one month. Predicted sales and revenue amounts, resource quantities (such as time, costs, and expenses), environmental impacts (such as greenhouse gas emissions), other impacts, assets, liabilities, and cash flows are all possible inclusions in a budget. Budgets are a quantitative way for businesses, governments, families, and other groups to articulate their strategic plans of action. In a budget, intended expenses are expressed together with suggestions for how to fund them. A budget can show a surplus of resources for later use or a deficit if expenses are greater than income or other resources.

To learn more about budget
https://brainly.com/question/8647699
#SPJ4

In a database, what term is used to describe a group of fields that are all associated with and accessed using single primary key?.

Answers

In a database, a group of fields that are all associated with and accessed using a single primary key is called a record.

What is database?
A database is a planned grouping of material that has been arranged and is often kept electronically inside a computer system. A database is frequently managed with a database management system (DBMS). The term "database system," which is frequently abbreviated to "database," refers to the combination of the data, the DBMS, and the applications which are connected to it.

To facilitate processing and data querying, the most popular types of databases currently in use typically model their data as rows and columns in a set of tables. The data may then be handled, updated, regulated, and structured with ease. For writing and querying data, most databases employ structured query language (SQL).

To learn more about database
https://brainly.com/question/518894
#SPJ4

to restore the avl property after inserting an element, we start at the insertion point and move towards root of that tree. is this statement true? selected answer: correcttrue answers: correcttrue false

Answers

It's interesting to note that only the path from such a point to the node or only those subtrees have an uneven height distribution after insertion.

What is insertion?
An insertion occurs when something is placed inside of something else, such as inserting a key into a lock or adding a statement to a conversation. You've probably noticed that the word insert, which means "put in," is present in the noun insertion. An insertion is anything that is placed within another thing. It may be used more figuratively as well as literally to refer to actions like inserting a page into a binder, for instance. For instance, the president is sworn into office every four years. Additionally, your brother might frequently insert himself into conversations he has no knowledge of.

To learn more about insertion
https://brainly.com/question/26320301
#SPJ4

a microblog select one: a. is a way to contribute to an online encyclopedia. b. is only used by celebrities. c. allows only a limited number of characters per posting. d. requires special software.

Answers

A microblog permits only a limited number of characters per posting. Thus option (c) holds the correct answer which is "allows only a limited number of characters per posting".

What is a microblog?

A microblog is a type of blog that differs from a trad-itional blog in that it allows the posting of very short con-tent. A microblog allows users to share small elements of con-tent such as video li-nks, individual images, or short sentences/messages quickly. In simple words, rather than writing lengthy text, a microblog restricts to writing short messages that can appear in several con-tent formats, including video, audio, text, images, etc.

With microblogs, short messages can be shared with an online audience to improve engag-ement. So-cial me-dia chan-nels like Fa-cebo-ok, Ins-ta-gram, and Twi-tt-er provide popular plat-forms for microblogging.

You can learn more about microblogs at

https://brainly.com/question/18364767

#SPJ4

melanie is a desktop publisher who puts together all the text and images for a children's magazine. the pathway of the arts, av technology, and communication cluster that melanie works in is: question 15 options: printing technology. telecommunications. performing arts. visual arts.

Answers

Someone who has the job description such as putting together all the text and images for a children's magazine, the pathway of the arts, av technology and communication cluster is called telecommunications. So Melanie works in telecommunications.

The Telecommunications Technician is a job that has the responsibility to install, maintain, and provide a variety of telephone equipment, and install voice and data communication circuits, security cameras, panic systems, and door access.

You can learn more about The Telecommunications at https://brainly.com/question/1622085

#SPJ4

a territory routing plan that begins at the sales office and moves in an expanding pattern of concentric circles that spirals across the territory is known as a

Answers

Circular routing plan is known as a territory routing plan that begins at the sales office and moves in an expanding pattern of concentric circles that spirals across the territory.

A circular routing pattern proceeds in a clockwise direction, whereas the leapfrog routing pattern proceeds in an anticlockwise direction. A circular routing pattern can be described as the best applied when a territory is large, whereas the leapfrog routing pattern is best applied when a territory is small. Sales route planning can be defined as the process of finding the most efficient way to get from Point A to Point B, The most efficient routes also help sales reps in the field identify, understand, and navigate their most impactful opportunities. These routes consider multiple factors.

Learn more about Circular routing plan at https://brainly.com/question/15160703

#SPJ4

in the database development process interviews with users lead to database requirements, which are summarized in a data model. group of answer choices true false

Answers

In the database Development process, the requirements are summarized in a data model and the given statement is True.

What does the database Development process include?

The eight steps in the database development life cycle serve as a roadmap for building new databases. Planning, gathering requirements, conceptual design, logical design, physical design, building, implementation and deployment, and finally continuing support are the processes.

What is the Data model in DBMS?

Data pieces and their relationships are depicted visually in data models for an organisation. Models assist in the creation of efficient information systems by assisting in the definition and structuring of data within the context of pertinent business activities.

-In a data model, the database's requirements are enumerated.

-The developers examine current forms, reports, inquiries, and other user behaviours during the requirement development and interview processes.

-The developer ascertains the requirement for new forms, reports, and queries during the interview and requirement development process.

​-The first step is for the developers to conduct user interviews and create the new system's specifications.

Hence, the given statement is True.

To learn more about the Data model from the given link

https://brainly.com/question/27250492

#SPJ4

a(n) is a list of homogenous elements in which the addition and deletion of elements occurs only at the end. group of answer choices stack queue array linked list

Answers

A stack is a list of homogenous elements which are of the same type.

what is a stack?

An ordered linear series of things can be stored in an abstract data type called a stack. A stack is a last in, first out (LIFO) structure as opposed to a queue.

Is stack LIFO or FIFO?

The main distinction between stack and queue data structures is that while queue uses a FIFO data structure type, stack uses LIFO. Last In First Out is referred to as LIFO. It implies that the last element is processed first when data is added to a stack. On the other hand, FIFO stands for First In First Out.

A stack is a collection of identically typed components. We can only add and remove elements from one end of a stack.

Hence, the stack is a list of homogenous elements.

To learn more about FIFO from the given link

https://brainly.com/question/12948242

#SPJ4

The ________ selects instructions, processes them, performs arithmetic and logical comparisons, and stores results of operations in memory.

Answers

The CPU selects instructions, processes them, performs arithmetic and logical comparisons, and stores results of operations in memory.

What is memory?
The ability of the mind to encode, store, and retrieve material or knowledge when necessary is known as memory. It is the process of holding onto knowledge throughout time in order to influence future behaviour. Language, relationships, and the development of a personal identity would all be impossible without the ability to remember the past. Forgetfulness or amnesia are common adjectives used to denote memory loss.

A sensory processor, a short-term (or working) recall, and a long-term memory make up the information processing system that is commonly referred to as memory. The neuron may be involved in this. The sensory processor enables outside information to be perceived as chemical and physical impulses and is responsive to different levels of focus and purpose.

To learn more about memory
https://brainly.com/question/13196228
#SPJ4

true or false? amazon simple storage services (amazon s3) is an object storage suitable for the storage of flat files like word, documents, photos, etc

Answers

True -amazon simple storage services (amazon s3) is an object storage suitable for the storage of flat files like word, documents, photos, etc

What are amazon's simple storage services?

A highly scalable cloud storage service called Amazon Simple Storage Service (Amazon S3) stores object data in buckets.

Safeguard and store any amount of data for a variety of applications, including analytics, backups, machine learning, websites, and cloud-native applications.

use examples:

Construct a data lake using Amazon S3

To unlock data insights, use applications for big data analytics, artificial intelligence (AI), machine learning (ML), and high-performance computing (HPC).

There fore we can conclude that  Amazon S3 is the best storage service

To know more on Amazon S3 please follow this link

https://brainly.com/question/14014995

#SPJ4

what job has becom e more important because modern digital recording equipment offers a wide array of options and capabilities, with much to navigate?

Answers

Engineering is the job has become more important because modern digital recording equipment offers a wide array of options and capabilities

What is Engineering?

In engineering, science and math are combined to address practical issues and create better environments for us all. The ability to put ideas into practice in a way that is both practical and cost-effective is what really sets engineers apart. What distinguishes engineers from other branches of science and mathematics is their capacity to transform abstract ideas into physical reality. Think about some items you use regularly: vehicles (cars, planes, and boats), infrastructure (roads and bridges), computers, and other electronic devices.

Branches in Engineering:

1)Data Science Engineering

2)Electronics and Communication Engineering

3)Computer science Engineering

Hence considering the above options as well as the vivid opportunities Engineering is the job

To know more about Engineering follow this link

https://brainly.com/question/17169621

#SPJ4

what is object chaining? when you code one method after another when you code more than one method when you code methods that do similar things when you code with objects

Answers

Object chaining - When you code one method after another.

What is object chaining?
Instead of calling several methods with same object reference separately, object chaining calls multiple methods at once. In accordance with this process, we must first write the object reference and afterwards call the methods via separating them with the a (dot.). A popular syntax for calling many methods simultaneously in OOPs is object chaining in Java. Chaining methods each return an object. The requirement for intermediate variables is broken. In other words, object chaining may be described as what happens when we have an object and call the methods on it one after another.

To learn more about object chaining
https://brainly.com/question/15303791
#SPJ4

you have been asked to recommend a printer that will be used in a travel agency. the printer will be used to print airline tickets. each ticket has four pages (multi-part carbon-based forms), and the same information must show up on all four pages with a single pass of the printer. which printer type would you recommend? ink jet

Answers

Answer: Impact!

Explanation: Hope this helps.

Saving space is not an ideal reason for cropping a photo to be used in technical communication. What is a better reason?.

Answers

Saving space is not an ideal reason for cropping a photo to be used in a technical document is a false statement and  a better reason is that  if you as a person is doing so, it helps you make your point.

What do you mean by technical document?

Technical writing is any form of writing that explains the use, intent, design, or architecture of a good or service. Its objective is to describe a service that a company provides. Technical publications come in a variety of formats, each tailored to a certain audience.

Technical documentation is a catch-all word for the various types of data produced to explain the functionality, use, or architecture of a given good, system, or service.

The point you made mean effectively communicate an idea, as in I understand your point about skateboards being risky; your argument has been conveyed. In this phrase, "point" refers to "an important or crucial argument or suggestion.

Learn more about technical document from

https://brainly.com/question/7805567

#SPJ1

do you think that removing content on the internet and manipulating search engine results for money is ethical according to the categorical imperative?

Answers

No, I do not think that removing content on the internet and manipulating search engine results for money is ethical according to the categorical imperative.

What is internet?
The Internet is a system of worldwide computer networks that are linked together and communicate with one another using the Internet protocol suite. A wide range of electronic, wireless, or optical networking technologies are used to connect private, public, academic, business, or government networks with local to global reach. The World Wide Web (WWW), which is made up of interconnected hypertext documents and applications, as well as electronic mail, phone service, and file sharing, are just a few of the many information resources and services available on the Internet.

The research commissioned by the US Department of Defense inside the 1960s to enable computer time-sharing and the invention of packet switching are the roots of the Internet.

To learn more about internet
https://brainly.com/question/2780939
#SPJ13

In select circumstances, __ is permissible character on the mac operating system

Answers

In select circumstances, Options A, C, and D are permissible characters on the Mac operating system. Note that The colon ":" is the only character not permitted for Mac files.  

What is an operating system?

An operating system is a piece of system software that controls computer hardware and software resources while also providing common functions to computer programs.

An operating system (OS) is the software that handles all of the other application programs in a computer after being loaded into the machine by a boot program. The application programs interact with the operating system by requesting services via a predefined application program interface (API).

Learn more about Operating System:

brainly.com/question/1763761

#SPJ1

Full Question:

In select circumstances, _____ is a permissible character on the Mac operating system.

A. *

B. :

C. <

D. /

What would someone use a card catalogue to do? question 1 options: look up a book in a library order a set of greeting cards see how much vintage playing cards are worth keep track of books checked out of a library

Answers

The thing that someone use a card catalogue to do is option A look up a book in a library.

What purpose does a card catalog serve?

Card catalogs are arranged indexes of the library's holdings that are made up of cabinets full of cards that list and pinpoint specific items. In a normal card catalog, things would be listed according to the author, title, and subject, or all three may be combined into one alphabetical arrangement.

The Benefits of a Card Catalog is in its Flexibility that is Whenever the need arises, it is simple to remove or swap out the cards.

Learn more about card catalogue from

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

what tcp message will be generated for an incoming syn request for which there is no matching listening port? what error will be given to the application that requested the connection?

Answers

TCP message that will be generated for an incoming syn request for which there is no matching listening port is called connection refused. The error that will be given to the application that requested the connection is the port you are trying to connect to is not open.

The Transmission Control Protocol or also know as TCP can be described as one of the main protocols of the Internet protocol suite. It originated in the initial network implementation in which it complemented the Internet Protocol. Then, the entire suite is regularly referred to as TCP/IP.

Learn more about TCP at https://brainly.com/question/28108316

#SPJ4

Which graph or chart shows changes in the value of data?

Bar graph
Column chart
Line graph
Pie chart

Answers

Answer:

bar graph or maybe line graph

Answer:

Bar graph.

Explanation:

A bar graph is used to present data visually it can be used by industries to convey complicated information easily it can compare different variables and values.

jordan recently received an email message from bill. what cryptographic goal would need to be met to convince jordan that carlos was actually the sender of the message?

Answers

Nonrepudiation cryptographic goal would need to be met to convince Jordan that Carlos was actually the sender of the message

What is the nonrepudiation cryptographic goal?

No party can refute that it sent or received a message using encryption and/or digital signatures, or that it approved some information, thanks to nonrepudiation. It cannot also contest the validity of a signature on a document.

Types of cryptographic goals:

confidentiality integrity authentication and non-repudiation

The above goals are also called the pillars of cryptography

To know more about cryptography goals follow this link

https://brainly.com/question/88001

#SPJ4

one of the characteristics of big data is the variety of data. explain why this characteristic has resulted in the need for languages other than sql for processing big data.

Answers

Because variety makes data become a huge. Kinds of big data is structured, semi structured and others.

Data variety can be defined to discrepancies in the way data is assigned across an organization–in different formats, across different business units, and with differing organizational structures. Variety can be described as the diversity of data types. An organization might obtain data from a number of different data sources, which may vary in value. Data can come from sources in and outside an enterprise as well. The challenge in variety concerns the standardization and distribution of all data being collected.

You can learn more about The Data Variety at https://brainly.com/question/14548310

#SPJ4

Other Questions
What term is used to describe the practice of unloading materials from an incoming trucks or rail cars and loading these materials onto outbound trucks or rail cars, with little or no storage or warehousing in between?. 2. A topographic map shows two locations,X and Y, one half mile apart. From thecontour lines, the elevation of X is 800 feetand Y is 750 feet. What is the gradientbetween the two locations?(1) 12.5 ft/mi (3) 50 ft/mi(2) 25 ft/mi(4) 100 ft/mi 2 multinationals that provide fair wages to their local employees are following which type of moral language? group of answer choices avoiding harm ethical behavior rights and duties social contract You want to buy a $364,000 home. You plan to pay 5% as a down payment, and take out a 30 year loan for the rest. (Enter numeric answers to 2 decimal places.)a) How much is the loan amount going to be? change from radical form to exponential expression in fractional form. No need to evaluate just be put in simplest form Jonah tells katrina that he is glad to see her, but then he does not smile or look at her frequently and seems preoccupied with something else. Jonah has used nonverbal behavior to _____ verbal behavior. Which of the following statements correctly describes cis-trans isomers?A) They have variations in arrangement around a double bond.B) They have an asymmetric carbon that makes them mirror images.C) They have the same chemical properties.D) They have different molecular formulas.E) Their atoms and bonds are arranged in different sequences. If you pinch your nose while you are putting a piece of food into your mouth, what are you going to experience?. A music store has 40 trumpets, 39 clarinets, 24 violins, 51 flutes, and 16 trombones in stock. Write each ratio in simplest formTrumpets to violins consider the problems with the rio olympics sites that quickly occurred following completion of the 2016 summer games. access the internet to find evidence of the current state of the sochi olympic site. how is it being used and what are the current problems and opportunities for sochi? Which type of market is the one in which a person buys their favorite breakfast sandwich at a fast-food drive thru?. A bridge being designed will crossthe river at a right angle. Theequation of the left bank of theriver is y = 2x + 8. The center ofthe bridge will pass through (0, 2).What is the equation of the linerepresenting the bridge? 50 POINTS!!!!!Change the following adjective to an adverb:justo two-year-old philip was recently clawed by the neighbor's cat. philip's newly developed tendency to fear all small animals demonstrates the process of -The polynomial function p(x) = x + 4x - 7x - 22x + 24 has known factors of (x + 4) and (x - 1).a. Rewrite p(x) as the product of linear factors.b. Draw a rough sketch of the graph of the function. the managers of a production line that fills cereal boxes would like to reach a six sigma level of quality in terms of product weight. the desired range of output extends from 10 to 16 ounces. in order to reach six sigma quality, what would the maximum standard deviation of output need to be? Identify the range of the function.A [-4,0]B (-4,0)C [-3,1]D (-3,1) Static or declining incomes among a large portion of the u. S. Population is an economic factor that can impact cinnabons marketing activities because Use the standard algorithm to solve the equation 36 x 25 = The diamond method for factoring: Fill in the missing value