Python
Gherkin
Dudes
This & That
100

Given is 

motorcycles = ['honda', 'yamaha', 'suzuki']

How do you change 'honda' to 'BMW' ?

motorcycles[0] = 'BMW'

100

What does the abbreviation BDD stand for?

Behavior Driven Development

100

Who is this guy?

Jesus Christus

100

Which sticker is on the locker in Santander Platz where the books are stored?

Ladybug

200

Given is 

bicycles = ['trek', 'cannondale', ...., 'specialized'] 

How do you print out the last element 'specialized' in the string

(you don't know how long the list is because of ...)

print(bicycles[-1])

200

How many scenarios can a feature file contain?

At least one up to as much as you want 

200

Who is this guy? 

(double points if you can name all characters on the pic)

He-Man


... no one knows all names ...

200

How does pip help us?

pip manage the lib installation we have for executing our python programs

300

Given is 

motorcycles = ['honda', 'yamaha', 'suzuki'] 

include now 'BMW' at first place in the list

motorcycles.insert(0, 'BMW')

300

List at least three characteristics of Gherkin format!

  • simple syntax
  • no programming knowledge needed
  • supports multiple languages
  • stable
  • only small set of keywords
  • business readable specifications which can be used as automated tests and application documentation
300

Who is this guy?

Jaroslaw Kutylowski 

Founder of Deepl

AND a former "ANDAGONAUT" (colleague of Tanja and David from Andagon)

300

What is the Answer to the Ultimate Question of Life, the Universe, and Everything? 


42

* So Long, and Thanks for All the Fish

400

Which loops exist in Python?

1.) for loop

2.) while

400

Name two step and two block keywords!

step keywords:

- Given, When, Then, And, But

block keywords:

- Feature, Background, Scenario, Scenario Outline, Examples 

400

Who is this guy? 

"The Dude" Big Lebowski

400

How can you upload evidences from TalosBDD to ALM or octane after a run?

in the terminal in PyCharm you can enter:

python tools.py post-alm

python tools.py post-octane

500

What is the accessibility of this python variables?

class Test

{

   public static final int x = 42;

}

This is not python !!!

500

What types of scenarios do exists?

- illustrative scenarios

- journey scenarios

YOU WANT TO KNOW WHAT IT IS? 

READ THE BOOK!!

*available in your Favorit Santander Platz Bookstore (look for the Ladybug)

500

How is this monster called? 

Flying Spaghetti Monster

* it is a religious group see in wiki if you are interested

500

Which AI support can we use in PyCharm?

Microsoft Copilot