Are any Platonic solids prisms? If so, which one(s) Name the prims and explain why it is a prism.
Are any platonic solids pyramids? If so which one(s) ?name the pyramid and explain it is a pyramid?
Illustrate the steps each time on the number line where you will explain to a grade 6 class how numbers can be negative and positive.
use the case of Mpho who has R5 and she buys a packet of chips for R8 at the tuck shop . the next day she brings R10 to the tuck shop and buys a lolly for R2 .Show how her money goes up and down and where she ends up.
Draw Dienes block to show how to find the solution to:
a) 78 + 56
b) 102 − 45
If 28 counter are a whole set, how many are there in fifth seventh set
(a) Where in the world do we find evidence that people measured things? (1)
(b) Approximately to what year does this evidence date back? (1)
(c) Give detail of how measuring was done in that time. (2)
(d) Where in CAPS is this type of measurement covered as a topic
Where in CAPS is this type of geometry covered as a topic?
Obesity is a risk factor for Type 2 diabetes. Mr M was recommended to have an Oral glucose tolerance test
Q4. Briefly describe how this test can be used to check whether Mr M is in the
early stages of the disease. Your answer should include the underlying biochemical
principles behind the test.
The average number of yearly accident at a traffic intersection is 5. Find the probability that there are exactly three accidents at the same intersection this year.
You are given an array of numbers as input: [10,20,10,40,50,45,30,70,5,20,45] and a target value: 50. You are required to find pairs of elements (indices of two numbers) from the given array whose sum equals a specific target number. Your solution should not use the same element twice, thus it must be a single solution for each input
1.1 Write a Python class that defines a function to find pairs which takes 2 parameters (input array and target value) and returns a list of pairs whose sum is equal to target given above. You are required to print the list of pairs and state how many pairs if found. Your solution should call the function to find pairs, then return a list of pairs.
1.2 Given the input array nums in 1.1 above. Write a second program to find a set of good pairs from that input array nums. Here a pair (i,j) is said to be a good pair if nums[i] is the same as nums[j] and i < j. You are required to display an array of good pairs indices and the number of good pairs.