Ho presentato la mia candidatura tramite l'università. Ho sostenuto un colloquio presso Jubilant FoodWorks (Noida) nel mese di set 2025
Colloquio
It was moderate-difficult . The first round went for around 1 hr 50 min and the next was of 45-50 mins.They also asked about the final year project , the technologies I have worked upon and future exploration plannings
Domande di colloquio [1]
Domanda 1
They asked 1 hard dsa question first round , OS and projects and in next round the discussion was majorly on projects, operating system and Oops and some behavioural questions .
Ho presentato la mia candidatura tramite l'università. La procedura ha richiesto 2 giorni. Ho sostenuto un colloquio presso Jubilant FoodWorks (Nuova Delhi) nel mese di set 2022
Colloquio
Round 1: Online Assessment Round 2: DSA Based Round 3: Tech + Managerial OA consists of MCQs and DSA questions. Round 2 consists 2 DSA questions Round 3 consists of some puzzles and some tech questions. DSA + Puzzles = Success
Domande di colloquio [1]
Domanda 1
1. You are given a string s and an array of strings words. All the strings of words are of the same length. A concatenated substring in s is a substring that contains all the strings of any permutation of words concatenated. For example, if words = ["ab","cd","ef"], then "abcdef", "abefcd", "cdabef", "cdefab", "efabcd", and "efcdab" are all concatenated strings. "acdbef" is not a concatenated substring because it is not the concatenation of any permutation of words. Return the starting indices of all the concatenated substrings in s. You can return the answer in any order. 2. Given a “2 x n” board and tiles of size “2 x 1”, count the number of ways to tile the given board using the 2 x 1 tiles. A tile can either be placed horizontally i.e., as a 1 x 2 tile or vertically i.e., as 2 x 1 tile.