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
Sunny_sXe [5.5K]
3 years ago
9

Find the number of ideal integers within the given segment [low,high] inclusive. An ideal number is a positive integer that has

only 3 and 5 as prime divisors. An ideal number can be expressed in the form of 3^x*5^y, where x and y are non-negativeintegers
Computers and Technology
1 answer:
Alex Ar [27]3 years ago
6 0

Answer:

  1. low = 10
  2. high = 50
  3. count = 0
  4. for i in range(low, high + 1):
  5.    if(i % 3 == 0 and i % 5 == 0):
  6.        count += 1
  7. print(count)

Explanation:

The solution code is written in Python.

We can create low and high variables to store the lower bound and upper bound in the range (Line 1-2)

Next create a counter variable, count (Line 3).

Use a for loop to traverse through the number between lower bound and upper bound and check if the current number-i is divisible by 3 and by 5, increment the count by one.

After the loop, print the count and we can get the number of ideal integers within the range (Line 8).

You might be interested in
Within the manufacturing industry, there are fourteen subindustries. Which of the
inna [77]

Answer: A or B i done this before but my memorys quite blurry i rekon doing A

Explanation:

3 0
2 years ago
What is repeating a set of instructions called? But not repetition.
zlopas [31]

Answer:

Iteration.

Explanation:

A process wherein a set of instructions or structures are repeated in a sequence a specified number of times or until a condition is met. When the first set of instructions is executed again, it is called an iteration.

7 0
3 years ago
Read 2 more answers
Three consecutive even integers heve a sum of 66. find the integers
Drupady [299]
Let us call x the smallest integer<span>. Because the next two </span>numbers<span> are </span>consecutive even integers<span>, we can call represent them as x + 2 and x + 4. We are told the </span>sum<span> of x, x+2, and x+4 is equal to 72. This means that the </span>integers<span> are 22, 24, and 26.</span>
6 0
3 years ago
A free-frame list Select one: a. is a set of all frames that are used for stack and heap memory. b. is a set of all frames that
zhuklara [117]

Answer:

b. is a set of all frames that are currently unallocated to any process

Explanation:

The free frame list is the list that used for all kind of the frames that presently non-allocated to any kind or process

Therefore as per the given situation, the correct option is b as it fits to the current situation

Hence, all the other options are wrong

So, only option b is correct

The same is to be considered

7 0
3 years ago
Martin is from TCS BPS team. As part of TCS Agile vision, he was recommended to attain 0 competency in Agile. Martin was thinkin
MissTica

There are a lot of uses of Agile technology.  Agile knowledge help martin in his work as the Agile principles can help in continuously improving BPS processes.

<h3>How does agile principles can help in improve bps?</h3>

Agile principles is known to be one that has constant improvement. An important factor to not e in Agile project management is there is always a continuous process of improvement of their services and technology.

By having this mindset, one can be able to known that there is continuous improvement for any kind of project and software development.

See options below

a) Martin is right. Agile principles are not useful outside software development

b) XP and DevOps can help in Robotic process Automation

c) Agile principles can help in continuously improving BPS processes

Learn more about Agile from

brainly.com/question/25861308

4 0
2 years ago
Other questions:
  • In a block-style business letter, the paragraphs are double-spaced and indented. <br> True or False
    15·2 answers
  • A red bullet in a microflow indicates: a. that the microflow has been completed b. that the microflow contains errors c. that on
    12·1 answer
  • How to change screen brightness windows 10?
    7·1 answer
  • A _____ refers to a product or service, such as a technical report, a training session, a piece of hardware, or a segment of sof
    12·2 answers
  • Implement the function first chars() that takes a list of strings as a parameter and prints to the screen the first character of
    13·1 answer
  • Javier develops sophisticated fashion websites. He has been asked by the owner of a leading fashion brand to create web content
    13·1 answer
  • What is presentation
    15·2 answers
  • What permissions are needed in order to use a work online that is in the public domain?
    8·1 answer
  • Expressions provide an easy way to perform operations on data values to produce other data values. True False
    11·1 answer
  • Distinguished between
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!