Answer:
What is 19 percent (calculated percentage %) of number 50? Answer: 9.5.
Step-by-step explanation:
Answer:
$5500 is the new value of the car.
Step-by-step explanation:
actual value of car=$7700
fraction of value decreased=2/7
so, amount of car's value decreased=
$(2/7)*7700.
=$2*(7700/7)
=$2*1100
=$2200
so, new value of car=$(7700-2200) =$5500
Given expressions:
Area of a rectangle = L W
Area of a triangle = 
Problem;
Create problems using the formula;
Solution:
Problem 1; Find the area of a rectangle whose length is 10cm and the width is half the size of the length?
Given parameters:
Length of rectangle = 10cm
Width of rectangle =
x length =
x 10 = 5cm
So, the area of the rectangle = 10cm x 5cm = 50cm²
2. A triangle with a base length of 30cm and a height of 2cm will have an area of what?
Given parameters:
base length = 30cm
height = 2cm
Solution:
Area of a triangle =
x b x h
Area of a triangle =
x 30 x 2 = 30cm²
The area of the triangle will be 30cm²
Answer:
lst1 = [4, 3, 2, 6, 2]
lst2 = [1, 2, 4]
new_lst = []
for i in lst1:
if i in lst2:
new_lst.append(i)
new_lst.sort()
print(new_lst)
Step-by-step explanation:
The code is written in python.
lst1 = [4, 3, 2, 6, 2]
The variable lst1 represent a list of integers.
lst2 = [1, 2, 4]
The variable lst2 represent a list of integers.
new_lst = []
An empty variable is created new_lst and it is used to store the values of lst1 that is in lst2.
for i in lst1:
The code loop through integers in lst1.
if i in lst2:
This code means if any of the value in lst1 is in lst2.
new_lst.append(i)
This code put the same values found in lst1 and lst2 in a new list(new_lst)
new_lst.sort()
We sort the value of the new list from the smallest to the biggest.
print(new_lst)
The new list is displayed