How is analog data measured differently from digital data?
OA. It is measured with smaller units because they hold less
information.
B. It is measured using a continuous record rather than a limited
number of values.
C. It is measured using manual rather than electronic equipment.
D. It is measured with text descriptions instead of number values.

Answers

Answer 1

The way that analog data measured differently from digital data is option B. It is measured using a continuous record rather than a limited number of values.

How are analog and digital data measured differently?

Practically speaking, the way information and data are measured differs between analog and digital. While digital data employs sampling to encrypt what is being measured, analog data aims to be continuous and identify every detail of what is being measured.

Therefore, The means that information is altered into electric pulses of variable amplitudes in analog technology differs from how it is translated into digital signals. Information is translated into binary format (zero or one) in digital technology, where each bit represents one of two different amplitudes.

Learn more about analog data from

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

Answer 2

Answer:

B. It is measured using a continuous record rather than a limited number of values.

Explanation:


Related Questions

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

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

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

 

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. /

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

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

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

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

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

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

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

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

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.

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

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 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

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

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

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

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

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

Core principles of user-centered software design were formulated by the as a way of promoting reliable expectations in the field.

Answers

Core principles of user-centered software design were formulated by the as a way of promoting reliable expectations in the field is a true statement.

What aspect of user-centered design is most crucial?

Finding out as much information as you can is crucial for a user-centered design to be successful. This aids in overcoming the inclination to naturally create for ourselves (or our stakeholders) as opposed to our intended audience.

Instead of more surface-level considerations, the emphasis should be on "deeper" insights. The underlying tenet of user-centered design is that you are more likely to produce goods that people will appreciate if you collect data from consumers and apply your findings into product design.

Therefore, Three principles are highlighted by user-centered design methodologies:

Early on, pay attention to users and their work.Inspect designs for usability.Develop iteratively.

Learn more about software design from

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

Core principles of user-centered software design were formulated by the as a way of promoting reliable expectations in the field. True or false

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

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

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

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.

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

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.

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

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

Other Questions
Which describes the product when two fractions greater than 0 and less than 1 are multiplied? I need help important test i need the answers asap Harper just lit a new candle and then let it burn all the way down to nothing. The length of the candle remaining unburned, in inches, can be modeled by the equation L=15-1.5t,L=151.5t, where tt represents the number of hours since the candle was lit. What is the slope of the equation and what is its interpretation in the context of the problem? Sentence FragmentsAssessFor each item, write F if it is a sentence fragment or S if it is a sentence.1.Getting cable TV.One hundred and fifty channels available.The History Channel is Taylor's favorite.Cartoons entertain.Game shows sometimes very challenging.B Rewrite each sentence fragment, turning it into a complete sentence. If an item is not afragment, write correct.1. Staying up past 11:00 P.M. to watch the talk shows.2. Watches football on the weekend.3. North Carolina won.4. Hockey playoffs tomorrow at 4:00 P.M.5. The Crown Jewels of England.6. On the second day, we reached the coast.7. Working in Paris as a chef. Read the excerpt from the General Prolgue to theCanterbury Tales.Her headkerchiefs were of the finest weave,Ten pounds and more they weighed, I do believe,Those that she wore on Sundays on her head.Her stockings were of the finest scarlet red,Very tightly laced; shoes pliable and new.Bold was her face, and handsome; florid too.Which details suggest that the narrator may beunreliable?O "Her headkerchiefs were of the finest weave""Ten pounds and more they weighed, I do believe"O"Her stockings were of the finest scarlet red"O"Bold was her face, and handsome; florid too" (-1,2) and (3,32)For each of the following, find the formula for an exponential function that passes through the two points given. find x and y intercepts of x+4y=8 HELP ME FIND X AND Y A person pushes a 500 kg crate with a force of 1200 N and the crate accelerates at .5 m/s^2. What is the force of friction acting on the crate? A flower bed is in the shape of a rectangle. It measures7 yd long and 4 yd wide. Chris wants to use mulch tocover the flower bed. The mulch is sold by the squarefoot. Use the facts to find the area of the flower bed insquare feet.2ftX 5?Conversion facts for length1 foot (ft)1 yard (yd)1 yard (yd)===12 inches (in)3 feet (ft)36 inches (in) i need help with this math problem. Select the correct answer.Life situations are sources of stress caused by changes in your life O A. True .False which of the following graphs could be the graph of g (x)= (x+1) (x-2) (x+5) The process of transcription begins when a trainee appraiser completes three inspections with a supervisory appraiser. the supervisory appraiser makes notes on each inspection, and once the trainee appraiser completes the improvement description of the residential appraisal report, the supervisory appraiser reviews the section. the trainee appraiser incorrectly identifies a number of important features, such as the number of bedrooms, roofing material, floor covering material, and countertop type. which skill does this trainee appraiser need to improve? Solve the problem15) 21 and 22 are supplementary angles. What are the measures to the nearest hundredth) of the two angles?5x - 92I 5. a) Look at the number grid below. Shade the Multiples of 4, 1 2 3 4 5 6 7 00 8 9 10 11 12 13 14 15 16 17 17 18 19 20 A serum amylase is diluted 1/100 with a result of 45.0 U/L. What is the patient's actual amylase result? Mr Gregory drives a furniture delivery truck 4 days each week the table below shows the driving record for 1 week find the difference in meters between the distance Mr Gregory traveled on Wednesday and Thursday will send image. select the expression. that is not equivalent to 10 + 10p Picture explains it all