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?
Image from Zdeněk Macháček on UnsplashReact
Node.JS
C#
Python
What does HTML stand for?
Image from Karina Vorozheeva on UnsplashHyper Trainer Marking Language
Hyper Text Marketing Language
Hyper Text Markup Language
Hyper Text Markup Leveler
Who is making the Web standards?
Image from Oscar Sutton on UnsplashGoogle
Microsoft
The World Wide Web Consortium
Mozilla
What does CSS Stand for?
Image from Annie Spratt on UnsplashCreative Style Sheets
Computer Style Sheets
Colorful Style Sheets
Cascading Style Sheets
How do you find the minimum of x and y using Javascript
Image from Francesco De Tommaso on Unsplashmin(x,y)
Math.min(x,y)
Math.min(xy)
min(xy)
What will the code return? Boolean(3 < 7)
Image from Lui Peng on Unsplashtrue
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?
Image from Max Baskakov on Unsplashif (x 2)
if(x=2)
if(x == 2)
if(x!=2)