Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Jungleworks Team. If you also belong to the team, you can get access from here

Jungleworks Verified Tick

Compare button icon Compare button icon Compare
2.9

based on 91 Reviews

Filter interviews by

Jungleworks Full Stack Developer Interview Questions and Answers

Updated 9 Oct 2024

Jungleworks Full Stack Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Hirist and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Palindrome string problem
  • Ans. 

    Check if a string is a palindrome or not.

    • Create a function that compares the string with its reverse.

    • Ignore spaces and punctuation when checking for palindrome.

    • Examples: 'racecar', 'A man, a plan, a canal, Panama!'

  • Answered by AI
  • Q2. Merger two sorted arrays
  • Ans. 

    Merging two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Use two pointers to iterate through the two input arrays and compare elements

    • Add the smaller element to the new array and move the pointer for that array forward

    • Continue this process until all elements are merged

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in May 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Asked a programming question based on string where you have to tell the occurrence of very character in the string.

Full Stack Developer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Query And MatrixYou are given a binary matrix with ‘M’ rows and ‘ ... read more
asked in DBS Bank
Q2. SQL QuestionsYou are given the details of retail outlet. Your tas ... read more
asked in Accenture
Q3. Find Duplicates In ArrayYou are given an array/list 'ARR' consist ... read more
Q4. Most Frequent WordYou are given a paragraph that may have letters ... read more
asked in CommVault
Q5. Count with K different charactersYou are given a string ‘STR’ of ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are Callbacks ?
  • Ans. 

    Callbacks are functions passed as arguments to other functions, to be executed later.

    • Callbacks are commonly used in asynchronous programming to handle events or responses.

    • They allow for functions to be executed after another function has finished.

    • Callbacks can be used to achieve better modularity and reusability in code.

    • Example: setTimeout function in JavaScript takes a callback function as an argument to be executed a

  • Answered by AI
  • Q2. Some backend questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Fibonacci, swap without 3rd var
  • Q2. Non repetitive char in string
  • Ans. 

    Find the first non-repetitive character in a string.

    • Iterate through the string and count the occurrences of each character.

    • Return the first character with a count of 1.

  • Answered by AI
Round 2 - Case Study 

Scenario based questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Amrita School of Engineering, Bangalore

Round 1 - Coding Test 

Basic DSA linked list, stack etc

Round 2 - Coding Test 

System design food delivery application

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Why Appviewx and what do u know about it

Interview Preparation Tips

Topics to prepare for AppViewX Software Developer interview:
  • DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Implement tail f

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn development along with DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is let, const and var?
  • Ans. 

    let, const, and var are keywords used for variable declaration in JavaScript.

    • let is block-scoped and can be reassigned.

    • const is block-scoped but cannot be reassigned.

    • var is function-scoped and can be reassigned.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Basic 2 ,3 Java programs. Moderate level.

Round 3 - Technical 

(3 Questions)

  • Q1. Core Java theory questions. Questions focused on multithreading. Basic spring boot questions.
  • Q2. How to handle authentication in Spring Boot
  • Ans. 

    Authentication in Spring Boot is handled using Spring Security which provides various authentication mechanisms.

    • Use Spring Security to configure authentication in Spring Boot

    • Define a custom UserDetailsService to load user-specific data for authentication

    • Use annotations like @EnableWebSecurity and @EnableGlobalMethodSecurity to secure endpoints

    • Configure authentication providers like in-memory, JDBC, LDAP, etc. in the ap

  • Answered by AI
  • Q3. Transient keyword
Round 4 - Technical 

(2 Questions)

  • Q1. Core Java programs. Core Java theory questions
  • Q2. How many ways in Java we can handle deadlock or ways to handle synchronisation in Java.
  • Ans. 

    In Java, deadlock can be handled by using techniques like avoiding nested locks, using timeout, and using the java.util.concurrent package.

    • Avoid nested locks to prevent potential deadlocks.

    • Use timeout when acquiring locks to prevent indefinite waiting.

    • Utilize java.util.concurrent package classes like ReentrantLock and Semaphore for more advanced synchronization control.

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Basic salary related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Process is lengthy.
Waste of time they take 3 4 rounds and even won't share the interview feedback.

I was positive about the my interview but got rejected they just do timepass.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. String palindrome
  • Q2. Find all anagrams in a string
  • Ans. 

    Find all anagrams in a string

    • Create a hashmap to store the frequency of characters in the input string

    • Iterate through the input string and check if the frequency of characters matches the hashmap for each substring of the same length

    • Store the substrings that are anagrams in an array and return it

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic coding and oops concepts

Round 2 - Technical 

(1 Question)

  • Q1. Core java coding round

Jungleworks Interview FAQs

How many rounds are there in Jungleworks Full Stack Developer interview?
Jungleworks interview process usually has 1 rounds. The most common rounds in the Jungleworks interview process are Technical.
How to prepare for Jungleworks Full Stack Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Jungleworks. The most common topics and skills that interviewers at Jungleworks expect are MongoDB, AWS, Agile, Angular and Architectural Design.
What are the top questions asked in Jungleworks Full Stack Developer interview?

Some of the top questions asked at the Jungleworks Full Stack Developer interview -

  1. palindrome string prob...read more
  2. merger two sorted arr...read more
  3. Asked a programming question based on string where you have to tell the occurre...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Jungleworks interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Associate Software Engineer
37 salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Business Development Executive
36 salaries
unlock blur

₹2.4 L/yr - ₹8 L/yr

Business Development Manager
28 salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Software Engineer
24 salaries
unlock blur

₹6 L/yr - ₹13 L/yr

Product Manager
16 salaries
unlock blur

₹10 L/yr - ₹22 L/yr

Explore more salaries
Compare Jungleworks with

Zoho

4.3
Compare

Freshworks

3.5
Compare

Paytm

3.3
Compare

Ola Cabs

3.4
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview