/7

Please pay attention that some questions have multiple choice


ELEKS quiz

Complete the test with a score of 40-100% to receive a prize.

The number of attempts remaining is 1

Please fill in the form

1 / 7

What is faster in a transactional database:

2 / 7

Why do we need an analytics storage separated from transactional?

3 / 7

What is the best approach to read last committed data without locking in RDBMS?

4 / 7

You are training a medical diagnostic classification model to detect a rare deadly disease. It is important to identify as many people who actually have the disease as possible, even if it means some healthy people are incorrectly flagged. Which evaluation metric should you focus on?

5 / 7

What was the initial LeNet-5 neural network use case?

6 / 7

What operation should you perform on every value of a numerical variable to make its average exactly equal to zero, while preserving its variance?

7 / 7

What will happen when this code runs?


def counter_decorator(func):
    count = 0

    def wrapper(*args, **kwargs):
        nonlocal count
        count += 1
        print(f"Call #{count}")
        return func(*args, **kwargs)

    return wrapper


@counter_decorator
def greet(name):
    print(f"Hello, {name}!")


greet("Alice")
greet("Bob")

Your score is

The average score is 48%

0%

© 1991-2026 ELEKS, All rights reserved