The toll program illustrates the use of conditional statements;
As a general rule, conditional statements are used to make decisions
<h3>The
toll program</h3>
The toll program written in Python where conditional statements are used to make several decisions is as follows:
def calc_toll(hour, morning, weekend):
toll_fee = 0
if weekend == False:
if morning == True:
if hour < 7:
toll_fee+=1.15
elif hour < 10:
toll_fee+=2.95
elif hour <= 12:
toll_fee+=1.90
else:
if hour < 3:
toll_fee+=1.90
elif hour < 8:
toll_fee+=3.95
elif hour >= 8:
toll_fee+=1.40
else:
if morning == True:
if hour < 7:
toll_fee+=1.05
elif hour <= 12:
toll_fee+=2.15
else:
if hour < 8:
toll_fee+=2.15
elif hour >= 8:
toll_fee+=1.10
return toll_fee
Read more about conditional statements at:
brainly.com/question/24833629
#SPJ1
The 3 tasks learners can do in a Technology classroom.
1. Telling digital stories .
2. Filming tasks on mobile phones .
3. Making lists of things done.
<h3>What are the three roles of technology for learners?</h3>
Technology is known to be a tool that often gives a lot of students a kind of an easy-to-access to any kind of information, as well as an accelerated learning, and others that the student can use to learn.
Note that this helps students to look inro new subjects and have a wider understanding of difficult topics.
Hence, The 3 tasks learners can do in a Technology classroom.
1. Telling digital stories .
2. Filming tasks on mobile phones .
3. Making lists of things done.
Learn more about Technology from
brainly.com/question/25110079
#SPJ1
Answer:
Check Yt
Explanation:
More often than not there are many video tutorials about every game imaginable.
A constructor, member initialization lists and also the default member initializer. Here you see all three (in reality you choose one construct per variable).
class A
{
public:
int x = 0;
A() : x(1)
{
x = 2;
}
};