Company overview
экзон
Son vakansiya: 8 aprel 2026
- Vakansiyalar
- 1
- Müsahibələr
- 2
- Suallar
- 40
- Tapşırıqlar
- 0
Published in the selected period
Vakansiyalar · 0
No vacancies were found for the selected period.
Published records
Müsahibələr · 2
Grouped by direction
Suallar və tapşırıqlar · 40
Python
Sinxron və asinxron proqramlaşdırma arasındakı fərq nədir?
Əsas mesaj brokerlərini və onların fərqlərini qeyd edin
import aiohttp import asyncio async def fetch_all_tickets(self, ticket_ids: list, max_concurrent_requests: int =10): semaphore = asyncio.Semaphore(max_concurrent_requests) async with aiohttp.ClientSession() as session: tasks = [self._get_ticket(ticket_id, session, semaphore) for ticket_id in ticket_ids] tickets = [] for task in tasks: ticket = await task if ticket is not None: tickets.append(ticket) return tickets
OOP-in dörd postulunu adlandırın
GIL (Global Interpreter Lock) nədir?
İkili axtarış nədir?
Riyaziyyat baxımından neyron şəbəkəsi nədir? Maşın öyrənməsi üçün əsas olan riyaziyyat sahəsi hansıdır?
Java
Java-da verilənlər bazası ilə işləmək üçün hansı protokollar, çərçivələr və kitabxanalar mövcuddur?
İki Person obyektini müqayisə etmək üçün başqa hansı ikinci həll təklif oluna bilər?
FileInputStream → BufferedInputStream → InputStreamReader → BufferedReader zəncirində hansı naxış tətbiq olunub?
Xarici sistemə müraciət edən metod üçün vahid test necə yazılır ki, real müraciət baş verməsin?
public class RefEx { public static class PdfProcessor implements DocumentProcessor { } public static class DocxProcessor implements DocumentProcessor { @Override public void process(Document document) { // Word üçün xüsusi məntiq } } public static class XmlProcessor implements DocumentProcessor { @Override public void process(Document document) { // XML üçün xüsusi məntiq } } public static class DocumentService { private final Map<DocumentType, DocumentProcessor> processors = Map.of( DocumentType.PDF, new PdfProcessor(), DocumentType.DOCX, new DocxProcessor(), DocumentType.XML, new XmlProcessor() ); public void process(Document[] documents) { for (Document doc : documents) { DocumentProcessor processor = processors.get(doc.type); if (processor == null) { break; } // Ümumi sənəd emalı məntiqi processor.process(doc); } } } }