Upload Button Icon Add office photos

63 Moons Technologies

Compare button icon Compare button icon Compare

Filter interviews by

63 Moons Technologies Interview Questions, Process, and Tips

Updated 14 Jan 2025

Top 63 Moons Technologies Interview Questions and Answers

View all 12 questions

63 Moons Technologies Interview Experiences

Popular Designations

27 interviews found

Executive Interview Questions & Answers

user image Anonymous

posted on 8 Apr 2024

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

(1 Question)

  • Q1. Tell me about your any incident in previous office..?

Executive Interview Questions asked at other Companies

Q1. How will you start RS method Development for known drug product?
View answer (16)

HR Executive Interview Questions & Answers

user image Rahul Sivaram

posted on 4 Jul 2024

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

It was good and nice

Round 2 - Group Discussion 

Ecnomic inequality and how to. alleviate it

Interview Preparation Tips

Interview preparation tips for other job seekers - be good at numbers

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)
63 Moons Technologies Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Angular based like life cycle ,DI

Angular Frontend Developer Interview Questions asked at other Companies

Q1. How to implement interfaces without methods?
View answer (1)

C Developer Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2023

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

I applied via Campus Placement and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Paper pen round
1. Aptitude questions (profit and loss, coding decoding, missing number , time and distance etc)
2. C++ mcq questions(constructor and destructor, virtual functions, class and objects, pointer, oops concept)

Round 2 - Technical 

(5 Questions)

  • Q1. What is class and objects in c++?
  • Ans. 

    Class is a blueprint for creating objects. Objects are instances of a class with their own set of properties and methods.

    • Classes define the properties and methods that objects will have

    • Objects are created from a class using the 'new' keyword

    • Objects can interact with each other through their methods and properties

    • Example: class Car { int speed; void accelerate(); }; Car myCar; myCar.accelerate();

    • Example: class Person { ...

  • Answered by AI
  • Q2. About Constructor and destructor , Types of constructor, How constructor called?
  • Q3. Memory management of variable and objects
  • Ans. 

    Memory management involves allocating and deallocating memory for variables and objects.

    • Variables can be allocated on the stack or heap depending on their scope and lifetime.

    • Objects can be created using new operator and must be deleted using delete operator to avoid memory leaks.

    • Smart pointers like unique_ptr and shared_ptr can be used to manage object memory automatically.

    • Memory leaks can be avoided by properly managi...

  • Answered by AI
  • Q4. Difference between stack memory and heap memory
  • Ans. 

    Stack memory is allocated automatically, while heap memory is allocated manually.

    • Stack memory is limited and has a fixed size, while heap memory is larger and can grow dynamically.

    • Stack memory is faster to access than heap memory.

    • Stack memory is used for local variables and function calls, while heap memory is used for dynamic memory allocation.

    • Examples of stack memory include function call stack and local variables, w...

  • Answered by AI
  • Q5. About function overloading and overriding in c++?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just study about basic concept of c++ and memory management about variables and objects.

Skills evaluated in this interview

C Developer Interview Questions asked at other Companies

Q1. String Transformation Problem Given a string (STR) of length N, you are tasked to create a new string through the following method: Select the smallest character from the first K characters of STR, remove it from STR, and append it to the n... read more
View answer (1)

63 Moons Technologies interview questions for popular designations

 Software Developer

 (4)

 Software Engineer

 (3)

 Junior Business Analyst

 (3)

 C Developer

 (2)

 Business Analyst

 (2)

 Engineer

 (1)

 HR Executive

 (1)

 Analyst

 (1)

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

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy level questions ask

Round 2 - Technical 

(1 Question)

  • Q1. Face to face interview technical c++ questions oops concepts
Round 3 - HR 

(1 Question)

  • Q1. Normal hr question

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Get interview-ready with Top 63 Moons Technologies Interview Questions

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

I applied via Walk-in

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 Resume tips
Round 2 - Coding Test 

Microsoft technologies

Round 3 - Technical 

(1 Question)

  • Q1. Session management

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jobs at 63 Moons Technologies

View all
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2023. There were 3 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Mostly questions are based on C++
Round 3 - HR 

(2 Questions)

  • Q1. What is constructor and write it's code in C++
  • Ans. 

    Constructor is a special member function that initializes objects of a class.

    • Constructor has the same name as the class and no return type.

    • It is called automatically when an object is created.

    • It can be overloaded with different parameters.

    • Example: class Car { public: Car(string make, string model) { ... } };

    • Example: Car myCar("Toyota", "Corolla");

  • Answered by AI
  • Q2. What is operation overloading
  • Ans. 

    Operation overloading is the ability to define multiple functions with the same name but different parameters.

    • Allows multiple functions with the same name to perform different tasks

    • Functions must have different parameters or different number of parameters

    • Used to simplify code and improve readability

    • Example: + operator can be overloaded to add integers, concatenate strings, or add complex numbers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have good knowledge in C++ and need know to write code based on that

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Resume related question
  • Q2. Previous company-related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well before interview. know about the company to which you are applying.

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

C Developer Interview Questions & Answers

user image Anonymous

posted on 14 Jun 2023

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

I applied via Campus Placement and was interviewed in Dec 2022. There were 4 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 Resume tips
Round 2 - Aptitude Test 

Technical based question and c++ programing question

Round 3 - Technical 

(1 Question)

  • Q1. Opps concept and multi threading questions
Round 4 - HR 

(1 Question)

  • Q1. About your self

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was moderate

C Developer Interview Questions asked at other Companies

Q1. String Transformation Problem Given a string (STR) of length N, you are tasked to create a new string through the following method: Select the smallest character from the first K characters of STR, remove it from STR, and append it to the n... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is typescript
  • Ans. 

    TypeScript is a superset of JavaScript that adds static typing and other features to help developers write more robust code.

    • TypeScript is developed and maintained by Microsoft.

    • It compiles down to plain JavaScript.

    • It helps catch errors at compile time rather than runtime.

  • Answered by AI

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

63 Moons Technologies Interview FAQs

How many rounds are there in 63 Moons Technologies interview?
63 Moons Technologies interview process usually has 2 rounds. The most common rounds in the 63 Moons Technologies interview process are Technical, HR and Aptitude Test.
How to prepare for 63 Moons Technologies 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 63 Moons Technologies. The most common topics and skills that interviewers at 63 Moons Technologies expect are C++, Multithreading, Socket Programming, Linux and Business Analysis.
What are the top questions asked in 63 Moons Technologies interview?

Some of the top questions asked at the 63 Moons Technologies interview -

  1. What is testing? What if there is no senior in office and release gir schedule....read more
  2. What is class and objects in c...read more
  3. What is constructor and write it's code in ...read more
How long is the 63 Moons Technologies interview process?

The duration of 63 Moons Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Secure Meters

No Interviews

SALARIES

Insolutions Global

JOBS

Lloyds Metals And Energy

No Jobs

SALARIES

National Instruments

SALARIES

Lloyds Metals And Energy

SALARIES

63 Moons Technologies

SALARIES

Lloyds Metals And Energy

INTERVIEWS

National Instruments

No Interviews

INTERVIEWS

National Instruments

No Interviews

Tell us how to improve this page.

63 Moons Technologies Interview Process

based on 27 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
View all

63 Moons Technologies Reviews and Ratings

based on 295 reviews

3.7/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.3

Salary

3.6

Job security

3.7

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 295 Reviews and Ratings
Software Engineer
208 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
92 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Auditor
60 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Module Lead
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare 63 Moons Technologies with

National Stock Exchange of India

3.6
Compare

Bombay Stock Exchange

3.8
Compare

Multi Commodity Exchange of India

3.3
Compare

Reliance Industries

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