#sir-lancebot-playground

1 messages · Page 13 of 1

wicked parrotBOT
#
Command Help

**```
.avatar_modify

**Can also use:** `avatar_mod`, `avatarmod`, `pfp_mod`, `pfpmod`

*Groups all of the pfp modifying commands to allow a single concurrency limit.*

**Subcommands:**
**`avatar_modify 8bitify `**
*Pixelates your avatar and changes the palette to an 8bit one.*
**`avatar_modify avatareasterify [colours...]`**
*This "Easterifies" the user's avatar.*
**`avatar_modify mosaic [squares=16]`**
*Splits your avatar into x squares, randomizes them and stitches them back into a new image!*
**`avatar_modify prideavatar [option=lgbt] [pixels=64]`**
*This surrounds an avatar with a border of a specified LGBT flag.*
**`avatar_modify reverse <text>`**
*Reverses the sent text.*
**`avatar_modify spookyavatar `**
*Spookify a user's avatar.*
bleak trail
#

.avatar_modify spookyavatar

wicked parrotBOT
#
Is this you or am I just really paranoid?
bleak trail
#

.avatar_modify avatareasterify green, lime

wicked parrotBOT
#
Your Lovely Easterified Avatar!

Here is your lovely avatar, all bright and colourful
with Easter pastel colours. Enjoy :D

main scarab
#

.avatar_modify 8bitify

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

ancient sandal
#

.pfpmod 8bitify

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

hazy crescent
#

!voiceverify

molten bone
#

.anagram

wicked parrotBOT
#
Find anagrams from these letters: 'EEKSS'

You have 60 seconds to find correct words.

molten bone
#

seeks

#

SEEKS

#

SKEES

#

ESKES

wicked parrotBOT
#

Well done @molten bone for getting it right!

The words were: `kesse`, `seeks`, `skees`!
molten bone
#

.pfpmod 8bitify

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

molten bone
#

.pfpmod 64bitify

#

.pfpmod 8bitify

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

safe dust
#

.uwu hello

wicked parrotBOT
#

hewwo

safe dust
#

.uwu abcdefghijklmnopqrstuvwxyz

wicked parrotBOT
#

abcdefghijkwmnyopqwstuvwxyz

rain fjord
#

not

#

!voiceverify

tardy fox
#

!voiceverify

wet seal
#

.avatar_modify 8bitify

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

wet seal
#

.avatar_modify 64bitify

normal flame
#

.help bm

wicked parrotBOT
#
Command Help

**```
.bookmark <target_message> [title=Bookmark]

**Can also use:** `bm`, `pin`

*Send the author a link to the specified message via DMs.

Members can either give a message as an argument, or reply to a message.

Bookmarks can subsequently be deleted by using the `bookmark delete` command in DMs.*

**Subcommands:**
**`bookmark delete `**
*Delete the Sir-Lancebot message that the command invocation is replying to.*
foggy zodiac
#

.help bm

wet hound
#

.avatar_modify 8bitify

wicked parrotBOT
#
Your 8-bit avatar

Here is your avatar. I think it looks all cool and 'retro'.

wet hound
#

.anagram

wicked parrotBOT
#
Find anagrams from these letters: 'GINORTU'

You have 60 seconds to find correct words.

#

Nobody got it right.

The words were: `outgrin`, `outring`, `routing`, `touring`!
wet hound
#

.anagram

wicked parrotBOT
#
Find anagrams from these letters: 'COPRS'

You have 60 seconds to find correct words.

#

Nobody got it right.

The words were: `corps`, `crops`!
wet hound
#

.anagram

wicked parrotBOT
#
Find anagrams from these letters: 'ADINORTU'

You have 60 seconds to find correct words.

#

Nobody got it right.

The words were: `duration`, `unadroit`!
wet hound
#

.anagram

wicked parrotBOT
#
Find anagrams from these letters: 'ACDEIIPRT'

You have 60 seconds to find correct words.

#

Nobody got it right.

The words were: `dipicrate`, `patricide`, `pediatric`!
eternal folio
#

!list

rough gladeBOT
#

Do you ever find yourself writing something like this?

>>> squares = []
>>> for n in range(5):
...    squares.append(n ** 2)
[0, 1, 4, 9, 16]

Using list comprehensions can make this both shorter and more readable. As a list comprehension, the same code would look like this:

>>> [n ** 2 for n in range(5)]
[0, 1, 4, 9, 16]

List comprehensions also get an if clause:

>>> [n ** 2 for n in range(5) if n % 2 == 0]
[0, 4, 16]

For more info, see this pythonforbeginners.com post.

eternal folio
#

!d dict.items

rough gladeBOT
#

items()```
Return a new view of the dictionary’s items (`(key, value)` pairs). See the [documentation of view objects](https://docs.python.org/3/library/stdtypes.html#dict-views).
eternal folio
#

!list.append

#

!d list.sort

rough gladeBOT
#

sort(*, key=None, reverse=False)```
This method sorts the list in place, using only `<` comparisons between items. Exceptions are not suppressed - if any comparison operations fail, the entire sort operation will fail (and the list will likely be left in a partially modified state).

[`sort()`](https://docs.python.org/3/library/stdtypes.html#list.sort "list.sort") accepts two arguments that can only be passed by keyword ([keyword-only arguments](https://docs.python.org/3/glossary.html#keyword-only-parameter)):

*key* specifies a function of one argument that is used to extract a comparison key from each list element (for example, `key=str.lower`). The key corresponding to each item in the list is calculated once and then used for the entire sorting process. The default value of `None` means that list items are sorted directly without calculating a separate key value.
eternal folio
#

!d typesseq-mutable

rough gladeBOT
#

Mutable Sequence Types

The operations in the following table are defined on mutable sequence types. The collections.abc.MutableSequence ABC is provided to make it easier to correctly implement these operations on custom sequence types.

In the table s is an instance of a mutable sequence type, t is any iterable object and x is an arbitrary object that meets any type and value restrictions imposed by s (for example, bytearray only accepts integers that meet the value restriction 0 <= x <= 255).

quasi hound
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

Which theorem states that hypotenuse^2 = base^2 + height^2?

quasi hound
#

pythagorean

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`Pythagorean's, Pythagorean's theorem`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 100

#
Question #2

What is the formula for surface area of a sphere?

#

20s left!

#

10s left!

quasi hound
#

πr^3

wicked parrotBOT
#

No one answered correctly!

#
The correct answers are **`4pir^2, 4πr^2`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 100

#
Question #3

How many quadrants are there in a cartesian plane?

#

20s left!

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 175

#
Question #4

As the Fibonacci sequence extends to infinity, what's the ratio of each number n and its preceding number n-1 approaching?

#

20s left!

#

10s left!

quasi hound
#

3/2

wicked parrotBOT
#

No one answered correctly!

#
The correct answer is **`Golden Ratio`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 175

#
Question #5

In statistics, what does this formula represent?

#

20s left!

quasi hound
#

uncertainty

wicked parrotBOT
#

10s left!

quasi hound
#

average

wicked parrotBOT
#

No one answered correctly!

#
The correct answers are **`sample standard deviation, standard deviation of a sample`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 175

#
Question #6

What is the bottom number on a fraction called?

quasi hound
#

denominator

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`denominator`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 275

#
Question #7

BASE TWO QUESTION: Calculate 10011 - 10000

#

20s left!

quasi hound
#

11

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`11`**

Remaining questions: 0

#
Score Board

raxdius#1095: 350

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 350 points :tada:

quasi hound
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

What is the formula for surface area of a sphere?

quasi hound
#

4πr²

wicked parrotBOT
#

20s left!

quasi hound
#

4πr^2

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`4pir^2, 4πr^2`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 75

#
Question #2

What is the bottom number on a fraction called?

quasi hound
#

denominator

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`denominator`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 175

#
Question #3

How many vertices are on a nonagonal prism?

#

20s left!

quasi hound
#

2

#

4

wicked parrotBOT
#

10s left!

quasi hound
#

3

#

1

#

0

wicked parrotBOT
#

No one answered correctly!

#
The correct answer is **`18`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 175

#
Question #4

When is the inaugural World Maths Day (format your answer in MM/DD)?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`03/13`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 175

#
Question #5

What's 107 + 306 mod 12 congruent to?

#

20s left!

#

10s left!

#

No one answered correctly!

#
The correct answer is **`5`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 175

#
Question #6

"Hexakosioihexekontahexaphobia" is the fear of which number?

#

20s left!

quasi hound
#

666

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`666`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 250

#
Question #7

What's the following formula that finds the area of a triangle called?

#

20s left!

quasi hound
#

heron

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`Heron's formula, Heron`**

Remaining questions: 0

#
Score Board

raxdius#1095: 325

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 325 points :tada:

quasi hound
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

"Hexakosioihexekontahexaphobia" is the fear of which number?

#

20s left!

quasi hound
#

666

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`666`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 75

#
Question #2

What is the bottom number on a fraction called?

quasi hound
#

denominator

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`denominator`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 175

#
Question #3

How many quadrants are there in a cartesian plane?

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 275

#
Question #4

What is the highest power of a biquadratic polynomial?

#

20s left!

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 350

quasi hound
#

2

wicked parrotBOT
#
Question #5

Find the square root of -81.

quasi hound
#

9i

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`9i`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 450

#
Question #6

In set builder notation, what does {p/q | q ≠ 0, p & q ∈ Z} represent?

#

20s left!

quasi hound
#

1

wicked parrotBOT
#

10s left!

quasi hound
#

fraction

wicked parrotBOT
#

No one answered correctly!

#
The correct answers are **`Rationals, Rational Numbers`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 450

#
Question #7

Prime numbers only have __ factors.

quasi hound
#

2

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`2, two`**

Remaining questions: 0

#
Score Board

raxdius#1095: 550

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 550 points :tada:

quasi hound
#

.quiz physics

wicked parrotBOT
#
The available question categories are:

- General
Test your general knowledge.
- Retro
Questions related to retro gaming.
- Math
General questions about mathematics ranging from grade 8 to grade 12.
- Science
Put your understanding of science to the test!
- Cs
A large variety of computer science questions.
- Python
Trivia on our amazing language, python!
- Wikipedia
Guess the title of random wikipedia passages.

quasi hound
#

.quiz science

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : science

#
Question #1

The type of rock that is formed by the accumulation or deposition of mineral or organic particles at the Earth's surface, followed by cementation, is called...

#

20s left!

#

10s left!

quasi hound
#

sendimrnt

wicked parrotBOT
#

No one answered correctly!

#
The correct answers are **`sedimentary, sedimentary rock`**

Let's move to the next question.
Remaining questions: 6

quasi hound
#

sendiment

wicked parrotBOT
#

No one has made it onto the leaderboard yet.

#
Question #2

Which cell organelle is nicknamed "the powerhouse of the cell"?

quasi hound
#

mitochondria

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`mitochondria`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 100

#
Question #3

What is the process used to separate substances with different polarity in a mixture, using a stationary and mobile phase?

#

20s left!

quasi hound
#

decomposition

wicked parrotBOT
#

10s left!

#

No one answered correctly!

#
The correct answer is **`chromatography`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 100

#
Question #4

As of 2021, how many elements are there in the Periodic Table?

quasi hound
#

50

wicked parrotBOT
#

20s left!

quasi hound
#

44

wicked parrotBOT
#

10s left!

quasi hound
#

118

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 50 points!

#
You got it! The correct answer is **`118`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 150

#
Question #5

How does one describe a chemical reaction wherein heat is released?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`exothermic`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 150

#
Question #6

What is the force that causes objects to float in fluids called?

#

20s left!

#

10s left!

quasi hound
#

buoyant force

#

buoyant

wicked parrotBOT
#

No one answered correctly!

#
The correct answer is **`buoyancy`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 150

#
Question #7

Which law states that the current through a conductor between two points is directly proportional to the voltage across the two points?

#

20s left!

#

10s left!

quasi hound
#

ohm

wicked parrotBOT
#

Better luck next time...

#
The correct answer is **`Ohm's law`**

Remaining questions: 0

#
Score Board

raxdius#1095: 150

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 150 points :tada:

quasi hound
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

How many quadrants are there in a cartesian plane?

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 100

#
Question #2

What's 168 + 286 mod 14 congruent to?

#

20s left!

quasi hound
#

2

#

3

wicked parrotBOT
#

10s left!

quasi hound
#

1

#

6

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 50 points!

#
You got it! The correct answer is **`6`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 150

#
Question #3

Does the harmonic series converge or diverge?

#

20s left!

quasi hound
#

diverge

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`diverge`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 225

#
Question #4

Which trigonometric function is defined as hypotenuse/opposite?

quasi hound
#

cosine

wicked parrotBOT
#

20s left!

quasi hound
#

sine

#

tangent

wicked parrotBOT
#

10s left!

quasi hound
#

arcsin

wicked parrotBOT
#

Better luck next time...

#
The correct answers are **`cosecant, cosec, csc`**

Let's move to the next question.
Remaining questions: 3

quasi hound
#

cos

wicked parrotBOT
#
Score Board

raxdius#1095: 225

#
Question #5

Find the square root of -36.

quasi hound
#

6i

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`6i`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 325

#
Question #6

What is the formula for surface area of a sphere?

quasi hound
#

4pir^2

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4pir^2, 4πr^2`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 425

#
Question #7

What is this triangle called?

quasi hound
#

pascal's triangle

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`Pascal's triangle, Pascal`**

Remaining questions: 0

#
Score Board

raxdius#1095: 525

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 525 points :tada:

quasi hound
#

.quiz science

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : science

#
Question #1

How does one call the direct phase transition from gas to solid?

#

20s left!

quasi hound
#

sublimate

wicked parrotBOT
#

10s left!

#

No one answered correctly!

#
The correct answer is **`deposition`**

Let's move to the next question.
Remaining questions: 6

#

No one has made it onto the leaderboard yet.

#
Question #2

What is the process by which green plants and certain other organisms transform light energy into chemical energy?

#

20s left!

quasi hound
#

photosyntesis

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`photosynthesis`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 75

#
Question #3

Which law states that the current through a conductor between two points is directly proportional to the voltage across the two points?

quasi hound
#

ohms law

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`Ohm's law`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 175

#
Question #4

When DNA is unzipped, two strands are formed. What are they called (separate both answers by the word "and")?

#

20s left!

quasi hound
#

dna and rna

wicked parrotBOT
#

10s left!

quasi hound
#

rna and dna

wicked parrotBOT
#

Better luck next time...

#
The correct answers are **`leading and lagging, leading strand and lagging strand`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 175

#
Question #5

What is the intermolecular force caused by temporary and induced dipoles?

#

20s left!

#

10s left!

#

No one answered correctly!

#
The correct answers are **`LDF, London dispersion, London dispersion force`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 175

#
Question #6

What is the force that causes objects to float in fluids called?

#

20s left!

#

10s left!

quasi hound
#

buoyancy

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 50 points!

#
You got it! The correct answer is **`buoyancy`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 225

#
Question #7

As of 2021, how many elements are there in the Periodic Table?

quasi hound
#

118

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`118`**

Remaining questions: 0

#
Score Board

raxdius#1095: 325

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 325 points :tada:

golden leaf
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

What is the only number in the entire number system which can be spelled with the same number of letters as itself?

#

20s left!

golden leaf
#

four

#

4

wicked parrotBOT
#

@golden leaf got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

mikebot#8109: 75

#
Question #2

What is the bottom number on a fraction called?

golden leaf
#

denominator

wicked parrotBOT
#

@golden leaf got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`denominator`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

mikebot#8109: 175

golden leaf
#

ez

wicked parrotBOT
#
Question #3

Prime numbers only have __ factors.

golden leaf
#

2

wicked parrotBOT
#

@golden leaf got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`2, two`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

mikebot#8109: 275

#
Question #4

When is the inaugural World Maths Day (format your answer in MM/DD)?

#

20s left!

golden leaf
#

idk

wicked parrotBOT
#

10s left!

#

No one answered correctly!

#
The correct answer is **`03/13`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

mikebot#8109: 275

#
Question #5

What's the following formula that finds the area of a triangle called?

#

20s left!

#

10s left!

golden leaf
#

bh/2

wicked parrotBOT
#

No one answered correctly!

#
The correct answers are **`Heron's formula, Heron`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

mikebot#8109: 275

#
Question #6

In set builder notation, what does {p/q | q ≠ 0, p & q ∈ Z} represent?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answers are **`Rationals, Rational Numbers`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

mikebot#8109: 275

#
Question #7

0, 1, 1, 2, 3, 5, 8, 13, 21, 34 are numbers of which sequence?

#

20s left!

golden leaf
#

fibonacci sequence

wicked parrotBOT
#

10s left!

golden leaf
#

fibonacci

wicked parrotBOT
#

@golden leaf got the correct answer :tada: 50 points!

#
You got it! The correct answer is **`Fibonacci`**

Remaining questions: 0

#
Score Board

mikebot#8109: 325

#

The round has ended.

#

@golden leaf Congratulations on winning this quiz game with a grand total of 325 points :tada:

edgy osprey
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

In statistics, what does this formula represent?

edgy osprey
#

speed

wicked parrotBOT
#

20s left!

edgy osprey
#

velocity

wicked parrotBOT
#

10s left!

#

Better luck next time...

#
The correct answers are **`sample standard deviation, standard deviation of a sample`**

Let's move to the next question.
Remaining questions: 6

#

No one has made it onto the leaderboard yet.

#
Question #2

What's the following formula that finds the area of a triangle called?

#

20s left!

edgy osprey
#

triangulation

wicked parrotBOT
#

10s left!

#

Better luck next time...

#
The correct answers are **`Heron's formula, Heron`**

Let's move to the next question.
Remaining questions: 5

#

No one has made it onto the leaderboard yet.

#
Question #3

What is the formula for surface area of a sphere?

edgy osprey
#

pi

wicked parrotBOT
#

20s left!

edgy osprey
#

idk bro

wicked parrotBOT
#

10s left!

#

Better luck next time...

#
The correct answers are **`4pir^2, 4πr^2`**

Let's move to the next question.
Remaining questions: 4

#

No one has made it onto the leaderboard yet.

#
Question #4

Which theorem states that hypotenuse^2 = base^2 + height^2?

#

20s left!

edgy osprey
#

length

wicked parrotBOT
#

10s left!

#

Better luck next time...

#
The correct answers are **`Pythagorean's, Pythagorean's theorem`**

Let's move to the next question.
Remaining questions: 3

#

No one has made it onto the leaderboard yet.

#
Question #5

What is the term used to describe two triangles that have equal corresponding sides and angle measures?

#

20s left!

edgy osprey
#

Triangle

#

triangle

wicked parrotBOT
#

10s left!

#

No one answered correctly!

#
The correct answer is **`congruent`**

Let's move to the next question.
Remaining questions: 2

edgy osprey
#

triangular

wicked parrotBOT
#

No one has made it onto the leaderboard yet.

#
Question #6

Prime numbers only have __ factors.

edgy osprey
#

2

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`2, two`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

HelloWorld0293#1484: 100

#
Question #7

1/100th of a second is also termed as what?

edgy osprey
#

king

#

decimal

#

nanosecond

wicked parrotBOT
#

20s left!

edgy osprey
#

millisecond

wicked parrotBOT
#

10s left!

edgy osprey
#

picosecond

wicked parrotBOT
#

Better luck next time...

#
The correct answers are **`a jiffy, jiffy, centisecond`**

Remaining questions: 0

#
Score Board

HelloWorld0293#1484: 100

#

The round has ended.

#

@edgy osprey Congratulations on winning this quiz game with a grand total of 100 points :tada:

edgy osprey
#

eh that’s fine

#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

What is the highest power of a biquadratic polynomial?

edgy osprey
#

.quiz pause

wicked parrotBOT
#

Game is already running... do .quiz stop

edgy osprey
#

.quiz stop

wicked parrotBOT
#

Quiz stopped.

edgy osprey
#

.quiz resume

wicked parrotBOT
#
The available question categories are:

- General
Test your general knowledge.
- Retro
Questions related to retro gaming.
- Math
General questions about mathematics ranging from grade 8 to grade 12.
- Science
Put your understanding of science to the test!
- Cs
A large variety of computer science questions.
- Python
Trivia on our amazing language, python!
- Wikipedia
Guess the title of random wikipedia passages.

edgy osprey
#

.quiz general

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : general

#
Question #1

Which is the smallest planet in the Solar System?

edgy osprey
#

mercury

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`Mercury`**

Information
Mercury is the smallest planet in our solar system. It's just a little bigger than Earth's moon. It is the closest planet to the sun, but it's actually not the hottest. Venus is hotter.

Let's move to the next question.
Remaining questions: 6

#
Score Board

HelloWorld0293#1484: 100

#
Question #2

Which is the largest island in the world?

edgy osprey
#

hawaii

#

oahu

wicked parrotBOT
#

20s left!

edgy osprey
#

ohio

#

bahamas

wicked parrotBOT
#

10s left!

edgy osprey
#

hawaii

#

big island

wicked parrotBOT
#

Better luck next time...

edgy osprey
#

miami

wicked parrotBOT
#
The correct answer is **`Greenland`**

Information
Commonly thought to be Australia, but as it's actually a continental landmass, it doesn't get to make it in the list.

Let's move to the next question.
Remaining questions: 5

#
Score Board

HelloWorld0293#1484: 100

#
Question #3

When did the First World War start?

edgy osprey
#

1967

#

1867

wicked parrotBOT
#

20s left!

edgy osprey
#

1914

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`1914`**

Information
The first world war began in August 1914. It was directly triggered by the assassination of the Austrian archduke, Franz Ferdinand and his wife, on 28th June 1914 by Bosnian revolutionary, Gavrilo Princip. This event was, however, simply the trigger that set off declarations of war.

Let's move to the next question.
Remaining questions: 4

#
Score Board

HelloWorld0293#1484: 175

#
Question #4

Who lived at 221B, Baker Street, London?

#

20s left!

edgy osprey
#

Sherlock Holmes

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`Sherlock Holmes`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

HelloWorld0293#1484: 250

#
Question #5

Which is the largest hot desert in the world?

edgy osprey
#

sahara

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`Sahara`**

Information
The Sahara Desert covers 3.6 million square miles. It is almost the same size as the United States or China. There are sand dunes in the Sahara as tall as 590 feet.

Let's move to the next question.
Remaining questions: 2

#
Score Board

HelloWorld0293#1484: 350

#
Question #6

Who gifted the Statue Of Liberty?

edgy osprey
#

France

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`France`**

Information
The Statue of Liberty was a gift from the French people commemorating the alliance of France and the United States during the American Revolution. Yet, it represented much more to those individuals who proposed the gift.

Let's move to the next question.
Remaining questions: 1

#
Score Board

HelloWorld0293#1484: 450

#
Question #7

Which city is in two continents?

edgy osprey
#

Panama

#

Mexico

wicked parrotBOT
#

20s left!

#

10s left!

edgy osprey
#

instability

#

instabul

wicked parrotBOT
#

No one answered correctly!

#
The correct answer is **`Istanbul`**

Information
Istanbul embraces two continents, one arm reaching out to Asia, the other to Europe.

Remaining questions: 0

edgy osprey
#

Instabul

wicked parrotBOT
#
Score Board

HelloWorld0293#1484: 450

#

The round has ended.

#

@edgy osprey Congratulations on winning this quiz game with a grand total of 450 points :tada:

edgy osprey
#

bro

#

.quiz

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

How many quadrants are there in a cartesian plane?

edgy osprey
#

.quiz stop

wicked parrotBOT
#

Quiz stopped.

edgy osprey
#

.quiz help

wicked parrotBOT
#
The available question categories are:

- General
Test your general knowledge.
- Retro
Questions related to retro gaming.
- Math
General questions about mathematics ranging from grade 8 to grade 12.
- Science
Put your understanding of science to the test!
- Cs
A large variety of computer science questions.
- Python
Trivia on our amazing language, python!
- Wikipedia
Guess the title of random wikipedia passages.

edgy osprey
#

.quiz Science

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : science

#
Question #1

How does one describe the unit ohm (unit of electric resistance) in SI base units?
IMPORTANT: enclose answer in backticks, use * for multiplication, ^ for exponentiation, and place your base units in this order: m - kg - s - A

#

20s left!

edgy osprey
#

kelvin

#

candela

wicked parrotBOT
#

10s left!

edgy osprey
#

kv

#

K

#

Kelvin

wicked parrotBOT
#

Better luck next time...

#
The correct answer is **``m^2*kg*s^-3*A^-2``**

Let's move to the next question.
Remaining questions: 6

#

No one has made it onto the leaderboard yet.

#
Question #2

How does one describe a chemical reaction wherein heat is released?

edgy osprey
#

Smoke

wicked parrotBOT
#

20s left!

edgy osprey
#

jk

wicked parrotBOT
#

10s left!

#

No one answered correctly!

#
The correct answer is **`exothermic`**

Let's move to the next question.
Remaining questions: 5

#

No one has made it onto the leaderboard yet.

#
Question #3

Which particle is emitted during the beta decay of a radioactive element?

#

20s left!

#

10s left!

#

No one answered correctly!

#
The correct answers are **`an electron, the electron, electron`**

Let's move to the next question.
Remaining questions: 4

#

No one has made it onto the leaderboard yet.

#
Question #4

What range of frequency are the average human ears capable of hearing?
(A. 10Hz-10kHz, B. 20Hz-20kHz, C. 20Hz-2000Hz, D. 10kHz-20kHz)

#

20s left!

#

10s left!

#

No one answered correctly!

#
The correct answers are **`B, 20Hz-20kHz`**

Let's move to the next question.
Remaining questions: 3

#

No one has made it onto the leaderboard yet.

#
Question #5

What is the force that causes objects to float in fluids called?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`buoyancy`**

Let's move to the next question.
Remaining questions: 2

#

No one has made it onto the leaderboard yet.

#
Question #6

Is the Richter scale (common earthquake scale) linear or logarithmic?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`logarithmic`**

Let's move to the next question.
Remaining questions: 1

#

No one has made it onto the leaderboard yet.

#
Question #7

Which law states that the global entropy in a closed system can only increase?

#

20s left!

#

10s left!

#

No one answered correctly!

#
The correct answers are **`second law, second law of thermodynamics`**

Remaining questions: 0

#

No one has made it onto the leaderboard yet.

#

The round has ended.

frail siren
#

.quiz science

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : science

#
Question #1

As of 2021, how many elements are there in the Periodic Table?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`118`**

Let's move to the next question.
Remaining questions: 6

frail siren
#

118

wicked parrotBOT
#

No one has made it onto the leaderboard yet.

#
Question #2

Which particle is emitted during the beta decay of a radioactive element?

#

20s left!

#

10s left!

#

No one answered correctly!

#
The correct answers are **`an electron, the electron, electron`**

Let's move to the next question.
Remaining questions: 5

#

No one has made it onto the leaderboard yet.

#
Question #3

Which cell organelle is nicknamed "the powerhouse of the cell"?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`mitochondria`**

Let's move to the next question.
Remaining questions: 4

#

No one has made it onto the leaderboard yet.

#
Question #4

What is the universal force discovered by Newton that causes objects with mass to attract each other called?

frail siren
#

gravity

wicked parrotBOT
#

@frail siren got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`gravity`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

Chyron#3784: 100

#
Question #5

What do you call an organism composed of only one cell?

#

20s left!

#

10s left!

frail siren
#

Unicellular

wicked parrotBOT
#

@frail siren got the correct answer :tada: 50 points!

#
You got it! The correct answers are **`unicellular, single-celled`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

Chyron#3784: 150

#
Question #6

In the biological taxonomic hierarchy, what is placed directly above class?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`phylum`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

Chyron#3784: 150

#
Question #7

The three main components of a normal atom are: protons, neutrons, and...

#

20s left!

frail siren
#

electrons

wicked parrotBOT
#

@frail siren got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`electrons`**

Remaining questions: 0

#
Score Board

Chyron#3784: 225

#

The round has ended.

#

@frail siren Congratulations on winning this quiz game with a grand total of 225 points :tada:

quasi hound
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

What is the (0,0) coordinate in a cartesian plane termed as?

quasi hound
#

origin

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`origin`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 100

#
Question #2

What is the bottom number on a fraction called?

quasi hound
#

denominator

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`denominator`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 200

#
Question #3

What is the natural log of -1 (use i for imaginary number)?

#

20s left!

quasi hound
#

ln_e(1)?

wicked parrotBOT
#

10s left!

#

No one answered correctly!

#
The correct answers are **`pi*i, pii, πi`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 200

quasi hound
#

0

wicked parrotBOT
#
Question #4

1/100th of a second is also termed as what?

quasi hound
#

percent

wicked parrotBOT
#

20s left!

quasi hound
#

percentage

wicked parrotBOT
#

10s left!

quasi hound
#

rational

#

fraction

wicked parrotBOT
#

Better luck next time...

#
The correct answers are **`a jiffy, jiffy, centisecond`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 200

#
Question #5

In set builder notation, what does {p/q | q ≠ 0, p & q ∈ Z} represent?

quasi hound
#

rational

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`Rationals, Rational Numbers`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 300

#
Question #6

How many vertices are on a tetradecagonal prism?

quasi hound
#

18

wicked parrotBOT
#

20s left!

quasi hound
#

23

#

8

wicked parrotBOT
#

10s left!

quasi hound
#

10

wicked parrotBOT
#

Better luck next time...

#
The correct answer is **`28`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 300

#
Question #7

What is the term used to describe two triangles that have equal corresponding sides and angle measures?

#

20s left!

quasi hound
#

congruent

wicked parrotBOT
#

10s left!

#

No one answered correctly!

#
The correct answer is **`congruent`**

Remaining questions: 0

quasi hound
#

similar

wicked parrotBOT
#
Score Board

raxdius#1095: 300

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 300 points :tada:

quasi hound
#

what

#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

What is this triangle called?

quasi hound
#

pascals

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`Pascal's triangle, Pascal`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 100

#
Question #2

As the Fibonacci sequence extends to infinity, what's the ratio of each number n and its preceding number n-1 approaching?

quasi hound
#

golden ratio

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`Golden Ratio`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 200

#
Question #3

6a^2 is the surface area of which 3 dimensional figure?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`cube`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 200

#
Question #4

What is the highest power of a biquadratic polynomial?

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 300

#
Question #5

How many quadrants are there in a cartesian plane?

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 400

#
Question #6

Prime numbers only have __ factors.

quasi hound
#

2

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`2, two`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 500

#
Question #7

How many vertices are on a heptagonal prism?

quasi hound
#

18

#

28

wicked parrotBOT
#

20s left!

quasi hound
#

14

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`14`**

Remaining questions: 0

#
Score Board

raxdius#1095: 575

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 575 points :tada:

quasi hound
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

What is the only number in the entire number system which can be spelled with the same number of letters as itself?

quasi hound
#

four

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 100

#
Question #2

In probability, the ______ _____ of an experiment or random trial is the set of all possible outcomes of it.

#

20s left!

quasi hound
#

sample point

wicked parrotBOT
#

10s left!

quasi hound
#

sample space

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 50 points!

#
You got it! The correct answer is **`sample space`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 150

#
Question #3

What's the following formula that finds the area of a triangle called?

quasi hound
#

herons

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`Heron's formula, Heron`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 250

#
Question #4

What is the term used to describe two triangles that have equal corresponding sides and angle measures?

quasi hound
#

congruent

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`congruent`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 350

#
Question #5

What is the highest power of a biquadratic polynomial?

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 450

#
Question #6

How many vertices are on a pentagonal prism?

quasi hound
#

18

wicked parrotBOT
#

20s left!

quasi hound
#

10

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answer is **`10`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 525

#
Question #7

Which theorem states that hypotenuse^2 = base^2 + height^2?

quasi hound
#

pythagorean

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`Pythagorean's, Pythagorean's theorem`**

Remaining questions: 0

#
Score Board

raxdius#1095: 625

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 625 points :tada:

quasi hound
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

Prime numbers only have __ factors.

quasi hound
#

2

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`2, two`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 100

#
Question #2

What is the natural log of -1 (use i for imaginary number)?

quasi hound
#

pii

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`pi*i, pii, πi`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 200

#
Question #3

1/100th of a second is also termed as what?

#

20s left!

quasi hound
#

jiffy

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`a jiffy, jiffy, centisecond`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 275

#
Question #4

6a^2 is the surface area of which 3 dimensional figure?

quasi hound
#

cube

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`cube`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 375

#
Question #5

Which trigonometric function is defined as hypotenuse/opposite?

quasi hound
#

csc

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`cosecant, cosec, csc`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 475

#
Question #6

How many quadrants are there in a cartesian plane?

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4, four`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 575

#
Question #7

BASE TWO QUESTION: Calculate 1101 * 110

#

20s left!

#

10s left!

#

No one answered correctly!

#
The correct answer is **`1001110`**

Remaining questions: 0

#
Score Board

raxdius#1095: 575

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 575 points :tada:

quasi hound
#

lmao

#

.quiz science

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : science

#
Question #1

What do you call an organism composed of only one cell?

#

20s left!

quasi hound
#

uniceluler

wicked parrotBOT
#

10s left!

quasi hound
#

unicelular

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 50 points!

#
You got it! The correct answers are **`unicellular, single-celled`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 50

#
Question #2

About how many neurons are in the human brain?
(A. 1 billion, B. 10 billion, C. 100 billion, D. 300 billion)

quasi hound
#

D

wicked parrotBOT
#

20s left!

quasi hound
#

C

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`C, 100 billion, 100 bil`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 125

#
Question #3

Which cell organelle is nicknamed "the powerhouse of the cell"?

quasi hound
#

Mithocondria

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`mitochondria`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 225

#
Question #4

What is the intermolecular force caused by temporary and induced dipoles?

#

20s left!

quasi hound
#

london dispersion

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`LDF, London dispersion, London dispersion force`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 300

#
Question #5

When DNA is unzipped, two strands are formed. What are they called (separate both answers by the word "and")?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answers are **`leading and lagging, leading strand and lagging strand`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 300

#
Question #6

What is the name of our galaxy group in which the Milky Way resides?

#

20s left!

#

10s left!

#

Better luck next time...

#
The correct answer is **`Local Group`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 300

#
Question #7

What is the force that causes objects to float in fluids called?

quasi hound
#

buoyancy

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`buoyancy`**

Remaining questions: 0

#
Score Board

raxdius#1095: 400

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 400 points :tada:

quasi hound
#

.quiz math

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : math

#
Question #1

0, 1, 1, 2, 3, 5, 8, 13, 21, 34 are numbers of which sequence?

quasi hound
#

fibonacci

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`Fibonacci`**

Let's move to the next question.
Remaining questions: 6

#
Score Board

raxdius#1095: 100

#
Question #2

When is the inaugural World Maths Day (format your answer in MM/DD)?

#

20s left!

#

10s left!

#

No one answered correctly!

#
The correct answer is **`03/13`**

Let's move to the next question.
Remaining questions: 5

#
Score Board

raxdius#1095: 100

quasi hound
#

3/07

wicked parrotBOT
#
Question #3

What is the bottom number on a fraction called?

quasi hound
#

denominator

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`denominator`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

raxdius#1095: 200

quasi hound
#

...

wicked parrotBOT
#
Question #4

A matrix multiplied by its inverse matrix equals...

#

20s left!

quasi hound
#

determinant

wicked parrotBOT
#

10s left!

quasi hound
#

idk

wicked parrotBOT
#

No one answered correctly!

#
The correct answers are **`the identity matrix, identity matrix`**

Let's move to the next question.
Remaining questions: 3

#
Score Board

raxdius#1095: 200

#
Question #5

Which theorem states that hypotenuse^2 = base^2 + height^2?

quasi hound
#

pythagotas

wicked parrotBOT
#

20s left!

quasi hound
#

pythagorean

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`Pythagorean's, Pythagorean's theorem`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

raxdius#1095: 275

#
Question #6

In set builder notation, what does {p/q | q ≠ 0, p & q ∈ Z} represent?

quasi hound
#

rational

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`Rationals, Rational Numbers`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

raxdius#1095: 375

#
Question #7

What is the highest power of a biquadratic polynomial?

quasi hound
#

4

wicked parrotBOT
#

@quasi hound got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`4, four`**

Remaining questions: 0

#
Score Board

raxdius#1095: 475

#

The round has ended.

#

@quasi hound Congratulations on winning this quiz game with a grand total of 475 points :tada:

worthy hamlet
#

.wa s nPr(20, 20)

wicked parrotBOT
worthy hamlet
# wicked parrot

@storm quiver actual number of paths for 20-element TSP: you were close, only being off by 3 digits. this actually simplifies, btw, to just 20!

storm quiver
#

o damn yeah, i missed a group of 3 0s lemon_sweat

worthy hamlet
#

there's a program called Concorde that solved a ~86k-element TSP around 2006 that took 136 CPU-years

wicked parrotBOT
worthy hamlet
#

.wa s log10(85900!)

wicked parrotBOT
worthy hamlet
# wicked parrot

poor lancebot. WA desktop says the result has ~386,526 digits for a brute-force, so concorde is a bit faster

edgy osprey
#

.quiz help

wicked parrotBOT
#
The available question categories are:

- General
Test your general knowledge.
- Retro
Questions related to retro gaming.
- Math
General questions about mathematics ranging from grade 8 to grade 12.
- Science
Put your understanding of science to the test!
- Cs
A large variety of computer science questions.
- Python
Trivia on our amazing language, python!
- Wikipedia
Guess the title of random wikipedia passages.

edgy osprey
#

.quiz cps

wicked parrotBOT
#
The available question categories are:

- General
Test your general knowledge.
- Retro
Questions related to retro gaming.
- Math
General questions about mathematics ranging from grade 8 to grade 12.
- Science
Put your understanding of science to the test!
- Cs
A large variety of computer science questions.
- Python
Trivia on our amazing language, python!
- Wikipedia
Guess the title of random wikipedia passages.

edgy osprey
#

.quiz cs

wicked parrotBOT
#
Quiz game Starting!!

Each game consists of 7 questions.
Rules :
1: No cheating and have fun!
2: Points for each question reduces by 25 after 10s or after a hint. Total time is 30s per question
Category : cs

edgy osprey
#

yo

wicked parrotBOT
#
Question #1

What is computing capable of performing exaFLOPS called?

edgy osprey
#

RegEx

wicked parrotBOT
#

20s left!

edgy osprey
#

C

#

idk

#

bro

wicked parrotBOT
#

10s left!

#

No one answered correctly!

#
The correct answers are **`exascale computing, exascale`**

Let's move to the next question.
Remaining questions: 6

#

No one has made it onto the leaderboard yet.

#
Question #2

What is the name for unicode codepoints that do not fit into 16 bits?

#

20s left!

#

10s left!

edgy osprey
#

i truly do not know the answer to that question

wicked parrotBOT
#

Better luck next time...

#
The correct answer is **`surrogates`**

Let's move to the next question.
Remaining questions: 5

#

No one has made it onto the leaderboard yet.

#
Question #3

Which of these sorting algorithms is not stable?
(Counting sort, quick sort, insertion sort, tim sort, bubble sort)

edgy osprey
#

tim sort

#

bubble sort

wicked parrotBOT
#

20s left!

edgy osprey
#

quick sort

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 75 points!

#
You got it! The correct answers are **`quick, quick sort`**

Let's move to the next question.
Remaining questions: 4

#
Score Board

HelloWorld0293#1484: 75

#
Question #4

Under what locale does making a string lowercase behave differently?

#

20s left!

edgy osprey
#

python

#

windows

#

max

#

linux

#

c

wicked parrotBOT
#

10s left!

edgy osprey
#

h

#

java

wicked parrotBOT
#

No one answered correctly!

#
The correct answer is **`Turkish`**

Let's move to the next question.
Remaining questions: 3

edgy osprey
#

c++

wicked parrotBOT
#
Score Board

HelloWorld0293#1484: 75

#
Question #5

What does HTML stand for?

edgy osprey
#

what

#

hyper text markup language

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 100 points!

#
You got it! The correct answer is **`HyperText Markup Language`**

Let's move to the next question.
Remaining questions: 2

#
Score Board

HelloWorld0293#1484: 175

#
Question #6

What does the "a" represent in a HSLA color value?

edgy osprey
#

Alpha

wicked parrotBOT
#

@edgy osprey got the correct answer :tada: 100 points!

#
You got it! The correct answers are **`transparency, translucency, alpha value, alpha channel, alpha`**

Let's move to the next question.
Remaining questions: 1

#
Score Board

HelloWorld0293#1484: 275

#
Question #7

Why is a DDoS attack different from a DoS attack?
(A. because the victim's server was indefinitely disrupted from the amount of traffic, B. because it also attacks the victim's confidentiality, C. because the attack had political purposes behind it, D. because the traffic flooding the victim originated from many different sources)

edgy osprey
#

A

#

B

#

C

#

D

wicked parrotBOT
#

20s left!

#

10s left!

edgy osprey
#

B

#

B

#

confidential

wicked parrotBOT
#

Better luck next time...

#
The correct answer is **`D`**

Remaining questions: 0

#
Score Board

HelloWorld0293#1484: 275

#

The round has ended.