Sobes.tech

Data Engineer

# what does it output s = 'abracadabra' print(s[5][0][0][0]) print(s[::-2]) s = [1, 2, 3] print(s * 2)

Middle
171

What will happen when applying `s ** 2` to the list `s = [1, 2, 3]`?

Middle
170

How does list comprehension differ from a regular loop in Python?

Middle
167

What are decorators used for in Apache Airflow?

Middle
161

What is a decorator in Python?

Middle
155

# what it outputs s = 'Abracadabra' print(s[5][0][0]) b = 'a' print(b[0][0]) print(s[::-2]) #Arcd s = [1, 2, 3] print(s ** 2) def foo(*args, **kwargs): print(args) print(kwargs)

Middle
154

Compare ETL and ELT approaches: what are the differences and when is each used?

Middle
149

What is an RDD in Apache Spark and how does it differ from other Spark abstractions?

Middle
141

# what does it output s = 'Abracadabra' print(s[5][0]) b = 'a' b[0] print(s[::2]) s = [1, 2, 3] print(s * 2)

Middle
141

For each row in the salaries table, output the employee's name, date, salary, and using a window function, add a column "average salary by department on this date".

Middle
137

How do the resource requirements differ for storage during ETL and ELT?

Middle
134