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
A marine biologist is working on a research vessel to study whale calls. His recording devices are measuring depths above 1,000
salantis [7]
It's due to more pressure as the sound is searched deep into the waters.<span> The adjustments were done to adapt and make clearer sounds.</span><span>
</span><span>Animal researchers use hydrophone arrays to determine the location of the whale calls. </span><span>Another equipment is the Sound Surveillance system, it is used on the sea floor once during the cold war to detect warships and submarines. But now it is used in researchers to understand animals in the ocean. </span>
3 0
3 years ago
Write an informative essay that summarizes how nature and wildlife are negatively affected by light
Schach [20]

Answer:

Essay below.

Explanation:

Over the years the world has evolved by leaps and bounds, to the point that such advances have brought different types of pollution to the planet.  Light pollution is one of them, and can be defined as the introduction of artificial light from artificial sources at night, in unnecessary intensities, directions and schedules, which are involved in the health of ecosystems; as well as in any natural state. This not only wastes money in cities, but also energy, while deteriorating the habitat of both nocturnal and migratory animals.

One of the consequences of light pollution that is one of the most important is that the amount of celestial objects that increase the illumination of the sky by itself is reduced up to 90%. Likewise; Observation visibility is limited by professional telescopes, since light blue is needed to appreciate. These consequences are not limited to the environment of the place where the pollution occurs, but the light is diffused through the atmosphere and its effect is felt up to hundreds of kilometers from its origin. In addition, light pollution can cause pests and persistent changes in the environment.

Light pollution is changing the cycle of some fish, dramatically affecting their feeding behaviour. Despite different changes in different species, overall was found that more animals were getting eaten.

In other hand, in fields where there were no lights, 60% less night pollinators were found in illuminated flowers. There were also 30 percent fewer species, which suggests that light pollution also decreases the diversity of pollinators. Lights can also affect insect reproduction, for example, by distracting male moths from the pheromones emitted by females. Predators have been shown to adjust their feeding habits to forage around lights, an added threat to nocturnal insects.

The actions to be carried out to reduce light pollution are usually associated with improvements in the quality of ambient lighting. It is possible to apply measures that would prevent the problem of light pollution such as the following:

Prevent the light from being emitted above the horizontal and direct it only where it is necessary.

  • Use lamps with low pollution spectrum and high energy efficiency.
  • Illuminate exclusively those areas that need it.
  • Regulate the shutdown of ornamental, monumental and advertising lighting.
  • Prohibit light or laser cannons and any projector that sends light to the sky.
  • Reduce consumption in hours of less activity, through the use of flow reducers in the public network or the selective shutdown of luminaires. Turn off luminaires that are not necessary.

Educating and making known all the solutions that are available for the care of the environment and the sky give greater economic, ambiental and astronomical benefits; since it will be then when more stars begin to appear in the sky for the enjoyment of all who live on earth and also  in turn the regulation of the cycles of animals and the ecosystem itself, giving the environment a balance; for future generations.

7 0
3 years ago
Escribe los seis primeros términos de la sucesión cuya ley de recurrencia es:
a_sh-v [17]
Es oda decomere faxxx duuuuude
6 0
2 years ago
Ce
e-lub [12.9K]

Answer:

Explanation:

cv= standard deviation/ mean

40/3

13.33

6 0
2 years ago
One people mover has a velocity of 2m/s and is used to move people to a gate 200 m away two different people were traveling to t
Ne4ueva [31]

Answer:

60 sec.

Explanation:

The first person has to travel 200m at 2 m/s. It will take him 200/2=100 seconds to reach the gate. The second person is moving towards the gate at 2 + 3 meters per second so it will take her 200/5 = 40 seconds to reach the gate. Therefore, person #1 needs an extra 100-40 = 60 seconds.

4 0
3 years ago
Other questions:
  • You do not need to tell a teacher you have downloaded anything as long as it did not save to your computer
    9·1 answer
  • I need to writing a discussion for my ECE classes
    10·1 answer
  • The quality-control manager at a compact fluorescent light bulb factory need to determine whether the mean life of a large shipm
    14·1 answer
  • The area, A, of a rectangle is 120x2 78x – 90, and the length, l, of the rectangle is 12x 15. Which of the following gives the w
    7·1 answer
  • What motivated the mass migration of many African Americans to Kansas in the 1800s?
    14·2 answers
  • What is the edge length of a simple cubic unit cell made up of atoms having a radius of 158 pm?
    12·1 answer
  • Rank order the vendors, keeping amazon’s goals in mind.
    12·1 answer
  • A cylinder has a volume of 78 cubic cm. What is the volume of a cone with the same radius and height?
    9·1 answer
  • which best describes the role of the speaker? the speaker is describing a scene in the third person as a sentimental observer. t
    7·1 answer
  • Identify all of the following statements about civil cases that are accurate.
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!