Tampa Devs, 3rd Tech Talk Feb 2 2022

Created by: @vincentntang

This is a Quickz deck.

👁 Public

Tagged as: Quickz!

History:

  • Last updated 2 years ago
  • Created 2 years ago

Played 3 times

Practiced 1 times

Host Practice
View all comments
Which of these is NOT a backend language? Image from Zdeněk Macháček on Unsplash
React
Node.JS
C#
Python
What does HTML stand for? Image from Karina Vorozheeva on Unsplash
Hyper 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 Unsplash
Google
Microsoft
The World Wide Web Consortium
Mozilla
What does CSS Stand for? Image from Annie Spratt on Unsplash
Creative 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 Unsplash
min(x,y)
Math.min(x,y)
Math.min(xy)
min(xy)
What will the code return? Boolean(3 < 7) Image from Lui Peng on Unsplash
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? Image from Max Baskakov on Unsplash
if (x 2)
if(x=2)
if(x == 2)
if(x!=2)