Company overview
экзон
Վերջին թափուր տեղը: 8 ապրիլի, 2026 թ.
- Թափուր տեղեր
- 1
- Հարցազրույցներ
- 2
- Հարցեր
- 40
- Առաջադրանքներ
- 0
Published in the selected period
Թափուր տեղեր · 0
No vacancies were found for the selected period.
Published records
Հարցազրույցներ · 2
Grouped by direction
Հարցեր և առաջադրանքներ · 40
Python
Ի՞նչ է սինխրոն և ասինխրոն ծրագրավորումը:
Նշեք հիմնական հաղորդագրության բրոքերները և նրանց տարբերությունները
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
Անվանել օբյեկտային ծրագրավորման չորս հիմնական սկզբունքները
GIL (Global Interpreter Lock) ինչ է?
Ի՞նչ է բինար որոնումը։
Ի՞նչ է նեյրոնային ցանցը մաթեմատիկայից տեսանկյունից: Ո՞ր մաթեմատիկական բաժինը հիմնական է մեքենայական ուսուցման համար:
Java
Ի՞նչ պրոտոկոլներ, ֆրեյմվորկեր և գրադարաններ կան Java- ում տվյալների բազաների հետ աշխատելու համար։
Ի՞նչ այլ երկրորդ լուծում կարելի է առաջարկել երկու Person օբյեկտների համեմատության համար։
Ի՞նչ նմուշ է իրականացվում FileInputStream → BufferedInputStream → InputStreamReader → BufferedReader շղթայում։
Ինչպես գրել միավորային թեստ այն մեթոդի համար, որը դիմում է արտաքին համակարգին, որպեսզի իրական դիմում չկայանա?
public class RefEx { public static class PdfProcessor implements DocumentProcessor { } public static class DocxProcessor implements DocumentProcessor { @Override public void process(Document document) { // Word uchun maxsus mantiq } } public static class XmlProcessor implements DocumentProcessor { @Override public void process(Document document) { // XML uchun maxsus mantiq } } 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; } // Umumiy hujjat emali mantiq processor.process(doc); } } } }