how many possible ways are there to arrange a deck of card in scientific notation, and what expression could you use to shorten it
8.0658175x1067, or 52!pronounced "fifty-two factorial"
what is the easiest coding language to learn according to the general consensus
python (or javascript)
50%
what is supreventricular tachycardia (svt)
a condition whenever someone has 150-270 bpm in their heart
does sqrt(-1) have a possible answer? if so, what is it
yes, i
what is 18+ 1/2+ 1/4+1/8+1/16, etc
19
what will print(0.1+0.2) output?
0.30000000000000004
Called "catch-22", give an example of this paradox of needing A to get B, but only getting A if you already have B
besides the nobel prize, what was alfred nobel also know for
hint: "merchant of death"
what is 4.99999....... rounded to the nearest ten (american)
10
what is 453 in base 36 where a-z are 11-36
cl/CL
what programming language needs a semicolon (;) at the end of every line
Java, c+, C#, C++, c2
a company claims a 1% chance of slight injury after taking their product. suddenly the chance raises by 50%. what is the new percentage of slight injury?
1.5%
this mineral caused 4,300-7,000 deaths after the collapse of the world trade center, being inhaled by many and causing lung cancer
asbestos
....999999.0+5=
4
what are mersenne primes
a prime number that is 1 less than a power of 2
22-1=3 (prime)
in python, what does "print(string.strip("a"))" do to the string "amazing zebra"?
it will print "mazing zebr"
"The Friendship Paradox" why (on average) do your friends have more friends than you?
since they have more friends, it is more likely that you become thier friend, as opposed to someone having only 1 friend, with you being their only friend
what is the element symbol and the type of element (metals, metaloids, non-metals) of tantalum
Ta, Metal
is 1369 a perfect square? if so what is the square root of it
37
what is G64 and how do you calculate to it
3^3=27,
3^^3=3^3^3 (approx. 7 trillion),
3^^^3= 3^3^3... 7 trillion times
3^^^^3= 3^3... 3^^^3 times (G1)
G2= 3^3... G1 amount of times
G3= 3^3... G2 amount of times, etc until G64
what is the best way to compute fibonaci numbers in python
var1=1
var2=0
while 1==1:
var3=var1+var2
print(var3)
var2=var1
var1=var3
what is the name of this geometric paradox where you can cut a sphere into many pieces and rearange them into 2 exact copies of the same sphere
the banach-tarski paradox
why is cocoa powder hydrophobic
the cocoa butter is fat, making it resist water
what is a 2d complex cartesian plane?
the x axis contains all real numbers and the y axis has imaginary numbers (i and -i)