J'ai postulé via un établissement d'enseignement supérieur ou universitaire. J'ai passé un entretien chez Jubilant FoodWorks (Noida) en sept. 2025
Entretien
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
Questions d'entretien [1]
Question 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 .
J'ai postulé via un établissement d'enseignement supérieur ou universitaire. Le processus a pris 2 jours. J'ai passé un entretien chez Jubilant FoodWorks (New Delhi) en sept. 2022
Entretien
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
Questions d'entretien [1]
Question 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.