Upload Button Icon Add office photos

Filter interviews by

Moonfrog Labs Software Engineer II Interview Questions and Answers

Updated 21 Jan 2023

Moonfrog Labs Software Engineer II Interview Experiences

1 interview found

Software Engineer II Interview Questions & Answers

user image Abhilash Behera

posted on 21 Jan 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Dec 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Title: Minimum steps required to make the product of array equal to 1 Description: Given an array arr[] containing N integers. In one step, any element of the array can either be changed by +1,-1,0. Find ...
  • Ans. 

    Find minimum steps to make product of array equal to 1 by changing elements by +1,-1,0.

    • Calculate number of negative elements and number of zeroes in array.

    • If number of negative elements is even, add 1 to all elements.

    • If number of negative elements is odd, add 1 to all elements except the smallest negative element.

    • Count the number of steps taken to modify the array elements.

    • Return the count of steps taken.

  • Answered by AI
  • Q2. Title: Next Greater Element for every element in the array Description: Given an array arr[] containing N integers. Print the next greater element for every element. Example: Input: arr[] = {4,5,2,25} Ou...
  • Ans. 

    Given an array, print the next greater element for every element.

    • Iterate through the array from right to left

    • Use a stack to keep track of the greater elements

    • Pop elements from the stack until a greater element is found or the stack is empty

    • If a greater element is found, it is the next greater element for the current element

    • If the stack is empty, there is no greater element for the current element

    • Store the next greater ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Moonfrog Labs Software Engineer II interview:
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - => Even if you know the solutions beforehand, start the solution by discussing more examples, edge cases and your approach with the interviewer. This gives a feeling that you are really understanding the problem to depth.
=> Even if you know the solution with the best time complexity, start with the brute force solution and gradually move towards the best solution by answering the interviewer's queries during the process.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 5 interview rounds.

Round 1 - Coding Test 

The test was conducted on HackerRank. One Javascript question and has to be solved.

Round 2 - Technical 

(1 Question)

  • Q1. Discussion on building a scalable system.
Round 3 - One-on-one 

(1 Question)

  • Q1. Peer panel round - Discussion on how a feature has been built. What tradeoffs you thought of etc
Round 4 - HR 

(1 Question)

  • Q1. Behavioural and culture fit
Round 5 - Behavioral 

(1 Question)

  • Q1. General discussion on what is expected from the role and what are my expectations etc
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Train,percentage,work

Round 2 - Coding Test 

Array , string , basic

Round 3 - Technical 

(1 Question)

  • Q1. Basic dsa question and oops
Round 4 - HR 

(1 Question)

  • Q1. About company and traditaion question

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic dsa like array string , basic math question in programming and oops and sudo code in oops
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Some C++ 14/17 questions and OOPs concepts
  • Q2. DSA questions based for basic game logics.
Round 2 - Technical 

(2 Questions)

  • Q1. Advanced OOPs and C++ questions
  • Q2. DSA coding questions based on Stacks and Linked list
Round 3 - HR 

(3 Questions)

  • Q1. Called me to Noida for a F2F HR round. I wasn’t given any Travel allowance. CTC negotiation was brutal. They were not willing to give me even a 5% hike on my previous salary.The HR and the Team said they’d...
  • Q2. A month passed by. Sometimes they’d say the technical team who took your interview wasn’t available so that the CTC discussion could be further done. And somedays they’d just delay by saying we’d get back ...
  • Q3. After a month of wasting my time. The HR finally called and said they rejected me based on the CTC. And are not even willing to negotiate because of my not so well performance in the technical rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had the worst experience ever interviewing in an MNC. Did not expect such unprofessional behaviour from a big company like Merkur Gaming.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Some basic aptitude and quants questions were asked with 2 coding questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic questions on oops
  • Q2. Exception and exception handling
Round 3 - Gaming round 

(2 Questions)

  • Q1. Solve problems by using Function
  • Q2. Solve problems using loops
Round 4 - HR 

(1 Question)

  • Q1. Just basic hr questions
Round 5 - Behavioral 

(1 Question)

  • Q1. Reasoning questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Atharva College of Engineering, Mumbai and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

One hour aptitude test based on the mathematics ,logical reasoning.

Round 2 - Technical 

(2 Questions)

  • Q1. One basic question on the language you know and one SQL is asked
  • Q2. SQL query questions

Interview Preparation Tips

Topics to prepare for Sportz Interactive Software Developer interview:
  • SQL
Interview preparation tips for other job seekers - Prepared for a SQL and you know language technical questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Required to write codes in python

Round 2 - Coding Test 

Required to write codes in python

Round 3 - HR 

(2 Questions)

  • Q1. Time to tackle difficulties
  • Q2. Time to learn things outside school
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find the longest length of consecutive number from array whose sum is lesser or equal to target
  • Ans. 

    Find the longest consecutive numbers in an array whose sum is less than or equal to a target.

    • Iterate through the array and keep track of the current sum and length of consecutive numbers.

    • Update the longest length whenever the current sum is less than or equal to the target.

    • Reset the current sum and length when the sum exceeds the target.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Easy coding test consisting dsa questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

The first round was scheduled in the evening time.
First of all interviewer introduced himself and after my introduction 
He directly shoot first DSA question. The question was easy but conceptual. I have solved some question with same concept and he ask me to share the screen and code in online compiler. Finally I was able to get correct output with all the use cases and I was like "Half work done!"
Then he asked me very core concepts of JavaScript along with that Some Output based questions.
Then finally he asked me theory questions on React along with my experience in React. 
The interviewer was very helpful as well as polite. I don't think if he will not help me during interview I could crack the interview

  • Q1. 

    Is the Sentence a Pangram?

    Ninja is relocating to a place called NinjaGram, and for school admission, he is required to identify if a given sentence is a pangram. Your task is to assist Ninja in determini...

  • Ans. 

    Step 1 : I have used hashing concept to map occurrence of english alphabet.
    Step 2 : I used Counter array with size 26 to find count of every alphabet. 
    Step 3 : Traverse the array and if it's panagram append the output string with 1 else 0

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vishwakarma Institute of Technology. Eligibility criteria1+ Years of ExperienceMPL interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, JavaScript, Operating System, Computer NetworksTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Code at least a single problem on your favourite coding platform with proper understanding of concept.
Tip 2 : Work on your resume, specifically try to grab some technical achievements(Hackathons, GSoc, etc) along with your degree which can stand out you from other candidates.
Tip 3 : Ask your friend for some mock interviews which can help you to excel in interview.

Application resume tips for other job seekers

Tip 1 : Project description should contain maximum keywords mentioned in Job Description. Success Matrix of project will give you an edge in the interview.
Tip 2 : Resume should be one page along with some clickable GitHub and Achievments links if possible.

Final outcome of the interviewSelected

Moonfrog Labs Interview FAQs

How many rounds are there in Moonfrog Labs Software Engineer II interview?
Moonfrog Labs interview process usually has 2 rounds. The most common rounds in the Moonfrog Labs interview process are Resume Shortlist and Technical.
What are the top questions asked in Moonfrog Labs Software Engineer II interview?

Some of the top questions asked at the Moonfrog Labs Software Engineer II interview -

  1. Title: Minimum steps required to make the product of array equal to 1 Descript...read more
  2. Title: Next Greater Element for every element in the array Description: Given a...read more

Tell us how to improve this page.

Moonfrog Labs Software Engineer II Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IDZ Digital Interview Questions
3.8
 • 22 Interviews
ChicMic Interview Questions
4.5
 • 11 Interviews
Gameberry Labs Interview Questions
4.3
 • 9 Interviews
Kwalee India Interview Questions
2.9
 • 7 Interviews
Games2Win Interview Questions
2.2
 • 6 Interviews
Tencent Interview Questions
4.6
 • 6 Interviews
View all
QA Engineer
9 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Customer Success Manager
7 salaries
unlock blur

₹7 L/yr - ₹12 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹41 L/yr - ₹70 L/yr

Test Engineer
7 salaries
unlock blur

₹4 L/yr - ₹10.7 L/yr

Product Manager
5 salaries
unlock blur

₹44 L/yr - ₹50 L/yr

Explore more salaries
Compare Moonfrog Labs with

Octro

3.3
Compare

Games2Win

2.2
Compare

Nazara Technologies

3.0
Compare

99games Online

1.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview