Sobes.tech

Explain the written SQL query: what do we retrieve, how do we retrieve it, why do we filter reaction not equal to 0, how do GROUP BY and ORDER BY work? Tell about JOIN types (LEFT, RIGHT, their differences).

Senior
180

What types of NoSQL databases exist and when should they be used?

Senior
180

class AlternatingPrinter { public static void main(String[] args) { AlternatingPrinter printer = new AlternatingPrinter(); Thread numberThread = new Thread(printer::printNumbers); Thread letterThread = new Thread(printer::printLetters); numberThread.start(); letterThread.start(); } public void printNumbers() { for (int i = 1; i <= 26; i++) { System.out.print(i + " "); } } public void printLetters() { for (char c = 'A'; c <= 'Z'; c++) { System.out.print(c + " "); } } } Предположим, у вас есть два потока. Один из них выводит (1,2,3...), а другой — (A,B,C...). Как обеспечить их выполнение в чередующейся последовательности (1,A,2,B...)?

180

Tell us about the MegaFon project, what did you do?

Senior
180

Why did you leave your last company and decide to enter the market?

180

What is ACID in databases? Tell about each property.

Senior
180

Name one technical improvement made on the project besides business tasks.

180

How to increase the number of consumers in a group with ten partitions?

Senior
180

Как обеспечить exactly-once семантику в Kafka?

Senior
180

Why are B-trees often used for indexes and primary keys instead of hash tables?

180

[name] asked: what is idempotency?

Middle+
180

What are the types of exceptions in Java? What is a Multi-catch Exception?

Middle
180

How to solve the consistency problem when using Kafka transactions between two services?

Senior
180
/743