Computer Programming

Computer Programming

Assessment

Quiz

Computers

KG - University

Medium

Used 199+ times

FREE Resource

Student preview

quiz-placeholder

38 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What word is missing from the SQL  line below?
SELECT *
_______ CUSTOMER;
FROM
WHERE
SELECT
ORDER BY

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In SQL, to find the total dollar value of sales, use which one? 
SUM
COUNT
MAX
MIN

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does JavaScript return to you if you try to access a object's property that doesn't exist?
null
undefined
'oopsies!'
0

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Let's say you're storing an object in a variable named 'pumpkin'. Which line of code would add a new property 'eyes' to the object?
pumpkin.push({eyes: 'green'});
pumpkin[eyes] = 'green';
pumpkin.eyes = 'green';
var pumpkin.eyes = 'green'

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these expressions is NOT a valid way to add 1 to a variable in JavaScript?
x++
x += 1
x = x + 1
x+

6.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Media Image
Why are there no quotation marks around the information on line 4?
It is a number.
It is a string.
It is a boolean.
It is an alert.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

CPU stand for  _    processing unit
command
control
central
hogwarts

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?

Discover more resources for Computers