Find the check digit for the ISBN ‎978147180930

Answers

Answer 1
Answer:

The check digit is 9

Explanation:

An ISBN (International Standard Book Number) is a 10- or 13-digit number used to uniquely identify a book.

The ISBN contains a very important digit called the check digit.

The check digit of an ISBN is very important as it helps in preventing errors in transmission.

When an ISBN is entered into an ISBN reader, the check digit of the ISBN is compared with the check digit calculated from the other digits of the ISBN. If these two digits match, then there is very high chance that the ISBN is correctly entered.

For example, if an ISBN, say, 9781681972718 is entered into the reader,

i. the inputted check digit is the last digit which is 8

ii. the calculated check digit by the reader will also come up with 8.

iii. since the two values match, then the ISBN has actually been entered correctly.

If however, the entered ISBN number was 9781861972718, then,

i. the inputted check digit is the last digit which is 8

ii. the calculated check digit by the reader will also come up with 2.

iii. since the two values do not match, then the ISBN has actually been entered incorrectly.

To calculate the check digit of an ISBN, the steps are;

i. The first 12 digits of the number are taken.

In our case,

the digits are: 978147180930

ii. Multiply the first digit by 1, the second by 3, the third by 1, the fourth by 3 ... in that format until the twelfth digit which will obviously be multiplied by 3.

9 x 1 = 9

7 x 3 = 21

8 x 1 = 8

1 x 3 = 3

4 x 1 = 4

7 x 3 = 21

1 x 1 = 1

8 x 3 = 24

0 x 1 = 0

9 x 3 = 27

3 x 1 = 3

0 x 3 = 0

iii. Find the sum of the answers in (ii) above

9+21+8+3+4+21+1+24+0+27+3+0 = 121

iv. Find the modulo 10 division of the result in (iii). This is just the remainder when the result is divided by 10.

121 mod 10 = 12 remainder 1

v. If the remainder as calculated in (iv) is zero, then the check digit is 0. If otherwise, subtract the remainder from 10 and the result will be the check digit.

The remainder is 1 which is not zero. Therefore, the check digit is

10 - 1 = 9

The check digit is 9 and

the complete ISBN number will be 9781471809309


Related Questions

Discuss how 3D modeling enhances animation.

Answers

Answer:

3d modeling enhances animation in many ways.

Explanation:

The first and most obvious way is shadows. When 3d modeling your able to cast more detail shadows then compared to 2d.

Can someone help me with Edhesive 8.3 lesson practice question number 5? I can’t figure it out

Answers

Answer:

3

Explanation:

A programmer notices the following two procedures in a library. The procedures do similar, but not identical,
things.

Procedure square (n) returns the value n2

Procedure cube (n) returns the value n3

Which of the following procedures is a generalization of the procedures described above?
A. Procedure Add (n, m), which returns the value n + m
B. Procedure Fourth (n), which returns the value n4
C. Procedure Polynomial(n), which returns the value n3 +n2
D. Procedure Power (n, m), which returns the value nm

Answers

Answer:

D. Procedure Power (n, m), which returns the value n^m

Explanation:

Given

[tex]square(n) \to n^2[/tex]

[tex]cube(n) \to n^3[/tex]

Required

The generalization

The given functions are power functions which returns the power of n to a certain value.

The power sequence follows:

[tex]fourth(n) \to n^4[/tex]

[tex]fifth(n) \to n^5[/tex]

[tex]sixth(n) \to n^6[/tex]

------

-----

--

[tex]power(n,m) \to n^m[/tex]

Hence, (d) is correct

- Items in a ______ are enclosed in square brackets​

Answers

Answer:

list.

Explanation:

Items in a list are enclosed in square brackets​

The content an craigalist is mainly monitered by?
A) users
B)government
C)employer
D)no one

Answers

D)no one

..........................................

Select the three reasons that the gaming industry is set to grow.

A) more colleges offering jobs in game design

B) a decrease in the average age of gamers

C) an expanding market on mobile phones

D) expanding markets in Asia

E) new accessories that will attract more players

Answers

Answer:

expanding markets in Asia, new accessories that will attract more players, an expanding market on mobile phones

Explanation:

A collection of wiress connecting the CPU with main memory that is used to identify particular location is called

Answers

Answer:

Address buses are made up of a collection of wires connecting the CPU with main memory that is used to identify particular locations (addresses) in main memory. The width of the address bus (that is, the number of wires) determines how many unique memory locations can be addressed.

Explanation:

Address buses are made up of a collection of wires connecting the CPU with main memory that is used to identify particular locations (addresses) in main memory.

What is CPU?

The electronic equipment that carries out the instructions included in a computer program is known as a central processing unit (CPU), sometimes known as a central processor, main processor, or simply processor.

The CPU executes fundamental mathematical, logical, controlling, and input/output (I/O) activities as directed by the program's instructions. In contrast, specialized processors like graphics processing units and external components like main memory and I/O circuitry (GPUs).

Although CPUs' shape, design, and implementation have evolved throughout time, their basic function has remained mostly same. The arithmetic-logic unit (ALU), which performs arithmetic and logic operations, processor registers.

Therefore, Address buses are made up of a collection of wires connecting the CPU with main memory that is used to identify particular locations (addresses) in main memory.

To learn more about CPU, refer to the link:

https://brainly.com/question/16254036

#SPJ5

5. Lael is always on the lookout for students who might be interested in running for office in student groups. In cell M2, enter a formula using a nested IF function as follows to determine first if a student has already been elected to office in a student group, and if not, whether that student meets the qualifications to run in the future: a. If the value in the Elected column is equal to the text "Yes", the formula should display Elected as the text. b. Otherwise, the formula should determine if the value in the Finance Certified column is equal to the text "Yes" and return the text Yes if true And No if false

Answers

Solution :

It is given that Lael always looks out for the students who are interested in running for the office in a student group.

We use an excel sheet to determine whether a student had already elected to the office of the student group or not.

The formula used for the excel sheet used is :

[tex]$=IF(EXACT(K3,"Yes")."ELECTED", "Yes",IF(K3,'Yes),"Yes","No"))$[/tex]

                K                        L                             M                    N          

   Elected group    Finance certificate            

          Yes                    Yes                              Yes

          No                     Yes                               Yes

          No                      No                                No

Write a program that takes as input: - the current hour - the number of hours to add and outputs the new hour. For example, if the inputs are 2 (as the current hour) and 51 (as the number of hours to add), your program should output the answer from part (a) of this problem. Note that your program should always output an integer between 1 and 12. We will get you started with this program with the two lines that gather the input from the user. You'll need to write the rest.

Answers

Answer:

The program in Python is as follows:

cTime = int(input("Current Hour: "))

while(cTime <1 ):

   cTime = int(input("Current Hour: "))

aTime = int(input("Additional Hours: "))

while(aTime <0):

   aTime = int(input("Current Hour: "))

tTime = cTime + aTime

tTime%=12

print("New:",tTime,"hours")

Explanation:

This gets input for current time

cTime = int(input("Current Hour: "))

The following ensures that the user enters a time greater than 0

while(cTime <1 ):

   cTime = int(input("Current Hour: "))

This gets input for additional time

aTime = int(input("Additional Hours: "))

The following ensures that the user enters a positive time

while(aTime <0):

   aTime = int(input("Current Hour: "))

This calculate the new hours

tTime = cTime + aTime

This gets the hour equivalent between 1 and 12

tTime%=12

This prints the new hour

print("New:",tTime,"hours")

Drag each tile to the correct box.
Match the visual elements of design to the effect they produce.

Answers

Answer:

Creates order and harmony → color

Creates an emotional impact → texture

Brings a feeling of depth to a design → form

Draws or minimizes attention → space

Divides space and redirects the eye → shape

Explanation:

The visual element that creates order and harmony is color

Color can be used to create visible patterns that can be recognized as being in harmony or disagreement

The visual element that creates emotional impact is texture

Texture can be used to convey either the emotions of the object or the artist

The visual element that brings a feeling of depth to a design is form

Form is used to present a 3-D appearance of an art, and therefore, it is used to show depth of a 2-D drawing

The visual element that draws or minimizes attention is space

The arrangement, location, and size of the space occupied by an object can be used to draw or minimize attention

The visual element that divides space and redirects the eye is shape

Shape is used to divide space into areas easily recognizable by the eye

Write 4 types of viruses , explain them briefly.

Answers

I can help with two.

Web Scripting Virus, A sneaky virus that targets popular websites. What this virus does is overwrite code on a website and insert links that can install malicious software on your device. Web scripting viruses can steal your cookies and use the information to post on your behalf on the infected website.

FILE INFECTOR, targeting executable files (.exe), file infector viruses slow down programs and damage system files when a user runs them.

Planning to finance higher education helps people prepare for their financial future because it teaches them about

Loans and interest
Savings and accounts
Filing taxes
Short term goals

Answers

Answer:

savings and account

Explanation:

because that will convince them

Answer:

Loans and Interests.

Explanation:

Edge

Which form(s) of credit would be most appropriate for the receipt of a utility bill? (Select all that apply.) à. Charge card b. Revolving credit (credit card) C. Installment credit d. Service credit e. Line of credit​

Answers

Answer:

d. Service credit

Explanation:

In terms of technology, wich of the four devices is the most recent?

a. keyboard
b. joystick
c. scanner
d. camera​

Answers

Joystick (1972)

They consider the typewriter a keyboard…late 1800’s
Scanner (1957)
Camera (late 1800)

What are the steps for creating a bookmark? 1. Place the insertion point where the bookmark should appear. 2. Click the tab. 3. In the group, click Bookmark. 4. When a dialog box opens, name the bookmark, and click . 5. To see bookmarks within the document, go to Backstage view and click Options. 6. In , select Show Bookmarks to have them appear as a locked cursor within the document.

Answers

Answer:

2. Insert

3. Links

4. Add

6. Advanced

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

A website refers to the collective name used to describe series of web pages linked together with the same domain name.

On the other hand, a webpage is the individual HTML document (single page) that makes up a website with a unique uniform resource locator (URL).

A bookmark can be defined as a placeholder or saved shortcut for a webpage and for future reference. Thus, it avails an end user the ability to quickly access a bookmarked webpage by automatically directing the web browser to the webpage.

Basically, the steps for creating a bookmark are;

1. The insertion point of the webpage should be placed at the point where the bookmark should appear.

2. Click the "INSERT" tab.

3. In the "LINKS" group, click "Bookmark"

4. When a dialog box opens, the bookmark should be named with a specific title, and then click "ADD"

5. To see bookmarks within the HTML document, you should go to Backstage view and click on "Options"

6. In ADVANCED, select Show Bookmarks to have them appear as a locked cursor within the HTML document.

what is it important to test cabless?​

Answers

Answer:

to avoid larger problems ovr time like having to replace a whole line after it has been installed in case it happens that there may be faults you may know whether it was caused by a manufacturer error or installation error

Evaluate:
(3.7 x 10-2) (1.2 x 103)​

Answers

Answer:

[tex](3.7 * 10^{-2}) (1.2 * 10^3) = 44.4[/tex]

Explanation:

Given

[tex](3.7 * 10^{-2}) (1.2 * 10^3)[/tex]

Required

Evaluate

[tex](3.7 * 10^{-2}) (1.2 * 10^3)[/tex]

Remove bracket

[tex](3.7 * 10^{-2}) (1.2 * 10^3) = 3.7 * 10^{-2}*1.2 * 10^3[/tex]

Rewrite as:

[tex](3.7 * 10^{-2}) (1.2 * 10^3) = 3.7 *1.2* 10^{-2} * 10^3[/tex]

[tex](3.7 * 10^{-2}) (1.2 * 10^3) = 4.44* 10^{-2} * 10^3[/tex]

Apply law of indices

[tex](3.7 * 10^{-2}) (1.2 * 10^3) = 4.44* 10^{-2+3}[/tex]

[tex](3.7 * 10^{-2}) (1.2 * 10^3) = 4.44* 10^1[/tex]

[tex](3.7 * 10^{-2}) (1.2 * 10^3) = 4.44* 10[/tex]

[tex](3.7 * 10^{-2}) (1.2 * 10^3) = 44.4[/tex]

what is a fixed expense
everfi

Answers

Answer:

A fixed expense is an expense that has a constant total expense value (the total amount of the fixed expense) that remains the same (does not change) when there is a change in the number being managed, manufactured, or sold

Examples of fixed  expense includes; depreciation of assets, salaries of workers, payment for rental lease, and some utility payment, such as road users toll fees payment at a toll gate

Explanation:

Which is an example of a table style option?

O banded columns
O shading
O borders
O pen color

Taking the unit test please help ASAP

Answers

Answer:

a. banded columns

Explanation:

A table style is a collection of attributes that are used to format tables. With table styles, formatting such as borders, row strokes and column strokes can be applied to the table.

There are six options in the table style option in Microsoft word. They are;

i. Banded rows: shows banded rows in which odd rows are formatted differently from even rows.

ii. Banded columns: shows banded columns in which odd columns are formatted differently from even columns.

iii. First column: shows special formatting for the first column of the table.

iv. Last column: shows special formatting for the last column of the table.

v. Header row: shows special formatting for the first row of the table.

vi. Total row: shows special formatting for the last row of the table.

To show these options;

i. First insert a table in the document

ii. Click anywhere on the table and a 'Table tools' option will appear at the top of the menu bar.

iii. Click on the 'design tab' of the 'Table tools' and the table style option ribbon will appear at the top left of the page. A figure showing this has been attached to this response.

what is a web page and a website​

Answers

Answer:

:)

Explanation:

┬─┬ノ( º _ ºノ) ♪ ♬ ヾ(´︶`♡)ノ ♬ ♪

define client and.server​

Answers

Answer:

Client-server model is a model is a distributed application structure that partitions

tasks or workloads between the providers of a resource or service, called servers, and service requesters, called clients.

what is the most improved Android robot​

Answers

Answer:

They are the humanoid robots.

Jax earned 144 points on a research project. In this situation, what is the number 144? Group of answer choices data information knowledge output

Answers

Answer: data

Explanation:

Data refers to symbols or numbers that aren't meaningful. It's an an individual unit which consists of raw materials. Data hato be interpreted in order to become meaningful. They are fact or figures. Examples of data include 24, London, 144 etc.

Information on the other hand is a data that has been processed. e.g. Bob has an aggregate score of 144. Based on the question given, the number 144 is a data as it isn't meaningful yet.

Answer:

The answer is A

Explanation:

"as data"

How are sensors and microprocessors used to control a central heating system which uses an oil burner as the source of heat

Answers

Answer:

sensors are used to measure physical quantities such as temperature, light, pressure, sound, and humidity. They send signals to the processor . a security alarm system may have an infrared sensor which sends a signal when the beam is broken.

Explanation:

im just smart lol

How Many types of application Software are there?​

Answers

Answer:

there are 2 types of application software

Choose the word that matches each definition. 1. IP Address 2. Server 3. Port Each term is only used once._____________ a number used within a computer to identify a specific process ____________ a numerical reference to a particular device in a network ___________ a computer that handles requests and returns data to other computers in a network

Answers

Answer:

  Port      a number used within a computer to identify a specific process.

   IP Address     a numerical reference to a particular device in a network.

   Server           a computer that handles requests and returns data to other computers in a network.

Explanation:

A port number is a number used to uniquely identify a particular process, application or program on a computer. From the networking parlance, it is a logical address that uniquely identifies a process, protocol or application communicating with other process, protocol or application over a network. For example;

i. a file transfer protocol (FTP) could use a port number of 20 or 21.

ii. a simple mail transfer protocol (SMTP) could use a port number of 25

Internet Protocol (IP) address is a numerical reference or label assigned to a particular device in a network which helps to uniquely identify the device on the network. IP addresses (version 4) are expressed as a group of four numbers separated by a dot. For example, an IP address may look like this: 192.168.0.90

A server is a computer that receives requests from other computers, processes these requests and returns some data to the other computers  in a network. In reality, these servers and the computers they serve can actually be some applications or programs. Servers provide resources, data, services or programs to other computers over a network.

Answer:

IP address: an Internet Protocol (IP) address is a numerical reference to a particular device in a network

port: a number used within a computer to identify a specific process

server: a computer that handles requests and returns data to other computers in a network

Explanation:

edge 2022

What is the organizational management practices on planning during a pandemic like corona virus.

Answers

Answer:

wear a mask use hand sanitizer dont get in contact with anyone between 6 feet

Explanation:

Which function below will allow you to change to a different screen?

changeScreen( )

changePage( )

setPage( )

setScreen( )

Answers

Answer:

Option D

Explanation:

The Set Screen command is used to change the screen to any screen you wish. Screen is notified by its ID

The set screen command is used for some user -event and in such cases set screen is added by click event handler.  

The ID to which the screen is to be changed is selected.

Hence, option D is correct

¿Por qué es importante usar adecuadamente el celular?

Answers

Answer:

to stop it from breaking

Explanation:

Which of these is not a nonverbal cue?

main idea
posture
volume
eye contact

Answers

Answer:

volume and not the remaining ones

Other Questions
x2 + 5x + 9.Find the equation of the axis of symmetry for the parabola y = Will give 50 points + 25 BrainliestEnglish 12 Sem 11.2.8 - 1.2.9It doesn't even have to be super amazing I just need to get it done, please. Which of the following statements about income and wealth distribution is true? (1 point)Inheritance distributes wealth more equally.A. Progressive tax makes income distribution less equal.B. Access to quality education by a few distributes income more equally.C. Differences in degree of labor specialization distributes income more equally.D. Cultural and religious institutional barriers between markets contribute to income inequality. The acceleration of an object is measure by its change in velocity per unit time. The equation for acceleration is: a =v/t. Acceleration is represented by 'a'. Velocity is represented by 'v'. Time is represented by 't'. Rearrange the equation to solve for time. In order to calculate the amount of money needed to maintain a standard of living 20 years from now, you attempt to calculate an FV (20 years from now) of today's living expenses. What would be most appropriate for you to use as the interest rate?Money market rateExpected inflation rateAverage market rates of returnAverage market return + inflation Translate this sentence into an equation. 46 is the sum of 21 and Mabel's savings. PLZ HELP LIMITED TIME The middle portion of unspecialized mesoderm from which cartilage, bone, and blood develop is called . The mature cells that live in cartilage and maintain the matrix around them are . is a type of cartilage with a net of collagen fibers to help resist compression and tension. Any tissues that exist in layers and form linings or coverings fall into the category of . is the type of connective tissue that forms a structural net to support other cells. Submit Request Answer Provide Feedback Next How did the culture, the environment, andtechnological innovations of Mesoamerica affect the expansion of agriculture, cities, and social structures of the aztecs? find the value of x in the equation 4x-2=2x+10 Need help with some math 2) There are 12 sweets in a bag.4 are lemon flavour.4 are caramel flavour.4 are orange flavour.Jude takes at random 3 sweets at the same time.Work out the probability that exactly 2 of the sweets are the same flavour. In total, 28 chickens and pigs were on a farm. In total, there are 90 feet. How many chickens? How many pigs? can someone help me please?! I'll give brainlest for correct answer 1.- The Tenth-grade classroom has a rectangular shape whose length measures 4m more than the width.a) Calculate the width and length of the rectangular classroom, knowing that its perimeter is 28m.b) Calculate the area and the number of desks that must fit in the classroom to comply with the biosecurity standards of 1.5m of social distancing. 1. If two lines are parallel, then the slopes of the lines would be...A. oppositeB. ReciprocalsC. EqualD. Opposite ReciprocalsE. BinomialsF. Quadratic2. If two lines are perpendicular, then the slopes of the lines would be...A. OppositeB. ReciprocalsC. EqualD. Opposite ReciprocalsE. BinomialsF. Quadratic I need help writing a paragraph The side view is a bookend is shown. The perimeter of the bookend is 58 centimeters Select two different types of cells found in the human body. Search the internet for a lightmicroscope view of your selected cells. For example, you might select human heartmuscle cells and human nerve cells. Other possibilities include, but are not limited to:Sperm cellsEgg cellsBone cellsLung cellsBrainPlease help due today emergency help me plsss plsssss