1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
galben [10]
2 years ago
7

One fragment of a given integer n can be selected and its digits reversed (replaced with a right to left version of themselves).

What is the maximum number that can be obtained this way from integer n?.
SAT
1 answer:
andrew11 [14]2 years ago
7 0

Integers are numbers without decimal points. The number could be positive, negative or zero

<h3>How to determine the maximum number from the integer</h3>

The maximum number from integer N can be determined using the following program written in Python, where comments are used to explain each line

#This prompts the user for input

num = input("Number: ")

#This iterates from 0 to 9

kount = [0 for x in range(10)]

# This iterates through the input, and updates the kount variable

for i in range(len(num)):

  kount[int(num[i])] = kount[int(num[i])] + 1

# This next two lines initialize the greatest number

greatestNum = 0

multiplier = 1

# This iterates through the kount array

for i in range(10):

  #The following is repeated while the current element is greater than 0

while kount[i] > 0:

   #This generates the greatest number

greatestNum = greatestNum + ( i * multiplier )

kount[i] = kount[i] - 1

multiplier = multiplier * 10

#This prints the greatest number

print(greatestNum)

Read more about similar programs at:

brainly.com/question/26426553

You might be interested in
How does the piano interact with the orchestra in piano concerto 17
Firlakuza [10]

The piano interacted with the orchestra in piano concerto 17 through the use of three movements which is included in the list mentioned below:

  • Allegro ₄⁴
  • Andante ³₄ in C major
  • Allegretto – Presto ₂².

<h3>What is an Orchestra?</h3>

This is referred to a large congregation of instrumentalists playing together in a concert or a show etc. Examples of musical instruments which are used include violin, trumpet etc with each having their unique sound and melody.

Piano concerto 17 was written by Wolfgang Amadeus Mozart in 1784 who was regarded as one of the most influential composers of music. This concerto is regarded as a classic due to the synergy of the three movements mentioned above and how they were used.

Read more about Orchestra here brainly.com/question/910231

#SPJ1

3 0
2 years ago
_____tend to have a narrow span of control, whereas _____ have a wide span of control.
goblinko [34]

Answer:

Hello!

1. Large organizations

2. Smaller organizations

3 0
2 years ago
The density of a cube that measures 1.00 cm on each side and has a mass of 2.0g is __.
Pavlova-9 [17]
  • Side=1cm

\\ \sf\longmapsto Volume=side^3=1^3=1cm^3

  • Mass=2g

\\ \sf\longmapsto Density=\dfrac{Mass}{Volume}

\\ \sf\longmapsto Density=\dfrac{2}{1}

\\ \sf\longmapsto Density=2g/cm^3

3 0
2 years ago
All of the following are implied by Viagra ads EXCEPT: quizlet
alina1380 [7]

All of the aforementioned are implied by Viagra advertisements except that: women should be more se-xually assertive.

<h3>What is an advertisement?</h3>

An advertisement can be defined as consumer promotions programs that are designed and developed with the sole intention of making the various goods (products) or services which are being offered by a business firm to become known, popular and familiar to all of its customers and potential customers.

In this scenario, we can infer and logically that Viagra advertisements which depicts it as being an aphrodisiac and se-xual enhancer doesn't imply that women should be more se-xually assertive over their male counterparts (partners).

Read more on advertisements here: brainly.com/question/10196860

#SPJ1

8 0
2 years ago
What is the product? mc019-1. Jpg mc019-2. Jpg mc019-3. Jpg mc019-4. Jpg.
Ede4ka [16]

Answer:

C

Explanation:

(-2x-9y^2)(-4x-3)

Distributing -2x:

-2x * -4x = 8x^2

-2x * -3 = 6x

Distributing -9y^2:

-9y^2 * -4x = 36xy^2

-9y^2 * -3 = 27y^2

8x^2+6x +36xy^2 + 27y^2

I asked the same question and got this as an answer. Hope this helps! :)

5 0
2 years ago
Other questions:
  • Rock A and rock C are 60 ft away from each other. The left air balloon has a diagonal distance of 73 ft away from rock C and the
    6·1 answer
  • What are the four most common physiochemical changes that are used to determine time of death
    7·1 answer
  • The figure shows a normal distribution curve with a mean of 3.47
    8·1 answer
  • "President Lincoln's Declaration of Emancipation, January 1, 1863 by Frances E. W. Harper
    5·2 answers
  • Why is a good design for a product important when a firm decides to develop a new product​
    13·1 answer
  • Bruce is 36 years old. His son is 8 years old. In how many years will Bruce be three times as old as his son?
    11·2 answers
  • Which of the following are examples of aerobic exercise? Check all that apply. a swimming b running c push ups d lifting weights
    8·2 answers
  • 7=56 pls answer this q fast
    15·1 answer
  • Which is the closest synonym for the word contaminant?
    5·2 answers
  • For how many integers $n$ does the inequality $x^2 + nx + 15 &lt; 0$ have no real solutions $x$?.
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!