InterviewSolution
Saved Bookmarks
| 1. |
Which of the following sets the size of the buffer used in ufuncs?(a) bufsize(size)(b) setsize(size)(c) setbufsize(size)(d) all of the mentionedI got this question in a national level competition.Origin of the question is NumPy topic in portion Developing Data Products and Working with NumPy of Data Science |
|
Answer» CORRECT option is (C) setbufsize(size) Explanation: Adjusting the size of the BUFFER may therefore alter the speed at which ufunc calculations of various sorts are COMPLETED. |
|