All of the statements below about chemical bonding are correct except one. Which statement is false?
Blog
An unknown metal has a density of [d] g/mL. Consider a [V] m…
An unknown metal has a density of [d] g/mL. Consider a [V] mL sample of this metal. What is its mass in kilograms? Note: Do NOT include any unit symbols in your answer.
Decreasing the frequency of a source of electromagnetic radi…
Decreasing the frequency of a source of electromagnetic radiation will _______ its wavelength and _______ its energy.
In which case does a dashed line correctly indicate a hydrog…
In which case does a dashed line correctly indicate a hydrogen bond between adjacent molecules?
You dissolve [a] g of ThCl4 in water to make [b] mL of solut…
You dissolve [a] g of ThCl4 in water to make [b] mL of solution. What is the molarity of ThCl4 in this solution? Hint: Th is thorium, element #90. Note: Do NOT include any unit symbols in your answer.
How many protons, neutrons, and electrons are present in a n…
How many protons, neutrons, and electrons are present in a neutral copper-65 (65Cu) atom?
What is the output of the following program: x = 18 if x % 2…
What is the output of the following program: x = 18 if x % 2 == 0: print(“x is even'”) else: print(‘x is odd”)
What does the following code print out? def thing(): print(‘…
What does the following code print out? def thing(): print(‘Hey’) print(‘you!’)
Write a Python program that acts as a simple math quiz. Your…
Write a Python program that acts as a simple math quiz. Your program should: Continuously ask the user a single math question: “What is 7 + 3?”. Allow the user to input their answer. Check if the input is a valid number. If not, print an “Invalid input” message and let them try again. If the input is a valid number, compare it to the correct answer. If the answer is correct, print a “Correct!” message, and the program should then exit. If the answer is incorrect, print an “Incorrect” message and ask the question again. Your program should be able to complete this in 17 lines of code or fewer. However, if you go over, no points will be deducted. You do not need to use functions unless you want to. Sample Run: Plaintext Welcome to the Math Challenge! What is 7 + 3? Your answer: five Invalid input. Please enter a number. What is 7 + 3? Your answer: 9 Incorrect. Try again. What is 7 + 3? Your answer: 10 Correct! Well done!
Write a program, that asks for a radius and then will calcu…
Write a program, that asks for a radius and then will calculate the diameter, circumference, and area of a circle. Diameter = 2r Circumference = 2πr Area = πr2 Your program should not crash. Your program should loop until a zero value for the radius is entered.