Tampa Devs, 3rd Tech Talk Feb 2 2022
Created by: @vincentntang
This is a Quickz deck.
👁 Public
Tagged as: Quickz!
History:
- Last updated 3 years ago
- Created 3 years ago
Played 3 times
Practiced 1 times
Host Practice View all commentsWhich of these is NOT a backend language?
React
Node.JS
C#
Python
What does HTML stand for?
Hyper Trainer Marking Language
Hyper Text Marketing Language
Hyper Text Markup Language
Hyper Text Markup Leveler
Who is making the Web standards?
Google
Microsoft
The World Wide Web Consortium
Mozilla
What does CSS Stand for?
Creative Style Sheets
Computer Style Sheets
Colorful Style Sheets
Cascading Style Sheets
How do you find the minimum of x and y using Javascript
min(x,y)
Math.min(x,y)
Math.min(xy)
min(xy)
What will the code return? Boolean(3 < 7)
true
false
NaN
SyntaxError
since 3<7 is a truthy statement, it evaluates to true
Which are the correct “if” statements to execute certain code if “x” is equal to 2?
if (x 2)
if(x=2)
if(x == 2)
if(x!=2)