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
Rom4ik [11]
3 years ago
9

Write a python program that should determine from the range you choose to enter :

Computers and Technology
1 answer:
aleksley [76]3 years ago
7 0

Answer:

I'm not fully sure if this will work, however, I'm 92% sure it is correct.

Explanation:

startingrange = int(input("Enter a number for the starting of the range: "))

endingrange = int(input("Enter a number for the ending of the range: "))

divisiblebythree = 0

divisiblebyfive = 0

even = 0

odd = 0

for i in range(startingrange, endingrange):

   if (i % 2) == 0:

       even += 1

   elif (i % 2) != 0:

       odd += 1

   if (i % 3) == 0:

       divisiblebythree+=1

   if (i%5) == 0:

       divisiblebyfive+=1

print("Numbers divisible by 5:",divisiblebyfive)

print("Numbers divisible by 3:",divisiblebythree)

print("Odd numbers:",odd)

print("Even numbers:",even)

You might be interested in
Which of these is not considered by economists to be a want?
KATRIN_1 [288]
Bowl of cereal these is not considered by economists
4 0
3 years ago
In order to increase typing speed Minisoft has redesigned its keyboard and provided a chime that is related to typing speed. The
mash [69]

Answer:

Dependent variable: speed of typing.  

Independent variables: keyboard design & chime.

Explanation:

The speed of typing is expected to be dependent on the keyboard and chime, which are independent variables controlled by the experiment.

6 0
3 years ago
Write a recipe that stores the sum of the numbers 12 and 33 in a variable named sum. Have your recipe display the value stored i
VARVARA [1.3K]

Answer:

#include<iostream>

using namespace std;

int main(){

   int sum = 12+33;

   cout<<"The sum is: "<<sum<<endl;

}

Explanation:

First include the library iostream in c++ program for input/output.

Then, create the main function and declare the variable sum as integer type and store the sum of two given values.

After that, display the result store in the sum variable on the screen by using the instruction cout.

8 0
3 years ago
A _____________ delivers all the files that form web pages
Alexus [3.1K]

The database of the worldwide web delivers all the files that form web pages.

<h3>What is the worldwide web?</h3>

The World Wide Web (WWW), sometimes known as the Web, is the most widely used software platform on the planet  It is an online information space where documents and other web resources can be viewed using a web browser through the Internet.  

The Internet has had a huge impact on people's lives.  It is the major means of communication on the Internet for billions of people throughout the world.

Therefore database of the worldwide web delivers all the files that form web pages.

To know more about the worldwide web follow

brainly.com/question/14715750

#SPJ4

6 0
2 years ago
Select the term below which is a protocol that provides a method for software components to communicate, interact, and share dat
KATRIN_1 [288]

Answer:

B. Application programming interface

Explanation:

An application programming interface (API) is an interface or communication protocol between different parts of a computer program intended to simplify the implementation and maintenance of software. An API may be for a web-based system, operating system, database system, computer hardware, or software library.

8 0
3 years ago
Other questions:
  • In a _____, if any link between nodes is severed, the entire network is affected, and failure of a single node disrupts the enti
    9·1 answer
  • Ou have an application running on Oracle Cloud Infrastructure. You identified that the read and write operations are slowing you
    10·1 answer
  • In a stream channel what is deposited first?
    7·1 answer
  • A(n) ________ is a web application that allows users to easily add and edit content on a web page.
    15·1 answer
  • A(n) ____ occurs when a situation results in service disruptions for weeks or months, requiring a government to declare a state
    6·1 answer
  • When Russ opened a website on his browser, he saw an error that the site was not compatible with the browser version he was runn
    9·1 answer
  • What does t'challa actions reveal about his character( black panther movie)​
    6·1 answer
  • Which tags do you use to write the header and items of an ordered list on a web page?
    14·1 answer
  • Please help!
    6·1 answer
  • Which is the base class in the following statement? class car : public vehicle
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!