Las preguntas eran de opción múltiple. Una que recuerdo era sobre identificar si un número era válido según ciertas reglas: debía estar entre 0 y 999999, podía tener signo negativo, pero no debía tener ceros a la izquierda, ni ser decimal, ni tener un -0. Las opciones eran algo como: 00001, -0, 83.1 y 76. También hubo ejercicios de operadores lógicos, pero en lugar de los símbolos comunes (<, >, &&, !), usaban otros símbolos como $ para menor que, u otras combinaciones para negación, y tenías que decir si la expresión era verdadera o falsa.
Software Engineer Intern Interview Questions
9,335 software engineer intern interview questions shared by candidates
What did you guys do to solve your issues?
Buy and sell stock leetcode medium variant
What are you looking for in an internship?
Details about the collections library in java
What does SSL stand for?
HR screening: What's the kill signal in linux?
1. What does HTML stand for? 2. What is ssh?
# List of tickets, in the form (origin, destination) ORIGINAL_TICKETS = [ ('SFO', 'LAX'), ('LAX', 'JFK'), ('JFK', 'LHR'), ('LHR', 'CDG'), ('CDG', 'DXB'), ('DXB', 'HKG'), ('HKG', 'HAM'), ] Write a function which given the original origin, find the final destination. Then write a function that would find both the original origin and final destination with only access to that ticket list. Finally write a function that finds a missing ticket given the original origin and final destination.
Given a log file with format: " 1,2,start 2,3,end 2,4, start """" where each tuple is a (job_id,time,option) where option is start or end, find a way to map concurrent processes to each other
Viewing 641 - 650 interview questions