80% of the Pollution to the Marine Enviroment comes from Land.
Answer:
The answer for B is 10% and for C is 40%.
Explanation:
To get the percentage for B you take the the frequecy of students taking 2 courses (5) and multiply it by 100 then you divide it by whole number of students.
For C you do the after adding the number of students taking 1 or 2 courses (20).
Class newprog
{
public static void main()
{
System.out.println("Hello world");
}
}
Answer:
- def getLargest(number_list):
- new_list = []
-
- for x in number_list:
- if(isinstance(x, int)):
- new_list.append(x)
-
- largest = max(new_list)
-
- return largest
Explanation:
Firstly, create a function <em>getLargest()</em> that take one input parameter, <em>number_list</em>.
The function will filter out the float type number from the list by using <em>isinstance() </em>method (Line 5). This method will check if a current x value is an integer. If so, the x value will be added to <em>new_list</em>.
Next, use Python built-in <em>max</em> function to get the largest integer from the <em>new_list </em>and return it as output.
Answer:
You are probably blocked from that website or your schools program blocks that website from your device
Explanation: