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
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
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
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 applied via LinkedIn and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Google and Technical Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I was friendly environment while interview, they will ask you easy and knowledgeable questions. Don't get nervous when you are giving interview in Playerzpot
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Panjab University and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy level coding test, with basic knowledge of programming

Round 2 - Coding Test 

Recursion, and other advance topics

Round 3 - HR 

(2 Questions)

  • Q1. Basic HR question, about your background, experience projects etc
  • Q2. What projects you work on
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions along with 2 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Fibbonaci series program
  • Ans. 

    Fibonacci series program generates a sequence where each number is the sum of the two preceding ones.

    • Start with two initial numbers, usually 0 and 1.

    • Add the two previous numbers to get the next number in the sequence.

    • Repeat this process to generate the Fibonacci series.

  • Answered by AI
  • Q2. Questions based on OOPS concepts, inheritance and reccursion
Round 3 - HR 

(1 Question)

  • Q1. Basic questions about you and your hobbies

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. LLD question on whatsapp
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Types of methods involve in manual testing
  • Ans. 

    Methods in manual testing include black box testing, white box testing, unit testing, integration testing, system testing, and acceptance testing.

    • Black box testing: Testing the functionality of the software without knowing its internal code.

    • White box testing: Testing the internal code and structure of the software.

    • Unit testing: Testing individual units or components of the software.

    • Integration testing: Testing the inte...

  • Answered by AI
  • Q2. Write postive and negative test cases
  • Ans. 

    Positive and negative test cases for Softwaretest Engineer role

    • Positive test cases: verify that the software functions as expected, test boundary conditions, test error handling, test performance under load

    • Negative test cases: test invalid inputs, test edge cases, test for unexpected behavior, test for security vulnerabilities

  • Answered by AI

Skills evaluated in this interview

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.

People are getting interviews through

based on 1 Moonfrog Labs interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

IDZ Digital Interview Questions
3.8
 • 21 Interviews
ChicMic Interview Questions
4.5
 • 11 Interviews
Gameberry Labs Interview Questions
4.3
 • 9 Interviews
Kwalee India Interview Questions
3.0
 • 7 Interviews
Games2Win Interview Questions
2.3
 • 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.5
Compare

Games2Win

2.3
Compare

Nazara Technologies

3.0
Compare

99games Online

1.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