Filter interviews by
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. ...
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...
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,...
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...
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.
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...
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...
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...
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
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");
I applied via Campus Placement and was interviewed in Jan 2023. There were 2 interview rounds.
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)
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 { ...
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...
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...
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...
I applied via Instahyre and was interviewed in Dec 2024. There were 4 interview rounds.
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...
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....
I appeared for an interview in May 2025, where I was asked the following questions.
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...
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 ...
I applied via Walk-in and was interviewed in Sep 2024. There was 1 interview round.
I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.
I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.
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...
I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.
I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.
I applied in campus placement first round is aptitude test
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...
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...
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 ...
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 ...
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
Top trending discussions
The duration of 63 Moons Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 29 interview experiences
Difficulty level
Duration
based on 324 reviews
Rating in categories
Software Engineer
199
salaries
| ₹4.6 L/yr - ₹10 L/yr |
Senior Software Engineer
89
salaries
| ₹5 L/yr - ₹18.4 L/yr |
Software Auditor
60
salaries
| ₹3.4 L/yr - ₹8 L/yr |
Software Developer
55
salaries
| ₹3.7 L/yr - ₹9 L/yr |
Module Lead
41
salaries
| ₹9.5 L/yr - ₹24 L/yr |
3i Infotech
Microland
Newgen Software Technologies
NSE.IT