Feel free to use or edit a copy
includes Teacher and Student dashboards
Measures 1 skill from
Measures 1 skill from
Track each student's skills and progress in your Mastery dashboards
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
10 questions
Show answers
- Q1Identify the correct relational operation for the operator "=="?Less thanEqual toAssignmentDoes not equal45s3.2.4
- Q2Identify the correct relational operation for the operator ">="?Does not equalLess than or equal toGreater than or equal toEqual to45s3.2.4
- Q3Identify the correct relational operation for the operator "<"?Does not equalLess thanLess than or equal toGreater than45s3.2.4
- Q4Identify the correct relational operation for the operator "!="?Does not equalEqual toLesson thanGreater than45s3.2.4
- Q5Which is the correct line of code to check if the password is at least 8 characters?IF LEN(Password) <= 8 THENIF LEN(Password) != 8 THENIF LEN(Password) >= 8 THENIF LEN(Password) == 8 THEN45s3.2.4
- Q6Explain why this statement will return TRUE or FALSE: "IF 5 > 6"?5 is not equal to 6 and it will return FALSE.5 is not more than 6 and it will return FALSE.5 is equal to 6 and it will return TRUE .5 is less than 6 and it will return TRUE.45s3.2.4
- Q7What is the purpose of this code?To check the username is the same as the password to create an accountTo check the password is at least 8 charactersTo check whether the password is different to the username so that it can create an accountTo check if the password contains a capital letter45s3.2.4
- Q8Why will this statement will return TRUE or FALSE: "IF 100 <= 305"?This will return TRUE because 100 is less than 305This will return FALSE because 100 does not equal 305This will return TRUE because 100 equals 305This will return FALSE because 100 is more than 30545s3.2.4
- Q9Why this program would not issue fines to everyone going at a speed of 73 or over?You need to use >= to check whether it's more than or equal to 73You need to use > to check whether it's more than 73You need to use != to check whether it's not equal to 73You need to use <= to check whether it's less than or equal to 7345s3.2.4
- Q10What is correct line of code for this program to check if the students passed or not. The pass mark is 40 or higher?IF mark >= 40IF mark <> 40IF mark == 40IF mark <= 4045s3.2.4
