Introduction to Python and Numpy Test
English
Intermediate
In order to tackle the following quiz, you need a deep understanding or the basic understanding of python along its library, numpy Take note that the results and winners will be announced in Tech Tricks Kenya WhatsApp Group. If you have any query DM @VictorOmondi1997 or WhatsApp +254797817059
Description
30
Questions
30 sec
Per question
5:41
Average time
2.0
Contest Score
4.3
Community Rating
39
Participants
7 comments
Dandy Otter judge
Thank you for taking the effort to submit your Quiz for the contest. Unfortunately, this Quiz will not be able to receive a prize:

Too many missing explanations. More than 10 explanations simply repeat the correct answer. E.g. #q6 #q7 #q8 #q9 #q11 #q12 etc
Cool Bear
I really liked the fact that there was a use of images to write out the code and then ask questions about the result of the code. This is the best method/format as it is familiar to anyone who has code in Python. I found that there are questions that you could've used images but instead used text. For the time allocated to those question is not enough to answer as you have to understand them first before you can answer.
Modest Llama author
Cool, I'll adjust. Thanks for commenting.
Small Lizard
How do you start writing a while loop in Python?
Your answer is "while x >y:", but "while (x > y)" is also correct: you can start with "while (x > y)", then write ":" and then body of this loop.
Small Lizard
Which operator is right-associative
Your answer is "=" but it doesn't have associativity
My explanation:
This expression is correct: a=b=1
But we can't add brackets to it: (a=b)=1or a=(b=1)
So there is no correct answer in this question
Small Lizard
Suppose we have two sets A & B, then A<B is: ...
Explanation: "... B contains at least one element that is not in B". Typo: the last letter must be "A".
Small Lizard
' ' in 'python'
Your answer is True, but correct answer is False, because string 'python' doesn't contain space: https://ideone.com/2s24Ux
Take the quiz to leave a comment