Pls help! 7th grade pythin fyi

Pls Help! 7th Grade Pythin Fyi

Answers

Answer 1

Answer:

There should be a colon at the end of the if statement, ie:

if x > 100:  print("...")


Related Questions

Which is an example of correct HTML?

This is a heading
This is a heading
This is a title
This is a title
Question 3(Multiple Choice Worth 5 points)

Answers

Answer:

An HTML tag is a special word or letter surrounded by angle brackets, &lt​; and >. You use tags to create HTML elements , such as ...

Explanation:

the ratio of length, breadth and height of a room is 4:3:1. If 12m^3 air is contained in a room, find the length , breadth and height of the room​

Answers

Explanation:

The ratio of length, breadth and height of a room is 4:3:1

Let length = 4x

Breadth = 3x

Height = x

Volume of air contained in the room, V = 12 m³

We need to find the length, breadth and height of the room. The room is in the shape of a cubiod. The volume of a cuboid is given by :

V = lbh

[tex]4x\times 3x\times x=12\\\\12x^3=12\\\\x=1[/tex]

Height of the room = 1 m

Breadth of the room = 3x = 3 m

Length of the room = 4x = 4 m

Why is this python code giving me problems?
This is having the user input a decimal number and the code has to round it up to the 2nd decimal place. This code is giving me problems, please fix it.

num3 = int(input("Please input a decimal number:")

num3 = int(round(num3, 2))

print ("your decimal rounded to the 2nd decimal place is:", x)

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The given code in this program has syntax errors.

In the given code, at line 1, input will cast or convert to int. It will generate an error on the second line because integer numbers can't be rounded. In simple, integer numbers don't have decimals. So, to correct the line you must use float instead of int.

In the second line, you need also to emit the int casting, because you have already converted the input into the float. In line 3, the second parameter to print function is num3, not x.

So the correct lines of the python code are given below:

num3 = float(input("Please input a decimal number:"))

num3 = (round(num3, 2))

print ("your decimal rounded to the 2nd decimal place is:", num3)

When you will run the above bold lines of code, it will run the program successfully without giving you any syntax and semantic error.

What are the characteristics of using the Email Calendar command? Check all that apply.

a. it shows a specific date range
b. it shares a snapshot of the calendar
c. it is delivered as an attachment to an email
d. it grants read only access to the whole calendar
e. it is used to show dates without sharing the entire calendar.
f. it allows the user to add the calendar to their outlook client.


(question from edge)

Answers

Answer:

a b c e     are the correct ones

Explanation:

A, B, C, E

the correct answers are A, B, C, and E

PLS HURRRYYYYYY!1!1!1!1!1
You have used different ways to store data. Match each definition with its type.

movieAwards = ('Oscar', 'Golden Globe', 'Director's Guild')

movie = 'Star Wars'

movieStars = ['Carrie Fisher', 'Harrison Ford']

movieRatings = {5:'language', 3:'violence'}

movieID = 132

movieCost = 4.95


Vocab:

Float

Tuple

int

string

list

dictionary

Answers

movieID = 132 Int

movieCost = 4.95 Float

movie ='Star Wars' string

movieAwards = ('Oscar', 'Golden Globe', 'Director's Guild') tuple

movieStars = ['Carrie Fisher', 'Harrison Ford'] list

movieRatings = {5:'language', 3:'violence'} dictionary

If you want these explained , can do in replies :)

Answer: Int, Float, String, tuple, list, dictionary

Explanation: got it right on edgen

What does the primary Help icon look like in Access?

a square with a star
a diamond with an asterisk
a circle with a question mark
a triangle with an exclamation point

Answers

a circle with a question mark

Answer:

c

Explanation:

9.3 Code Practice
Write a program that creates a 4 x 5 grid called numbers. The elements in your array should all be random numbers between -30 and 30, inclusive. Then, print the array as a grid

Please help!!!

Answers

Answer:

import random

def grid_maker(x, y):

   return [ [str(random.randint(-30, 30)) for _ in range(x)]for _ in range(y) ]

print ('\n'.join(' '.join(row) for row in grid_maker(4, 5)))

Explanation:

We use a template function and we generate numbers between -30 and 30:

>>> [str(random.randint(-30, 30))]

We also use the str() method so we can later concatenate the integers with \n. If you do not specify the integers, it will cause a crash. Also, keep in mind if we use a variable to store the integers, it will come out more of like a seed than a random grid. For instance, output without the random integers in a variable:

-12 16 -18 -3

7 5 7 10

18 -21 -16 29

21 3 -4 10

12 9 6 -9

Vs with a variable:

-25 6 -25 -20

-25 6 -25 -20

-25 6 -25 -20

-25 6 -25 -20

-25 6 -25 -20

Next we specify the  x and the y:

>>> for _ in range(x)]for _ in range(y) ]

Next we just print it and create a new line every time a row is made

hope this helped :D

The program is an illustration of the random module

The program in python, where comments are used to explain each line is as follows:

#This imports the random module

import random

#This is repeated four times (the rows)

for i in range(4):

   #This is repeated five times (the columns)

   for j in range(5):

       #This prints a random number between -30 and 30

       print(random.randint(-30, 30),end = ' ')

   #This prints a new line

   print()

Read more about random modules at:

https://brainly.com/question/13664230

Which of the following will result in a True value?
1. NOT (TRUE AND FALSE) AND TRUE
II. NOT (TRUE AND TRUE) AND TRUE
111. NOT (TRUE AND TRUE) OR TRUE

Answers

Answer:

1. 'NOT(TRUE AND FALSE) AND TRUE'

3. 'NOT (TRUE AND TRUE) OR TRUE'

Explanation:

We can go through each option to find out which statements will result in a 'TRUE' value.

1. 'NOT (TRUE AND FALSE) AND TRUE':

'TRUE AND FALSE' inside the parentheses will result in 'FALSE' since the Boolean operator 'AND' requires both terms to be 'TRUE' for the resulting value to become 'TRUE', otherwise it returns 'FALSE'.

'NOT (TRUE AND FALSE) AND TRUE' now becomes 'NOT FALSE AND TRUE'. The Boolean operator 'NOT' will return the opposite of the term given, so 'NOT FALSE' becomes 'TRUE'. This leaves us with 'TRUE AND TRUE' which returns 'TRUE'.

2. 'NOT (TRUE AND TRUE) AND TRUE':

'TRUE AND TRUE' inside the parentheses will result in 'TRUE', leaving us with 'NOT TRUE AND TRUE'. 'NOT TRUE' will give us 'FALSE', resulting in 'FALSE AND TRUE'. The resulting value of 'FALSE AND TRUE' is 'FALSE'.

3. 'NOT (TRUE AND TRUE) OR TRUE':

Again, 'TRUE AND TRUE' inside the parentheses will result in 'TRUE', leaving us with NOT TRUE OR TRUE'. The Boolean operator 'OR' requires only one term to be 'TRUE' for the resulting value to become 'TRUE'. This means that this statement will return 'TRUE'.

Hope this helps :)

What's the maximum number of ad extensions that can show for a particular query or device at any given time?

Answers

Answer:

Four (4) extensions.

Explanation:

Go-ogle Ads can be defined as a strategic advertising platform designed and developed by Go-ogle for use over the internet. It can be used to display product listings, services and campaigns to any web user over the internet.

Basically, for those who are relatively new to the Go-ogle Ads, the company provides a feature known as the dynamic search ads which helps various users to easily run a successful ad campaign. Through the use of machine learning, a dynamic search ad allows phrases and titles associated with a website to be automatically indexed and presented as a landing page to any user who is searching with the keywords.

The maximum number of ad extensions that can show for a particular query or device at any given time is four (4) extensions. The Go-ogle Ad extension platform is designed to display all the ads simultaneously or co-trigger and as such, the maximum number of ad extensions that are displayed per query or device are four (4).

Gross profit i how much it costs to bring a business products to the costumers true or false

Answers

Answer:

True

Explanation:

heeeeeeeeeelp its timed :(
drag the correct word to the correct place
plllz help

Answers

Answer:

Upward Blue arrow= Lift

Downward Blue arrow= Drag

Upward yellow arrow= Thrust

Downward yellow arrow= Weight

i m not so sure

Which two statements are true about an OS?

A- translates the user’s instructions into binary to get the desired output
B- needs to be compulsorily installed manually after purchasing the hardware
C- is responsible for memory and device management
D- delegates the booting process to other devices
is responsible for system security

Answers

Answer:

A AND C

Explanation:

Answer: C and D

Explanation: correct on Plato - A is not a function of an OS

Which statement allows more than one condition in an If statement? O Else O While O Elif If-then ​

Answers

Answer:

C. Elif

Explanation:

:)

Answer:

Eilf 100000%

Explanation:

i need help, thank you

Answers

Answer:

A

Explanation:

When astronauts aboard the International Space Station (ISS) exhale carbon dioxide (CO2), it's removed from the air and pumped into space.

please mark brainliest :D

here is something cool

Answers

cool beans s s s s s s s s

Answer:

Ok

Explanation:

How is video compression accomplished?
O Video compression works by making the pixel size smaller.
O Video compression works by removing the sound.
O Video compression works by smoothing the pixels.
O Video compression works by removing unnecessary parts of frames.

Answers

Answer:

Video compression works by making the pixels smaller.

Explanation:

I went on a boring website that actually knows about this stuff and found the answer. R I P my brain cells.

Answer:

a

Explanation:

Please help me!!!

Use searching laterally to find more out about obesitymyths.com and if it is credible. Share your findings here.

Answers

Explanation:

I am verry bad at computer science. ...........

Using the search tool, it is discovered that the website is not a credible website.

Why is the website not credible?

This is due to the fact that the domain of the website has been put up for sale. The website does not contain information about what its name suggests.

There is a transfer of ownership waiting to happen. Hence we can conclude that it is not a credible website.

Read more on websites here: https://brainly.com/question/1382377

#SPJ2

Match the database function to its purpose
finds the largest number in a database that
matches conditions
DCOUNT
DMIN
adds the numbers in a field of records in a
database that matches conditions
finds the smallest number in a database that
matches conditions
DAVERAGE
counts the cells that contain numbers in a
database that matches conditions
DMAX
DSUM
averages values in a field of records in a
database that matches conditions
Icy ll

Answers

Answer:

DCOUNT

counts the cells that contain numbers in a database that matches conditions

DMAX

finds the largest number in a database that matches conditions

DMIN

finds the smallest number in a database that matches conditions

DSUM

adds the numbers in a field of records in a database that matches conditions

DAVERAGE

averages values in a field of records in a database that matches conditions

Explanation: I got it right

why did the boy run from the pillow...... wrong answers only

Answers

He thinks there is a demon hiding innit thus, he runs and calls his mom. His mom says "Jimmy there's nothing in that pilow young man!" Jimmy walks back to his room scared if its still there. He hops into bed hoping that he can get a good nights rest. The next day, Jimmy asks if he can go buy another pillow. His mom says "As long as it makes you feel safe then ok." Young Jimmy, jumping in excitement, goes to the checkout zone to buy his new pillow. When they get home, Jimmy and his mom eat dinner and then head for bed. Jimmy hops into bed and knows that everything will be ok. The end.

can some one please help

Answers

Answer:

i will try other questions too

can someone answer me

Answers

Answer:

D. 5,184,000

Explanation:

3000*1728= 5184000

A period in which unemployment is low, business produces many goods and services, and wages are good is called ______.

A. prosperity
B. productivity
C. personal income
D. business cycle

Answers

Answer:

A

Explanation:

Is it still worth it to get Airpods right now?

Answers

Answer:

Well that depends if you're getting them for Christmas.

Explanation:

Also I have Airpods, and in my point of view There kinda hard to keep track of, but maybe that's just me :P

I hope I helped!

3. What is output by the following code?
str1 "awesome"
str2 "leopard";
int i = 3;
int j = str2.length() - 3;
while (i < str1.length() &8 j > 0)
System.out . print (strl.substring(i, i + 1));
System.out.print(str2.substring (j, j + 1);
1++;
j--;
a. saopmoee
b. saompoeel
C.
saerwd
aspoomee
Nothing is printed because there is an out of bounds error
e,

Answers

Answer:

B I think

Explanation:

I WILL MAKE BRAINLIEST PLS HURRY
Give your own examples for how list and dictionary data structures could keep track of some common information you might need. Your examples should be different from the ones in the unit.

Answers

Examples

Lists:

- Keep track of how much water you drink per day

- Hours spent on studying per week

- The growth of a plant

Dictionaries:

- Keep track of overall grades for each subject

- Keep track of where money is mostly spent on

- Dates for upcoming assessments and tests

Hope these examples help :)

-goodLizard is right

--Please make him brainliest

[Thank you]

Can anybody answer this please hurry

Answers

Answer:

Ada Lovelace

The first one!

Hope this helps!

Answer:
A. Ada Lovelace

Explanation:
She created it in the 1840s while Alan Turing created his software in 1935.

oof x oof = ? idk what that is

Answers

Answer:

= 1 off!

Explanation:

1x1

Answer:

Double OOF!!!!!!!!

Explanation:

I dont have one....

PYTON CODERS I NEED HELP I WILL GIVE BRAINLIEST!!! Why is this python code giving me problems?
This is having the user input a decimal number and the code has to round it up to the 2nd decimal place. This code is giving me problems, please fix it.

num3 = int(input("Please input a decimal number:")

num3 = int(round(num3, 2))

print ("your decimal rounded to the 2nd decimal place is:", x)

Answers

Answer:

num3 = float(input('Insert a decimal: '))

num3 = round(num, 2)

print(f"You rounded decimal is: {num3}")

Explanation on why this works:

This block of code resembles a decimal from user input and round it to its nearest 10th. Let me explain the flaws in the original:

>>> num3 = int(input("Please input a decimal number:")

On this line of code you put it as the user input will be transferred to an int when in reality it should be a decimal float so we can round it later in the program. so it should be:

>>> num3 = float(input("Insert a decimal: "))

Second Line of code:

>>> num3 = int(round(num3, 2))

In this case, the int() function is not needed. so just remove and its good.

Lastly you used:

>>> print("your rounded decimal is: ", x)

Which is perfectly fine. Two more ways to output the same thing is by using:

>>> print(f"You rounded decimal is: {num3}")

Or just use the format() string method:

>> print("You rounded decimal is: {0}", num3)

Ivan wants to have code in a game that will make it possible to change the speed of a swimmer in the game. Which of these does Ivan need?

A.
a Boolean value

B.
output

C.
a variable

D.
a database

Answers

A) a Boolean value, because you can have two possible values which is intended to represent the two truth values of logic.

Which phrase best describes a scenario in Excel 2016?


A. a type of what-if analysis that allows a user to define a single variable for a single function or formula

B. a type of what-if analysis that allows a user to define multiple variables for multiple functions or formulas

C. a type of chart analysis that allows a user to predict outcomes using data

D. a type of chart analysis that allows a user to set predetermined outcomes using data

Answers

A phrase which best describes a scenario in Microsoft Excel 2016 is: B. a type of what-if analysis that allows a user to define multiple variables for multiple functions or formulas.

What is Microsoft Excel?

Microsoft Excel simply refers to a software application that is designed and developed by Microsoft Inc., for analyzing and displaying spreadsheet documents, especially by using rows and columns in a tabulated format.

The types of function in Microsoft Excel.

In Microsoft Excel, there are different types of functions which are referred to as "predefined formulas" and these include the following:

Sum functionMaximum functionAverage functionCount functionIF functionMinimum function

In conclusion, Microsoft Excel 2016 is designed and developed by Microsoft Inc., as a type of what-if analysis which avail its end users to use multiple variables in defining multiple functions or formulas.

Read more on Excel function here: https://brainly.com/question/14371857

#SPJ1

Other Questions
2. If you walk at a steady speed of 2.5 mph:How far will you walk in one hour? what are four good thing about europe having a coastline \maybe branleist who has write the letter Please answer this ill give brainliest Sam visits 3 stores to find the best deal for a pair of jeans. Old Navy offers price of S120 for 4 pairs of jeans. Two pairs of jeans sell for S100 at Marshall's. Target sells 3 pairs of jeans at S99. Which store offers the best deal? and A new born baby has 270 bones and an adult has 206 bones. Find the ratio of bones in an adult to that of a new born baby. plz do it all i will give brainlest and thanks to best answer Matt is painting a mural on a 1-square meter section of a wall. He has completed a rectangular part of the mural that is four sixths of a meter wide and two fifths of a meter tall. What part of the mural has been completed? Match the biochemical action with the appropriate hormone: 1) increase in glucose uptake A) glucagon 2) increase in gluconeogenesis B) insulin 3) increase in cAMP levels (muscle) C) epinephrine 4) decrease in lipolysis 5) decrease in glycolysis 6) increase in ketogenesis How did the british benefit from their policy of mercantilsm Hey, I'm in honors math, and I need help with this question. Please help as much as you can PLEASE!!!! What kind of doctor specializes in pregnancy and childbirth? Is the number 17 prime or composite? Select the correct explanation. Prime, because its only factors are 1 and 17 Prime, because its factors are 1, 2, 9, and 17 Composite, because its only factors are 1 and 17 Composite, because its factors are 1, 2, 9, and 17 Do you have to be a high school graduate to vote? Do you have to be free of criminal history to vote? For what angle of incidence at the first mirror will this ray strike the midpoint of the second mirror (which is 28.0 cmcm long) after reflecting from the first mirror What is the equation of the line through (-6,-5) and (-4,-4) in slope-intercept form? I REALLY NEED HELP! I will mark u Brainiest!!!!The data shows the number of years that 30 employees worked for nc insurance company before requirement. _____ is the population mean for the number of years worth, and _____ % of the employees worked for the company for the last 10 years. (round off your answers to the nearest integer.) Guys wouldnt it be racist if a black person calls a white person a cracker? and if not then would it be racist for a white person to call a black person chocolate or something along the lines of that Item 10Read the passage.The Sandia MountainsSurrounding New Mexicos largest city are some of the most majestic and awe-inspiring mountains in the Southwest. The Sandia Mountain range stretches only 17 miles. Its highest point, Sandia Crest, is just over 10,000 feet high. This point is two miles above sea level but only one mile above the city of Albuquerque.The word sandia means watermelon in Spanish. The range received its name because of the deep reds, maroons, and pinks that make up its granite and limestone faces. These colors are especially striking at sunset. The westward face of the range is characterized by its rugged, sheer cliffs and large, rocky outgrowths. The eastward face slopes gradually and is covered in the green of pine and juniper trees.The Sandia Mountains have many different attractions that draw tourists each year. One of these is the Sandia Man cave, first discovered and excavated in the 1930s. During its excavation, human tools and clothing were found, as well as the remains of a prehistoric mastodon. Evidence at the cave site dates human usage between nine and eleven thousand years ago, making this one of the oldest human habitats in North America.Another attraction is the Sandia Peak Tramway. This tram system has two tram cars that run every 15 to 30 minutes. One car ascends the mountain, taking passengers to the top where they disembark. The other descends the mountain, bringing them back down. First opened in 1966, the cars hold a maximum of 55 passengers. During construction of the tram, thousands of helicopter flights lifted cables, workers, and materials to build the two towers to the mountaintop.The total length of the tram system extends nearly three miles. The span that extends from the second tower to the peak is the third longest clear span in the world. A clear span is a "length of cable between supporting towers." The cars travel at a speed of 12 miles per hour and provide passengers with an unimpeded view of the city of Albuquerque, the Rio Grande, and even three extinct volcanoes.Tram passengers are also able to see a wide variety of birds and animals native to the mountains ecosystem. As a passenger on the Sandia Peak Tramway, you might see golden eagles, Stellers jays, ravens, and canyon wrens. You may also glimpse a few land animals like mule deer, black bears, and bobcats.Read this excerpt from "The Sandia Mountains."Surrounding New Mexicos largest city are some of the most majestic and awe-inspiring mountains in all of the Southwest. The Sandia Mountain range stretches only 17 miles. Its highest point, Sandia Crest, is just over 10,000 feet high. This point is two miles above sea level but only one mile above the city of Albuquerque.How does the first sentence in the excerpt develop the idea that the Sandia Mountains create a beautiful and unique landscape?It explains that the Sandia Mountains are located in the Southwest.It suggests that the view from the Sandia Mountains may be quite spectacular.It uses the adjectives majestic and awe-inspiring to describe the mountains.It mentions that the Sandia Mountains surround New Mexico's largest city. For the figure shown on the right, find the value of the variable and the measures of the angles. PLZ HELP suppose you work at a job where your pay varies directly as the number of hours you work. your pay for 7.5 hours is $45. find your pay for working 30 hours? Whoever answers was his right Ill give you a Brainly