Upload Button Icon Add office photos

63 Moons Technologies

Compare button icon Compare button icon Compare

Filter interviews by

63 Moons Technologies Interview Questions and Answers

Updated 17 Jun 2025
Popular Designations

17 Interview questions

A Junior Business Analyst was asked 5d ago
Q. Explain the Trade Life Cycle.
Ans. 

The Trade Life Cycle encompasses all stages of a trade from initiation to settlement, ensuring smooth transaction processing.

  • 1. Trade Initiation: The process begins when a trader decides to buy or sell a security.

  • 2. Order Execution: The order is sent to the market, where it is matched with a counterparty.

  • 3. Trade Confirmation: Both parties receive confirmation of the trade details, including price and quantity.

  • 4. ...

View all Junior Business Analyst interview questions
A Junior Business Analyst was asked 5d ago
Q. Write an essay based on a current national incident and provide a suitable solution.
Ans. 

The rising issue of food insecurity in the U.S. demands immediate attention and innovative solutions to ensure access to nutritious food.

  • Food insecurity affects millions of Americans, with 10.5% of households experiencing it in 2020.

  • The COVID-19 pandemic exacerbated food access issues, leading to increased reliance on food banks.

  • Innovative solutions include community gardens, urban farming, and partnerships with l...

View all Junior Business Analyst interview questions
A Software Development Engineer 3 was asked 5mo ago
Q. Design a database.
Ans. 

Design a database for a scalable e-commerce platform to manage products, users, and orders efficiently.

  • Use a relational database like PostgreSQL for structured data.

  • Create tables for Users, Products, Orders, and Order_Items.

  • Implement indexing on frequently queried fields like product name and user email.

  • Consider using NoSQL for unstructured data, such as user reviews.

  • Ensure data normalization to reduce redundancy,...

View all Software Development Engineer 3 interview questions
A Software Development Engineer 3 was asked 5mo ago
Q. Describe how you would implement APIs in a system design.
Ans. 

Design APIs for a scalable system to manage user data and interactions efficiently.

  • Define RESTful endpoints: e.g., GET /users, POST /users, PUT /users/{id}, DELETE /users/{id}.

  • Use JSON for data interchange to ensure compatibility across platforms.

  • Implement authentication and authorization: e.g., OAuth 2.0 for secure access.

  • Consider rate limiting to prevent abuse of the APIs.

  • Design for scalability: use load balance...

View all Software Development Engineer 3 interview questions
A Senior Software Engineer was asked
Q. 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.

View all Senior Software Engineer interview questions
A C Developer was asked
Q. What are classes 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 Pers...

View all C Developer interview questions
A C Developer was asked
Q. What is the 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 variabl...

View all C Developer interview questions
Are these interview questions helpful?
A C Developer was asked
Q. What is function overloading and overriding in C++?
Ans. 

Function overloading allows multiple functions with the same name but different parameters; overriding replaces a base class function in a derived class.

  • Overloading occurs within the same scope, e.g., void func(int) and void func(double).

  • Overriding requires a base class and derived class, e.g., virtual void baseFunc() in base and void baseFunc() in derived.

  • Overloaded functions can differ by number or type of param...

View all C Developer interview questions
A Software Developer was asked
Q. What is operator 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

View all Software Developer interview questions
A Software Developer was asked
Q. What is a constructor, and can you provide an example 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");

View all Software Developer interview questions

63 Moons Technologies Interview Experiences

28 interviews found

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++?
  • Ans. 

    Function overloading allows multiple functions with the same name but different parameters; overriding replaces a base class function in a derived class.

    • Overloading occurs within the same scope, e.g., void func(int) and void func(double).

    • Overriding requires a base class and derived class, e.g., virtual void baseFunc() in base and void baseFunc() in derived.

    • Overloaded functions can differ by number or type of parameters...

  • Answered by AI

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

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Instahyre and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Work Ex Discussion
Round 2 - Technical 

(1 Question)

  • Q1. System Design question- Implement APIs
  • Ans. 

    Design APIs for a scalable system to manage user data and interactions efficiently.

    • Define RESTful endpoints: e.g., GET /users, POST /users, PUT /users/{id}, DELETE /users/{id}.

    • Use JSON for data interchange to ensure compatibility across platforms.

    • Implement authentication and authorization: e.g., OAuth 2.0 for secure access.

    • Consider rate limiting to prevent abuse of the APIs.

    • Design for scalability: use load balancers an...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. System Design question- Design DB
  • Ans. 

    Design a database for a scalable e-commerce platform to manage products, users, and orders efficiently.

    • Use a relational database like PostgreSQL for structured data.

    • Create tables for Users, Products, Orders, and Order_Items.

    • Implement indexing on frequently queried fields like product name and user email.

    • Consider using NoSQL for unstructured data, such as user reviews.

    • Ensure data normalization to reduce redundancy, e.g....

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. System Design question- Microservices
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Tell me about Trade Life Cycle
  • Ans. 

    The Trade Life Cycle encompasses all stages of a trade from initiation to settlement, ensuring smooth transaction processing.

    • 1. Trade Initiation: The process begins when a trader decides to buy or sell a security.

    • 2. Order Execution: The order is sent to the market, where it is matched with a counterparty.

    • 3. Trade Confirmation: Both parties receive confirmation of the trade details, including price and quantity.

    • 4. Clear...

  • Answered by AI
  • Q2. Derivatives , BRD, FRD, Waterfall Model, Agile Methodologies, Captial Market , Intra day,
  • Q3. Write an essay based on any current incidents national level and give a suitable solution
  • Ans. 

    The rising issue of food insecurity in the U.S. demands immediate attention and innovative solutions to ensure access to nutritious food.

    • Food insecurity affects millions of Americans, with 10.5% of households experiencing it in 2020.

    • The COVID-19 pandemic exacerbated food access issues, leading to increased reliance on food banks.

    • Innovative solutions include community gardens, urban farming, and partnerships with local ...

  • Answered by AI
  • Q4. Scenario Based Question

Interview Preparation Tips

Interview preparation tips for other job seekers - The Interview was good and The Interviewer was also good Especially Rajan Mota Sir cooperative HR Nikita Patil

Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Oct 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. HR round mandatory
  • Q2. Technical round first and second

Interview Preparation Tips

Interview preparation tips for other job seekers - Well Environment to work, Every festival celebrates like a family
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Oops concepts, questions on strings and Arrays
  • Q2. Abstract class and interface,
  • Q3. SQL query related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concepts of c#, oops is must. Be prepared, be confident.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a dedicated Cyber Security Analyst with a passion for protecting systems and data from cyber threats.

    • Educational Background: I hold a degree in Cyber Security and have completed certifications like CompTIA Security+ and CEH.

    • Professional Experience: I have worked for two years at XYZ Corp, where I monitored network traffic and responded to security incidents.

    • Technical Skills: Proficient in using tools like Wireshar...

  • Answered by AI
  • Q2. Salary negotiation
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions about background

Interview Preparation Tips

Interview preparation tips for other job seekers - Be relax and go for the interview you will learn something
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

I applied in campus placement first round is aptitude test

Round 2 - Technical 

(4 Questions)

  • Q1. Ask question on oops concepts
  • Q2. What ia polymorphism Pointers etc.
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is called with.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Animal class with methods eat() and sleep(). Dog and Cat classes can inherit from Animal and override...

  • Answered by AI
  • Q3. Asked about academic project what is your role on these project
  • Q4. Based on resume asked questions and mostly asked the oops and c++ concept
Round 3 - HR 

(1 Question)

  • Q1. Based on resume and asked weakness ,strength

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is good my friend selected
Prepare for c++ and oops basic concept
Resume based questions

Analyst Interview Questions & Answers

user image ronald reji

posted on 11 Jun 2024

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

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    Analytical thinker with a background in data analysis, passionate about leveraging insights to drive business decisions.

    • Educational Background: Bachelor's degree in Economics, focusing on data analysis and statistics.

    • Professional Experience: Worked as a data analyst intern at XYZ Corp, where I improved reporting efficiency by 30%.

    • Technical Skills: Proficient in SQL, Python, and Excel for data manipulation and visualiza...

  • Answered by AI
  • Q2. Why u want to work with 63 moons
Round 2 - Technical 

(2 Questions)

  • Q1. Types of attacks
  • Ans. 

    Types of attacks include malware, phishing, DDoS, ransomware, and social engineering.

    • Malware attacks involve malicious software that can harm a computer system.

    • Phishing attacks use deceptive emails or websites to trick individuals into revealing sensitive information.

    • DDoS attacks overwhelm a network or server with a flood of traffic, causing it to become unavailable.

    • Ransomware attacks encrypt a user's files and demand ...

  • Answered by AI
  • Q2. How can they be prevented
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Trade life cycle
  • Q2. Tell me about current role
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Spring MVC vs Spring Boot
  • Ans. 

    Spring MVC is a framework for building web applications using the Model-View-Controller design pattern, while Spring Boot is an opinionated framework for quickly building production-ready applications.

    • Spring MVC is more customizable and requires more configuration compared to Spring Boot.

    • Spring Boot provides a set of defaults and auto-configuration options to simplify development.

    • Spring Boot is ideal for microservices ...

  • Answered by AI
  • Q2. Collection and it's benefits
  • Ans. 

    Collections are data structures that store and organize multiple elements.

    • Collections allow for efficient storage and retrieval of data

    • They provide various operations for manipulating the data, such as adding, removing, and searching for elements

    • Examples of collections include arrays, lists, sets, and maps

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about 63 Moons Technologies?
Ask anonymously on communities.

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 Resume Shortlist.
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.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 29 interview experiences

Difficulty level

Easy 17%
Moderate 78%
Hard 6%

Duration

Less than 2 weeks 94%
2-4 weeks 6%
View more

Interview Questions from Similar Companies

3i Infotech Interview Questions
3.4
 • 150 Interviews
Microland Interview Questions
3.5
 • 137 Interviews
NSE.IT Interview Questions
3.6
 • 137 Interviews
JK Tech Interview Questions
3.6
 • 36 Interviews
CS TECH Ai Interview Questions
3.9
 • 33 Interviews
Karvy Innotech Interview Questions
3.0
 • 28 Interviews
View all

63 Moons Technologies Reviews and Ratings

based on 324 reviews

3.7/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.3

Salary

3.6

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 324 Reviews and Ratings
DotntT Full stack Developer

Mumbai

4-6 Yrs

Not Disclosed

IT Auditor - Cyber Security

Mumbai

8-12 Yrs

Not Disclosed

UI/UX Web Developer

Mumbai

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
199 salaries
unlock blur

₹4.6 L/yr - ₹10 L/yr

Senior Software Engineer
89 salaries
unlock blur

₹5 L/yr - ₹18.4 L/yr

Software Auditor
60 salaries
unlock blur

₹3.4 L/yr - ₹8 L/yr

Software Developer
55 salaries
unlock blur

₹3.7 L/yr - ₹9 L/yr

Module Lead
41 salaries
unlock blur

₹9.5 L/yr - ₹24 L/yr

Explore more salaries
Compare 63 Moons Technologies with

3i Infotech

3.4
Compare

Microland

3.5
Compare

Newgen Software Technologies

3.8
Compare

NSE.IT

3.6
Compare
write
Share an Interview