
Technical Assessment
Quiz by Human Resource
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
25 questions
Show answers
- Q1What is the purpose of the 'self' keyword in Python class methods?To create a new methodTo refer to the instance of the classTo reference a parent classTo define a global variable30s
- Q2What is the output of the following code: print(type([]))?30s
- Q3Which of the following methods can be used to add an item to a list in Python?append()add()insert()extend()30s
- Q4What is the purpose of the 'def' keyword in Python?To define a functionTo create a classTo start a loopTo declare a variable30s
- Q5What does the 'len()' function do in Python?Converts an object to a stringReturns the number of items in an objectCreates a new listDeletes an item from an object30s
- Q6Which function in NumPy is used to create an array of evenly spaced values within a given interval?numpy.linspacenumpy.rangenumpy.arrangenumpy.equal30s
- Q7In NumPy, which function is used to perform element-wise multiplication of two arrays?numpy.dotnumpy.outernumpy.crossnumpy.multiply30s
- Q8What method would you use to reshape a NumPy array without changing its data?numpy.reconfigurenumpy.resizenumpy.reshapenumpy.reform30s
- Q9Which NumPy function is used to find the unique elements of an array?numpy.differentnumpy.uniquenumpy.distinctnumpy.unique_list30s
- Q10Which function in NumPy would you use to calculate the standard deviation of an array?numpy.varnumpy.averagenumpy.stdnumpy.mean30s
- Q11Which SQL statement is used to retrieve data from a database?DELETESELECTINSERTUPDATE30s
- Q12Which SQL command is used to remove all records from a table without deleting the table itself?DROPCLEARTRUNCATEDELETE30s
- Q13What keyword is used to sort the result set of a SQL query?FILTERGROUP BYSORT BYORDER BY30s
- Q14What does the SQL statement 'ALTER TABLE' do?Queries data from a tableCreates a new tableModifies an existing table structureDrops a table30s
- Q15Which SQL clause is used to filter records based on specific conditions?WHERESELECTGROUP BYHAVING30s