car_year is read from input. Write multiple if statements: • If car_year is before 1968, output 'Probably has few safety features. • If car_year is after 1969, output 'Probably has seat belts. • If car_year is after 1990, output 'Probably has electronic stability control. If car_year is after 2002, output 'Probably has airbags. ● ► Click here for examples 1 car_year= int(input()) 2 if car_year < 1968 3 print ('Probably has few safety features. 'D 4 elif car_year > 1969: 5 print ('Probably has seat belts.') 6 elif car_year > 1990: 7 print ('Probably has electronic stability control.') 8 elif car_year > 2002: 9 print ('Probably has airbags.')

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter2: Using Data
Section: Chapter Questions
Problem 13PE
icon
Related questions
Question
100%
car_year is read from input. Write multiple if statements:
If car_year is before 1968, output 'Probably has few safety features.
• If car_year is after 1969, output 'Probably has seat belts.
• If car_year is after 1990, output 'Probably has electronic stability control.'
• If car_year is after 2002, output 'Probably has airbags.'
► Click here for examples
●
1 car_year = int(input())
2 if car_year < 1968
3 print 'Probably has few safety features. 'D
4 elif car_year > 1969:
5 print ('Probably has seat belts.')
6 elif car_year > 1990:
7 print ('Probably has electronic stability control.')
8 elif car_year > 2002:
9 print ('Probably has airbags.')
0
2
Transcribed Image Text:car_year is read from input. Write multiple if statements: If car_year is before 1968, output 'Probably has few safety features. • If car_year is after 1969, output 'Probably has seat belts. • If car_year is after 1990, output 'Probably has electronic stability control.' • If car_year is after 2002, output 'Probably has airbags.' ► Click here for examples ● 1 car_year = int(input()) 2 if car_year < 1968 3 print 'Probably has few safety features. 'D 4 elif car_year > 1969: 5 print ('Probably has seat belts.') 6 elif car_year > 1990: 7 print ('Probably has electronic stability control.') 8 elif car_year > 2002: 9 print ('Probably has airbags.') 0 2
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Mathematical functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr