What would be the answer of this cummulative summation in NumPy?
arr = np.array([1,2,3])
print(np.cumsum(arr))
Python - Numpy Quiz 3
Quiz
•
Computers
•
University - Professional Development
•
Medium
Max Diender
Used 16+ times
FREE Resource
5 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What would be the answer of this cummulative summation in NumPy?
arr = np.array([1,2,3])
print(np.cumsum(arr))
[1 3 6]
[6]
[3 6 9]
[9]
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is a correct syntax to subtract the numbers from arr1 with the numbers from arr2?
np.substract(arr1, arr2)
np.min(arr1, arr2)
np.sub(arr1, arr2)
np.minus(arr1, arr2)
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is a correct method to round decimals in NumPy?
np.around()
np.trunc()
All the other 3 are rounding methods in NumPy
np.fix()
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is the correct method for getting the Natural Logarithm (Logarithm at base e)?
arr = np.arange(1, 10)
np.log(arr)
np.loge(arr)
np.natural(arr)
np.ln(arr)
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is the result of the following syntax?
arr = np.array([100, 200, 50, 75])
newarr = np.diff(arr)
print(newarr)
[100 -150 25]
[-100 150 -25]
[100 25]
-100 -25]
10 questions
PYTHON_CHAPTER 1
Quiz
•
University
10 questions
Array in C
Quiz
•
University
10 questions
PYTHON NUMPY
Quiz
•
Professional Development
10 questions
Java Module 1 Quiz
Quiz
•
University
6 questions
Методы+Массивы
Quiz
•
8th Grade - University
10 questions
Quiz 12
Quiz
•
University
10 questions
Reshaping & vStack&hstack( )
Quiz
•
9th Grade - University
10 questions
C - Programming ( Output based - Loop )
Quiz
•
Professional Development
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade