This method converts all characters in a string to lowercase.
What is .lower()
This regex pattern matches any digit.
What is \d?
The result of 5 // 2
What is 8?
JavaScript runs primarily in this environment on the client side.
What is the browser?
Python uses this keyword to define a function.
What is def?
This method removes whitespace from both the beginning and end of a string.
What is .strip()?
This function returns the first match in a string.
What is re.search()?
The result of 10 % 3
What is 1?
What is the output?
What is true?
This data type stores key-value pairs.
What is a dictionary?
What is the output?
What is "fedcba"?
What does this pattern match?
^[^aeiou]+$
What is a string containing only consonants (no vowels) from start to end?
What is the result?
What is 9?
What is the output?
What is a ReferenceError?
What is the output?
What is 4?
What is the output?
What is ['one', 'two', '', 'three']?
What is the output?
What is "Python-is-fun"?
What is the output?
What is 6.0?
(4.0 + 2)
What is the output?
What is "object"?
What is the output?
first print [1]
second print [1,1]
What is the output?
What is "MiXissippi"?
What does this regex validate?
^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$
What is a valid email address format?
What is the result?
What is 6?
(2 + 4)
What is the output?
What is "number" ?
What is the output?
What is 8?