Hugh bought some magazines that cost $3.95 each and some books that cost $8.95 each. He spent a total of $47.65.
If Hugh bought 3 magazines, how many books did he buy?
The equation that models the problem is 3.95m + 8.95b = 47.65, where m is the number of magazines and b is the
number of books.
books

Answers

Answer 1

Answer:

35.80

Explanation:

If Hugh bought 3 magazines that would equal 11.85, and 47.65-11.85=35.80.

I hope this helps

Answer 2

Answer:

since m = 3, therefore 3.95m = 3.95×3 = 11.85

this implies that 11.85 +8.95b = 47.65

this means 8.95b = 47.65 - 11.85 = 35.80

therefore b = 35.80 ÷ 8.9 = 4

since b = 4 ,this means Hugh bought 4 books


Related Questions

Write a multi-way if/else statement that adds 1 to the variable minors if the variable age is less than 18, adds 1 to the variable adults if age is 18 through 64 and adds 1 to the variable seniors if age is 65 or older.

Answers

The requirement of the question is to write a multi-way if/else statement for checking the value of the variable “age”. Based on the “age” value an increment of one is made in one of the three variables named minors, adults, and seniors.

The desired multi-way if/else statement in Python is written as follows:

if age < 18:                  /* Checks if “age” is less than 18, if yes it returns  

                                “ true” */

minors = minors + 1    /* Adds one to the “minors”, if the above condition is

                                 true */

elif (age >= 18 and age <= 64):  /* Evaluates the condition if "age" is from 18 to

                                   64. Returns “true” when meeting this condition*/

adults = adults + 1       /* It adds one to the "adults"  

else:                          /* When both of the above conditions are not true

                                  this else runs and becomes “true” for all the

                                  values of "age" which are greater than 64*/

seniors = seniors + 1   // It adds one to the variable "seniors”

You can learn more about if/else statement at

https://brainly.com/question/28430850

#SPJ4

The defining of tasks that are required for input data to be processed into output is part of the _______ step.

Answers

Part of the processing requirement step include defining task that must be required in order for input data to be processed into output. Process requirements define guidelines and benchmarks for organizing and carrying out tasks (workflows, processes, procedures, tasks).

A corporate organization will develop procedures, processes, and strategies to be used in order to produce a specific outcome (product or service) that materializes or fulfills the first stated needs in process requirements. Stepping through a list of duties is necessary to determine the needs for a procedure.

Follow the link below to learn how a product is verified to determine whether it meets the requirements

https://brainly.com/question/24613576

Jill is configuring the autoarchive feature in outlook 2016. what is the default setting in relation to when autoarchive will run?

Answers

The default setting for how long autoarchive will run is 14 days. The Microsoft Office suite includes Microsoft Outlook, a personal information manager program from Microsoft.

Outlook is essentially an email client, but it also has calendaring, task and contact management, note-taking, journaling, web browsing, and other features.

Outlook can be used by individuals as a stand-alone application and by businesses as multi-user software (through Microsoft Exchange Server or SharePoint) for shared tasks such mailboxes, calendars, folders, data aggregation, and scheduling appointments. Microsoft has made apps for the majority of mobile operating systems, such as iOS and Android.

Learn more about outlook 2016 https://brainly.com/question/25004823

#SPJ4

A technician is installing a cable modem that supplies internet connectivity for a home office. Which of the following cabling types would they use to connect the cable modem to the wall outlet?
Cat 5e
RG-6
Multi-mode fiber
Cat 6a​

Answers

Answer: Cat 5e

Explanation: There is no Cat 6 A,

RG-6 are for coaxes as in hooking up your tv to a  cable box  from your provider

Fiber optic cable as in Multi -mode is not applicable for this either ..

SO Cat 5e Plenum is the best.

working on a python assignment, not sure what i did wrong can anyone help?

Answers

Answer:

Explanation:

line 13 should be changed to:

print(“Item 1: “ + item1 + “ - $” + str(float(const1)))

You cannot concatenate a string to float type.

Adjusting the driver's seat is _____.



not necessary if you're only driving a few miles

only necessary when you purchase a new vehicle

usually enough to make up for an arm or leg injury

not just for comfort

Answers

Answer:

I'll go with option A. Although I'm not very sure

Adjusting the driver's seat is not just for comfort since it also provides security to the individual (Option D) .

How should I adjust my driver's seat?

Adjusting the driver's seat may save a life in the case of car accidents and thus provides a fundamental issue for security purposes.

In conclusion, adjusting the driver's seat is not just for comfort since it also provides security to the individual (Option D).

Complete question:

Choose Options. Adjusting the driver's seat is _____.

A. only necessary when you purchase a new vehicle

B. usually enough to make up for an arm or leg injury

C. not necessary if you're only driving a few miles

D. not just for comfort

Learn more about automobile's seat security here:

https://brainly.com/question/28457464

#SPJ1

A windows file name cannot contain the * character.
true/ false

Answers

It is true that a windows file name cannot contain the * (asterisk) character.

What is a file name?

A filename, also known as a file name, is a name that is used to uniquely identify a computer file in a directory structure. Different file systems have different length restrictions for filenames.

Letters, numbers, spaces, and ( ) -, are all valid file name characters in any name of the file.

Characters that are not at all supported include, but are not limited to: % & / : * ? " ' > | '  + = [ ] ; !

Thus, the given statement is true.

For more details regarding filename, visit:

https://brainly.com/question/8315777

#SPJ1

Assume that two int variables named distance and speed have been declared and assigned values. Also assume that a double variable named result has been declared. Write a statement that divides distance by speed and assigns the result to the result variable. Be sure to write your math expression in such a way that the result is a floating-point value

Answers

The required statement that divides “distance” by “speed” and stores the obtained result in the variable “result” is “result = (double) distance/speed”.

Given two variables “distance” and “speed” in a program that both are assigned with some integer values. Since we need to produce the result of division as a floating-point value, so one of the two integer type variables i.e. “distance” and “speed” is converted to float type using the cast operator (double). Further, we are required to assign the result of the division to the already declared double type variable named “result”.

According to the requirement of the question, we need to write a statement that produces a floating-point result when dividing the integer type values of “distance” and “speed” and assigns the result to the double variable i.e. “result”. The following statement fulfills the requirement of the given question and produces the desired result.

result = (double) distance/speed;

You can learn more about casting operator at

https://brainly.com/question/14690025

#SPJ4

Giving the computer large quantities of unstructured data so that it can organize the data in a way that humans can use is an example of _________________ learning.

Answers

Giving the computer large quantities of unstructured data so that it can organize the data in a way that humans can use is an example of sentiment analysis learning. The correct option is A.

What is sentiment analysis?

Sentiment analysis, often known as opinion mining, is a natural language processing (NLP) method for identifying the positivity, negativity, or neutrality of data.

Businesses frequently do sentiment analysis on textual data to track the perception of their brands and products in customer reviews and to better understand their target market.

Therefore, the correct option is A. Sentiment analysis.

To learn more about sentiment analysis, refer to the link:

https://brainly.com/question/13266124

#SPJ1

The question is incomplete. Your most probably complete question is given below:

A. Sentiment analysis. B. Internet collecting. C. Web scraping. D. Internet collecting.

What make appertizer look healthier?

Answers

Answer:

Fruits, vegetables or drinks but it needs to be fruit wise in order to be healthier

the vegetables on the side

A cloud database infrastructure integrates computer hardware and operating system in an internet-based ________.

Answers

A cloud database infrastructure integrates computer hardware and operating system in an internet-based B. data center.

What is cloud data infrastructure?

Cloud computing infrastructure is known to be a kind of composition or the set/collection of hardware as well as software elements that are known to be required to help cloud computing.

It is one that is made up of computing power, networking, as well as the storage, and the  interface that is made for users to gain access into their virtualized resources.

Therefore, A cloud database infrastructure integrates computer hardware and operating system in an internet-based B. data center.

Learn more about database from

https://brainly.com/question/25385643

#SPJ1

A cloud database infrastructure integrates computer hardware and operating system in an internet-based ________.

A.materials center

B.datacenter

C.taped center

D.report center

39
1. The following situation uses a robot in a grid of squares. The robot is represented by a triangle which
is initially in the top right square and facing left. The robot may not travel through the black squares.
L
Create a solution that would enable the robot to be in the position found below using at least 2
loops.

Answers

A solution that would enable the robot to be in the position found below using at least 2 loops is given below:

The Program

PROCEDURE moveRobot

{

IF (CAN_MOVE (forward))

{

ROTATE_LEFT()

}

ELSE

{

ROTATE_RIGHT ()

}
{

MOVE_FORWARD ()

}

}

The given command helps enable the robot to move in different directions, provided it can move forward, so it would be able to rotate left and right.

Read more about programming here:

https://brainly.com/question/20119860

#SPJ1

Oftentimes to understand a word's meaning you need
more than a definition. formal tone , or casual tone ?

Answers

Oftentimes to understand a word's meaning you need a formal tone more than a definition.

What is a Formal tone?

In literature, a formal tone may be defined as the type of utilization of words in literary work in order to demonstrate the writer's perspectives to the audience and represents the level of seriousness of a writer about the subject.

According to the context of this question, in order to understand the actual meaning of the word, you must require to understand the formal tone behind the words which is conveyed by the author or writer to their audiences.

Therefore, oftentimes to understand a word's meaning you need a formal tone more than a definition.

To learn more about Formal tone, refer to the link:

https://brainly.com/question/27814961

#SPJ1

Suppose a scanner object is created as follows: scanner input = new scanner(system.in); what method do you use to read a real number?

Answers

Suppose a scanner object is created as follows: scanner input = new scanner(system.in); the method you use to read a real number is Scanner input = new Scanner(System.in); input. nextDouble();

This is because the Scanner input = new Scanner(System.in); input. nextDouble(); command creates the input for a number that contains both whole numbers and decimal numbers and this is why double is used and not int.

What is a Double in Programming?

This refers to the fundamental data type that is encoded into the compiler and used to define numeric variables holding numbers with decimal points

Hence, we can see that Suppose a scanner object is created as follows: scanner input = new scanner(system.in); the method you use to read a real number is Scanner input = new Scanner(System.in); input. nextDouble();

This is because the Scanner input = new Scanner(System.in); input. nextDouble(); command creates the input for a number that contains both whole numbers and decimal numbers and this is why double is used and not int.

Read more about double and float here:

https://brainly.com/question/13260053

#SPJ1

A traditional wireless network involving access points that all have wired connections is known as a(n) _______. lan wlan wan

Answers

The answer:
WLAN(wireless local area network)

Write a matlab function that computes the area of a trapezoid with base and heights and . use the function as part of the trapezoid rule toevaluatedthe following integral numerical

Answers

A function is a collection of sentences that work together to complete a goal. Function definitions in MATLAB are stored in different files. Both the function's name and the file's name must match.

What is MATLAB?The Math Works organization created the proprietary multi-paradigm programming terminology and computing conditions known as MATLAB. Matrix manipulation, function and data visualization, algorithm implementation, user interface building, and connecting with other programming languages are all possible with MATLAB. Engineers and scientists can use the programming environment MATLAB to study, create, and test systems and technologies that will change the world. The MATLAB language, a matrix-based language that enables the most natural expression of computer mathematics, is the core of MATLAB. For engineers and scientists, MATLAB is a high-level programming language that directly implements matrix and array mathematics. Everything can be done using MATLAB, from executing basic interactive commands to creating complex programs.

To learn more about MATLAB, refer to:

https://brainly.com/question/15071644

#SPJ4

What was the basis of building ARPAnet?

Answers

The basis of building ARPAnet is due to the zeal or the desire to assign  information over wide  distances without the use of  dedicated phone connections that will exist between all computer on a network.

What is ARPANET?

ARPANET is known to be the very first network that was said to be made up of distributed control.

Note that It was said to be implement TCP/IP protocols as it is the one that starts the use of Internet along  with use of these technologies.

Therefore, The basis of building ARPAnet is due to the zeal or the desire to assign  information over wide  distances without the use of  dedicated phone connections that will exist between all computer on a network.

Learn more about ARPAnet from

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

What services do banks now provide
because of computers, which they could not
provide before.

Answers

Answer:

Modern Banking Services:

Credit Card. Kisan Credit Card.SMS Banking. Visa Debit Card.Internet Banking. Mobile Banking.SMS Alert. ASBA.ATM Service. SWIFT Transfer.Connect IPS. ABBS Service.Clearing Service. FOREX Transaction.RTGS Service. ADBL Demat Account.

if (year % 400 == 0 ) or ( year % 4 == 0 and year % 100 != o:)

IT SAYS INDENTATION ERROR
IV'E TRIED EVERYTHING
SOMEONE HELP PLSS

Answers

Answer:

Indentation means the qmount of tabs or spacing you need you to give before certain statements

What is the size of the total address space of ipv4, i.e. the number of valid ipv4 addresses?

Answers

IPv4 addresses are 32 bits wide, and thus the size of the address space is 232, or 4,294,967,296.

The amount of memory allotted for all potential addresses for a computational object, such as a device, file, server, or networked computer, is known as address space. Each device and process is given address space by the system, which contains a particular chunk of the processor's address space.

16 exabytes, or slightly more than one billion gigabytes, make up each address space. Logically, there are 264 addresses in the new address space. It is 8 billion times larger than the previous 2 GB address space, which logically contained 231 addresses.

A computer's or a peripheral device's address space is a section of logical space where data can be stored.

Learn more about address space:

https://brainly.com/question/18722116

#SPJ4

The microsoft office suite of programs primarily employs which type of menu structure?

Answers

The Microsoft office suite of programs primarily employs  option a. Ribbon type of menu structure.

What is Microsoft Office suite mainly used for?

Microsoft Office is known to be called a suite of applications that is said to have been set up so as to assist users  with productivity as well as in fulfilling common tasks that is known to be done on a computer.

Therefore, based on the above, The Microsoft office suite of programs primarily employs  option a. Ribbon type of menu structure for most of its applications or processes.

Learn more about Microsoft office suite from

https://brainly.com/question/27248879

#SPJ1

The Microsoft Office suite of programs primarily employs which type of menu structure?

Select one:

a. Ribbon

b. Drop-down

c. Expanding

d. Flat-list

In ten sentences, briefly describe Artificial Intelligence

Answers

artificial intelligence (AI), the ability of a digital computer or computer-controlled robot to perform tasks commonly associated with intelligent beings. The term is frequently applied to the project of developing systems endowed with the intellectual processes characteristic of humans, such as the ability to reason, discover meaning, generalize, or learn from past experience. Since the development of the digital computer in the 1940s, it has been demonstrated that computers can be programmed to carry out very complex tasks—as, for example, discovering proofs for mathematical theorems or playing chess—with great proficiency. Still, despite continuing advances in computer processing speed and memory capacity, there are as yet no programs that can match human flexibility over wider domains or in tasks requiring much everyday knowledge. On the other hand, some programs have attained the performance levels of human experts and professionals in performing certain specific tasks, so that artificial intelligence in this limited sense is found in applications as diverse as medical diagnosis, computer search engines, and voice or handwriting recognition.

Patricia competed the animation for her game character and is looking to program an efficient algorithm for the character's movement and interaction with another element. Review the code below and select which programming structure is displayed in Patricia's game?



Question 3 options:

Selection only


Sequential and selection


Iteration and selection


Iteration and sequential

Answers

Answer:

1

Explanation:

The programming structure that is being displayed in Patricia's game is the selection only. Thus, the correct option for this question is A.

What is the programming structure?

The programming structure may be defined as the procedural or linear structure of a program that is significantly defined by its control flow. It involves the programming paradigm aimed at improving the clarity, quality, and development time of a computer program.

They are facilitated by making extensive utilization of the structured control flow constructs of selection and repetition, block structures, and subroutines.

In this question, Patricia competed for the animation for her game character and is looking to program an efficient algorithm, so it determines the programming structure based on selection only.

Therefore, the programming structure that is being displayed in Patricia's game is the selection only. Thus, the correct option for this question is A.

To learn more about Programming structure, refer to the link:

https://brainly.com/question/28499342

#SPJ2

The efficient and successful use of technology is critically important to the success of ________ teams.

Answers

The efficient and successful use of technology is critically important to the success of virtual teams.

Through the adoption of tools like the internet and email for communications, word processing, spreadsheets, and presentations for office productivity, electronic databases for record keeping, and robots and artificial intelligence for automation, technology has evolved and shaped our workplaces in many different ways.

Technology has an impact on how people communicate, learn, and think. It benefits society and impacts how people relate to one another on a regular basis. Today's civilization is significantly influenced by technology. It affects people's daily lives and has both positive and harmful consequences on the planet.

Technology offers students quick access to knowledge, rapid learning, and enjoyable opportunities to put what they have learned into practise. Particularly in STEM, it allows students to go deeper into challenging ideas and explore new disciplines.

Learn more about technology:

https://brainly.com/question/13044551

#SPJ4

What method can be used as an alternative to the convert class methods to change a string into a number?

Answers

Parse method can be used as an alternative to the convert class methods to change a string into a number.

The TryParse method returns a boolean value indicating whether the conversion was successful and returns the converted number in an out argument. The Parse method returns the converted integer. Parse throws an exception if the string isn't formatted correctly, whereas TryParse returns false.

With the help of the Parse function, users can split up data in one field of a source file and write the "pieces" of the data to one or more fields of a target file. A unique character, like a space, an asterisk, a dash, etc., is used for parsing.

Parsing The term "String" in Java refers to the process of transforming data from a file, human input, or particular network into the String format.

Learn more about parse method:

https://brainly.com/question/27088344

#SPJ4

Jamal just finished taking a series of photographs that he loves, but he is
displeased with the lightness and darkness found in these images. What setting
does he need to adjust to fix this?

A. prime
B. tone
C. zoom
D. Opixels

Answers

Tone i’m not sure though

Answer:

Tone

Explanation:

This is the right answer for connexus

what is the best definition of the word app?

Answers

an application, especially as downloaded by a user to a mobile device.

(If this is what you mean by app)

Answer:

Software designed to run on computers and other devicesA

Explanation:

A(n) _____ investigates, analyzes, designs, develops, installs, evaluates, and maintains a company's information systems.
a. network administrator
b. application developer
c. database administrator

Answers

A system analyst (not listed on the option) performs research, analysis, design, development, installation, evaluation, and maintenance on the information systems used by an organization.

An information technology (IT) practitioner with a focus on the analysis, design, and implementation of information systems is known as a systems analyst, sometimes known as a business technology analyst. Systems analysts assess the adequacy of information systems in terms of their desired outcomes in order to accomplish these goals in collaboration with end users, software vendors, and programmers.

An individual who uses design and analytical techniques to make the most of information technology to solve business problems is known as a systems analyst.

Learn more about system analyst https://brainly.com/question/14956987?

#SPJ4

If you write a class with no constructor whatsoever, the compiler provides a(n) __________.

Answers

If a class is written with no constructor, the compiler provides a default constructor.

In the Object Oriented paradigm, a special kind of member function of a class that initializes its objects is called a constructor. When a class is defined without a constructor, the compiler provides a default constructor for it. The default constructor is a constructor that does not have any argument. But if a constructor with arguments or without arguments is created for a class, the compiler does not provide a default constructor for that class.

A constructor is used to assign default values to data members of a class.  It has the same name as the class is with no return type. when  an object of the class is created, constructor is automatically called. In case, when a class has no constructor, the compiler calls a default constructor for it.  

You can learn more about default constructor at

https://brainly.com/question/13267121

#SPJ4

1. What does the term "fair-use exception" mean? (1 point)

The answer is d. Educational material is no longer under copyright

Answers

The term "fair-use exception" mean the ability to use material made by others for educational purposes. The correct option is b.

What is copyright?

Copyright is a type of trademark that helps protect original works of authorship once they are fixed in a tangible form of expression.

Any copying of copyrighted material done for a limited and "transformative" purpose, such as commenting on, criticizing, or parodying a copyrighted work, is considered fair use.

Such uses are permissible without the permission of the copyright holder. In general words, fair use is basically a defense to a copyright infringement claim. If your use is considered fair use, it will not be considered an infringement.

Thus, the correct option is b.

For more details regarding copyright, visit:

https://brainly.com/question/14704862

#SPJ1

Your question seems incomplete, the missing options are:

a. No, because he did not cite sources

b. The ability to use material made by others for educational purposes

c. No, even information correctly used for school projects may not be posted on a website without permission.

d. Educational material is no longer under copyright

Other Questions
you earn $10 per hour babysitting and you babysit 25 hours each week. You also help your neighbor with household chores and are paid $8 per hour. If you spend 12 hours helping your neighbor, how much will you earn in one week? A standard user attempting to install software or make system changes without sufficient permissions places the os in secure desktop mode. what do they need to continue? what si the answer for 2+2 Determine whether each series is arithmetic or geometric. Then evaluate the finite series for the specified term number. 2+6+18+ . . . . . . ; n=6 Fred started a new e-Commerce business and borrowed $13,100 for 13 years to get the business up and running. The interest is $3916.90. Find the rate.Round to two decimal places, if necessary.Simple Interest Can you solve this program? compound sentence with the word success in it? If x in {- 2, - 1, 0, 1, 2} find the solution set of x + 2 > 1 Plant cells covert sunlight (solar energy) into usable chemical energy (glucose). When we eat plants our bodies are using that chemical energy. What elements are rearranged to make glucose in plants?A). Water and oxygen B). Carbon dioxide and sunlight C). Carbon, hydrogen, and oxygen D). Carbon, oxygen, and solar energy -|10-75+8-4+22| helppppppppp Unlike the methods of early scientists, how did Sir Francis Bacon believe basic laws of science should be determined?A. By using inductive reasoning based on empirical evidenceB. By using inductive reasoning based on a few basic truthsC. By using deductive reasoning based on a few basic truthsD. By using deductive reasoning based on empirical evidence This is a statement from one historian about the First Great Awakening.Parishioners during the revival gained an understanding of covenants with their churches as contractual schemes; they argued that each believer owed the church their obedience, and the churches in turn owed their congregants the duty to be faithful to the Gospel. Parishioners therefore reserved the right to dissolve the covenant and to sever ties with the church without prior permission.The last sentence is evidence that the First Great Awakening advanced which republican value?A. Power comes from the people not from a divine ruler.B. Government exists to protect the natural rights of the people.C. People have the right to overthrow their leaders.D. People must accept that corruption is part of government. help pls i dont know how to do this Simplify (2y-5)(2y+5) Divide. 485718 15 269 R 12 269 269 R 15 Im confused as to what the R means. Determine whether P Q R X Y Z . (Lesson 4-4) P(8,1), Q(-7,-15), R(9,-6), X(5,11), Y(-10,-5) , Z(6,4) Two spaceships are heading toward each other at a mutal speed of 0.999c. both ships shine a laser beam at one another. how will each ship see the other light? 1. You are buying tile for your bathroom floor andbaseboards for your bathroom walls. In the figure,the entire polygon represents the layout of thefloor. Each unit in the coordinate plane represents1 foot.a. Find the area of the floor.b. Find the perimeter of the floor.c. The cost of the baseboard is $2 per foot. Thecost of the tile is $2.50 per square foot. Findthe total cost to buy tile and baseboards foryour bathroom. what is 0.037854921 to the nearest hundreth PLS HELP 30 POINTSHumans impact the environment in a variety of ways, good and bad. And sometimes, doing the same thing in a different way can have a very different impact. Sort the activities below according to whether they have a detrimental or beneficial impact on our environment.Question 1 options:Clear cutting an old forest Sustainably harvesting treesConstructing a salmon fish farmOverfishing of certain species