
Technical Assessment_Delta IND
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
40 questions
Show answers
- Q1Which MATLAB function is used to create a vector of equally spaced values?randmeshgridreshapelinspace30s
- Q2What command is used to display all variables in the current workspace in MATLAB?showdisplaywholist30s
- Q3Which of the following is the correct way to create a 2D matrix in MATLAB?A = {1, 2; 3, 4}A = (1 2; 3 4)A = [1 2 3 4]A = [1, 2; 3, 4]30s
- Q4Which function in MATLAB is used to calculate the eigenvalues and eigenvectors of a square matrix?diaginveigdet30s
- Q5Which command is used to compute the standard deviation of an array in MATLAB?meanmaxvarstd30s
- Q6Which SQL clause is used to filter records?ORDER BYGROUP BYHAVINGWHERE30s
- Q7What keyword is used to delete a table in SQL?CLEARDELETEDROPREMOVE30s
- Q8Which SQL command is used to update existing records in a table?EDITCHANGEUPDATEALTER30s
- Q9Which SQL function is used to count the number of rows in a query?ADD()COUNT()TOTAL()SUM()30s
- Q10What is the purpose of the JOIN clause in SQL?To create a new table from existing tablesTo combine rows from two or more tables based on a related columnTo filter rows from a single tableTo sort results in a specific order30s
- Q11Which SQL keyword is used to create a new table in a database?MAKEADDINITIATECREATE30s
- Q12What command is used to retrieve data from a database in SQL?GETFINDDISPLAYSELECT30s
- Q13What SQL keyword is used to define a primary key in a table?FOREIGN KEYINDEXUNIQUEPRIMARY KEY30s
- Q14Which clause is used to sort the result-set in SQL?SORT BYORDER BYFILTER BYARRANGE BY30s
- Q15What is the purpose of the GROUP BY clause in SQL?To limit the number of rows returnedTo arrange identical data into groupsTo order the results of a queryTo filter data based on conditions30s