Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      Josh Technology Group

      Questa è la tua azienda?

      Chi siamo
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su Josh Technology Group | Offerte di lavoro di Josh Technology Group | Stipendi di Josh Technology Group | Benefit di Josh Technology Group
      Colloqui di Josh Technology GroupColloqui per Software Developer Intern presso Josh Technology GroupColloquio di Josh Technology Group


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Colloquio per Software Developer Intern

      15 giu 2026
      Candidato anonimo a colloquio
      Gurgaon, Haryana
      Nessuna offerta
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho sostenuto un colloquio presso Josh Technology Group (Gurgaon, Haryana)

      Colloquio

      DSA-focused interview covering Strings, Graphs, BSTs, Binary Trees, and basic Dynamic Programming. Aptitude section had 65 questions in 85 minutes. The overall environment was highly competitive, with particularly challenging DSA problems.

      Domande di colloquio [1]

      Domanda 1

      Maximum sum of nodes in a binary tree such that no two adjacent nodes are selected
      Rispondi alla domanda

      Altre recensioni di colloqui per Software Developer Intern presso Josh Technology Group

      Colloquio per Software Engineer Intern

      1 giu 2026
      Candidato anonimo a colloquio
      Mohali, Punjab
      Nessuna offerta
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura tramite l'università. Ho sostenuto un colloquio presso Josh Technology Group (Mohali, Punjab) nel mese di giu 2026

      Colloquio

      The recruitment process consisted of multiple assessment rounds before the final interview stage. I participated in the first two assessment rounds. The first round was a technical test containing MCQs on C, C++, Data Structures & Algorithms, and output-based programming questions. The second round included aptitude, logical reasoning, English questions, and two coding problems. The coding questions involved comparing two linked lists and checking whether two binary trees contained the same leaf node values. Candidates who cleared these rounds were shortlisted for a further coding assessment and interview process. I was not shortlisted beyond the second assessment round.

      Domande di colloquio [1]

      Domanda 1

      Technical questions focused on C, C++, DSA concepts, and predicting the output of code snippets. The second assessment included aptitude, logical reasoning, English questions, and two coding problems. One coding problem involved comparing linked lists, while the other required checking whether two binary trees had the same leaf node values despite potentially different structures.
      Rispondi alla domanda

      Colloquio per Software Developer Intern

      24 giu 2026
      Candidato anonimo a colloquio
      Gurgaon, Haryana
      Nessuna offerta
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho presentato la mia candidatura tramite l'università. Ho sostenuto un colloquio presso Josh Technology Group (Gurgaon, Haryana) nel mese di giu 2026

      Colloquio

      Interview Experience | Software Engineering Role Part 1: On-Campus Selection Rounds (College) Round 1: Online Assessment (Objective / CS Fundamentals) Format & Duration: 50 minutes Multiple Choice Questions (MCQs) focusing heavily on Core CS concepts.Topics & Key Questions Covered:Data Structures: * Postfix expression evaluation given specific numerical variables.Maximum number of nodes possible up to depth/distance 5 in a tree.Identifying invalid queue operations.Tracking front/rear insertions in an initially empty Deque.BST Path Validation: Given a sequence of visited nodes (e.g., $2 \rightarrow 252 \rightarrow 401 \rightarrow 398 \rightarrow 330 \rightarrow 344 \rightarrow 397$), identifying if it represents a valid path within a BST containing values 1 to 1000.C/C++ Programming Deep Dive:Extensive questions on pointer arithmetic, dereferencing, and memory management. (Pro-tip: Reviewing the GeeksforGeeks Pointers Quiz helps a lot here).Tracing tricky loops like for(int n = 7; n != 0; n--) { printf("%d ", n); n--; } (understanding infinite loop conditions).sizeof() operations on structs involving character arrays and integers, accounting for memory alignment and structural padding.Validating standard vs. invalid constructor types (e.g., assessing the concept of a "friend constructor").Output tracing for complex, nested ternary operators (?:).Algorithms & Recursion:Identifying properties of a Minimum Spanning Tree (MST) when given a complete graph represented by an adjacency matrix with 0s on the diagonal and 1s everywhere else.Tracing a recursive linked list function that prints, jumps curr->next->next, and prints again on unwind.Tracing bitwise expressions and recursive XOR patterns.Object-Oriented Programming (OOPs): Tracing constructor/destructor calling orders during inheritance, specifically handling an object of a derived class deleted via a base class pointer (testing virtual destructors). Round 2: Aptitude, Logical Reasoning & Coding (75 Minutes)Aptitude & Verbal Section: * English grammar, vocabulary, and reading comprehension.Syllogisms (Statement and Conclusion questions).Blood Relations (including both narrative mapping and symbol-coded relations).Quantitative aptitude: Mathematical operator insertion to balance equations, Probability, Profit & Loss, Direction & Distance grids, and Permutations & Combinations (e.g., arranging the vowels of the word "DETAIL" only in odd positions). Coding Section (2 Questions):Problem 1: GeeksforGeeks - Reverse an Array in Groups of Given Size (Variant: Reverse Every Subarray of Size M).Constraints: $O(n)$ Time, $O(1)$ Space.Problem 2: LeetCode 1448 - Count Good Nodes in Binary Tree (Variant: Modified to find the Sum of Good Nodes instead of the count).Constraints: $O(n)$ Time, $O(1)$ Auxiliary Space. Round 3: Technical Coding Round (75 Minutes)Format: Subjective coding round focusing purely on optimal data structures and algorithmic efficiency.Coding Questions:Problem 1: LeetCode 2111 - Minimum Operations to Make the Array Non-Decreasing / Greedy Subarray Reduction (Variant: Array Compression to Non-Increasing Array using contiguous minimum values to maximize remaining elements).Constraints: $O(n)$ Time, $O(1)$ Extra Space.Problem 2: GeeksforGeeks - Delete N nodes after M nodes of a linked list (Linked List Keep-Delete Pattern).Constraints: $O(n)$ Time, $O(1)$ Extra Space.Problem 3: LeetCode 1315 - Sum of Nodes with Even-Valued Grandparent (Tree traversal problem tracking parent and grandparent state).Constraints: $O(n)$ Time, $O(1)$ Extra Space. Part 2: In-Office Selection Rounds Round 4: Office Online Assessment (50 Minutes) Format: 2 Coding questions under tight time constraints. Coding Questions:Problem 1: GeeksforGeeks - Delete N nodes after M nodes of a linked list (A retest of the on-campus Keep-Delete pattern question).Problem 2: LeetCode 2415 - Reverse Odd Levels of Binary Tree (Variant: Modified to Reverse Even Levels instead).Constraints: $O(1)$ Auxiliary Space (excluding recursion stack). Round 5: Technical Interview 1 (Scheduled for 2 Hours - Finished Early)Format: One-on-one technical problem solving with a heavy emphasis on communication, edge-case analysis, and systematic dry runs.Coding Questions:Problem 1: LeetCode 1080 - Insufficient Nodes in Root to Leaf PathsProblem 2: LeetCode 209 - Minimum Size Subarray SumInterview Dynamics & Takeaways: * The interviewers expect you to thoroughly discuss your approach before jumping into writing code.They will make you actively dry run your logic with multiple test cases on the screen.Crucial Tip: If any part of the problem statement is ambiguous, clarify it immediately. Proactively ask about edge cases (like how the logic should behave if the tree or array contains negative numbers), as they look for this foresight. Round 6: Technical Interview 2 & Project Discussion (2 Hours) Format: Advanced problem-solving and system implementation, followed by an in-depth review of past projects.Coding Questions & Experience:Problem 1: LeetCode 298 - Binary Tree Longest Consecutive SequenceInterview Traps: I successfully solved this, but the interviewers immediately followed up by asking to remove all global/class-level reference variables from the recursive logic. Be prepared to implement a pure bottom-up post-order traversal passing state up via pairs/structs.Problem 2: LeetCode 2355 - Maximum Number of Books You Can Take / LeetCode 1776 - Car Fleet II (Variant: Minimum Operations to Convert All Elements to Zero).Experience: I deduced that a Monotonic Stack was required to find the next smallest element, but struggled to optimize the calculation within a single array traversal.Problem 2 (Switched Option): Because I hit a wall, the interviewers kindly offered a question switch to LeetCode 581 - Shortest Unsorted Continuous Subarray.Experience: I tried identifying the first point where the non-increasing order breaks and coded a solution, but it failed to account for complex hidden test cases during manual verification.Project Discussion: * The round concluded with a deep dive into my resume projects, examining the architecture and technical choices made.Result: Did not clear this final round. I know they took a third technical interview of the candidates who were able to pass the second interview

      Domande di colloquio [1]

      Domanda 1

      They mainly focus on Trees
      Rispondi alla domanda