leetcode easy questions (anagram) for warm-up then leetcode medium difficulty (battleship)
Intern Software Engineer Interview Questions
9,771 intern software engineer interview questions shared by candidates
They asked questions based off of my resume. And other basic behavioral questions (tell me a time when you encountered a problem.. etc.)
* Diferencia entre Malloc y Calloc? * Stack and Heap
Round 1: Project & Architecture Review (75 mins)Focus: Deep dive into past technical experience.Details: The entire round was dedicated to presenting a personal/academic project. The interviewer asked detailed questions regarding the system's architecture, specific algorithmic choices, trade-offs, and design decisions.Round 2: Coding / Algorithms (75 mins)Focus: Problem-solving, bitwise operations, and array manipulation.Questions Asked:Bitwise Operation (LeetCode 2275 - Largest Combination With Bitwise AND Greater Than Zero): Given an array of integers, find the size of the largest subset where the bitwise AND of all elements is greater than zero. Insight: Count the number of set bits (1s) at each of the 32 bit positions across all numbers.Frequency Tracking (LeetCode 169 - Majority Element): Given an array, find the element that appears at least $n/2$ times (guaranteed to exist). Can be solved using a Hash Map ($O(n)$ space) or optimized using the Boyer-Moore Voting Algorithm ($O(1)$ space).Round 3: Low-Level Design (LLD) (75 mins)Focus: Object-Oriented Design (OOD) and data structure integration.Details: Design a parking lot system. The core challenge evolved into choosing the optimal combination of data structures to achieve $O(1)$ efficiency for parking, leaving, and tracking the physical index of each vehicle.Key Solution Concept: Integrating a Fixed-size Array (to maintain physical indices), a Doubly Linked List (to manage the pool of free spots), and a Hash Map (to map vehicle IDs to list nodes).
uestions included reversing Linked List, implementing LRUCache, searching in a rotated sorted array
Programming question: given a paper with sides "x" and margin with width "a". find the area of the paper excluding the margin.
Linked list problem. How do you implement a linked list?
Four fairly easy questions (all of which are easy questions on LeetCode)
The question asked to me was about about SQL in DBMS
The question asked to me was about finding the longest distance in a binary tree
Viewing 8101 - 8110 interview questions