i
Maxxton India Technologies
Filter interviews by
Assignment was related to Todo app
I applied via Campus Placement and was interviewed in Mar 2023. There were 3 interview rounds.
3 Questions were asked it was on some ide java platform
First question was reverse the words of a sentence(string)
Second was of gcd
Third q was tricky one
one string pattern was repeated infinite times in input string pattern and a length was given and we have to find the number of a upto the input length in the repeated infinite string
I am a software developer with experience in various programming languages and a passion for problem-solving.
Experienced in Java, C++, and Python
Proficient in web development using HTML, CSS, and JavaScript
Strong problem-solving and analytical skills
Worked on developing and maintaining large-scale software applications
Collaborated with cross-functional teams to deliver high-quality software solutions
I developed a web application for managing inventory and sales for a retail store.
Implemented user authentication and authorization using JWT.
Designed and developed a responsive user interface using HTML, CSS, and JavaScript.
Integrated with a database to store and retrieve product information.
Implemented features for adding, updating, and deleting products from the inventory.
Implemented sales tracking and reporting fun
The basic flow of my project involves gathering requirements, designing the software, implementing the code, testing, and deploying the final product.
Gather requirements from stakeholders
Design the software architecture
Implement the code based on the design
Test the software for functionality and quality
Deploy the final product to production environment
I have implemented login functionality using a combination of front-end and back-end technologies.
Used HTML and CSS to create a login form on the front-end
Implemented client-side validation to ensure the entered credentials are valid
Utilized JavaScript to handle form submission and send the data to the server
On the back-end, used a server-side programming language like Java or Python
Implemented server-side validation t...
I have implemented authentication using various methods including OAuth2, JWT, and session-based authentication.
Implemented OAuth2 for third-party authentication and authorization
Used JWT for stateless authentication and authorization
Implemented session-based authentication for web applications
Used multi-factor authentication for added security
Implemented password hashing and salting for secure storage of user credenti
I have used JWT in my project to securely authenticate and authorize users.
Implemented JWT authentication to generate and verify tokens
Used JWT to securely transmit user information between client and server
Stored JWT tokens in local storage or cookies for persistent authentication
Error is a problem in code that can't be handled while exception is a problem that can be handled.
Errors are caused by syntax or logical errors in code while exceptions are caused by external factors like user input or network issues.
Errors can't be recovered from while exceptions can be caught and handled using try-catch blocks.
Examples of errors include syntax errors, runtime errors, and logical errors while examples...
Strings are immutable in Java to ensure security, thread safety, and efficient memory usage.
Immutable strings prevent malicious code from modifying sensitive data.
Immutable strings can be safely shared across multiple threads without the risk of data corruption.
Immutable strings allow for efficient memory usage by reusing existing string objects instead of creating new ones.
Examples of immutable string methods in Java ...
Top trending discussions
I was interviewed in Nov 2024.
The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.
I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.
Encourage open communication among team members to address conflicts early on
Practice active listening to understand all perspectives and concerns
Seek compromise and find common ground to resolve conflicts effectively
Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.
Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.
A class can implement multiple interfaces but can only inherit from one abstract class.
Interfaces are used to achieve multiple inheri...
I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.
Give 10 questions from node js backend
package.json is a file used in Node.js projects to manage dependencies, scripts, and metadata.
It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.
It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.
It allows developers to define scripts for tasks like building, testing, and running the project.
Example: {...
Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.
Components in Angular are reusable, self-contained units of code that define a part of the user interface.
Data can be shared to a component using input properties, where data is passed from the parent component to the child component.
Data can also be shared from a child component t...
=== is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.
=== is a strict equality operator that checks both value and type of operands
== is a loose equality operator that only checks the value of operands
=== is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues
Arrow function syntax in JavaScript
Arrow functions are concise syntax for writing function expressions in JavaScript
They have a shorter syntax compared to traditional function expressions
They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords
Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.
Arrow functions have a shorter syntax compared to anonymous functions.
Arrow functions do not have their own 'this' keyword, while anonymous functions do.
Arrow functions do not have 'arguments' object, while anonymous functions do.
Arrow functions are not hoisted, while anonymous functions are hoisted.
I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.
Aptitude questions with some basic coding questions
They have given 3 coding questions and some pseudo codings
I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.
Logical reasoning and Aptitude
Functions with Pointers and strings concepts
I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.
It is easy to solve the Aptitude question and some identifying outputs of program.
A class is a blueprint for creating objects in object-oriented programming.
A class defines the properties and behaviors of objects.
An object is an instance of a class.
Example: Class 'Car' can have properties like 'color' and 'model', and behaviors like 'drive' and 'stop'.
Swap two numbers without using temp variable and reverse a string without using built-in functions.
To swap two numbers without using temp variable, use bitwise XOR operation.
To reverse a string without using built-in functions, use two pointers approach.
Example for swapping numbers: a = a ^ b; b = a ^ b; a = a ^ b;
Example for reversing a string: use two pointers to swap characters from start and end of the string.
Now, I am preparing for the third round.
So, I don't know the Coding Question.
posted on 24 Sep 2024
I applied via Campus Placement
Easy aptitude, 30 min with 20 question
I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.
The process for Software Development Engineer involves planning, designing, coding, testing, and deploying software solutions.
Gather requirements from stakeholders
Create a design based on requirements
Write code to implement the design
Test the software for bugs and issues
Deploy the software for users to use
Iterate on feedback and make improvements
I applied via Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.
OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.
Inheritance allows a subclass to inherit properties and methods from a superclass.
Polymorphism allows objects to take on multiple forms and behave differently based on their context.
Encapsulation hides the implementation details of an object and only exposes necessary information.
Abstraction allows for the creation of abstract class...
Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.
Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.
Inheritance allows for code reuse and extension of existing classes, reducing code duplication.
Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i
SQL query for joining tables
Use JOIN keyword to combine two or more tables based on a related column
Specify the columns to be selected using SELECT keyword
Use ON keyword to specify the condition for joining the tables
Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN
Used Java concepts such as inheritance, polymorphism, and exception handling in my project.
Implemented inheritance to create a base class and derived classes with specific functionalities.
Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.
Implemented exception handling to handle errors and prevent program crashes.
Used interfaces to define a set of methods that a ...
Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.
Overloading is used to provide different ways to call a method with different parameters
Overriding is used to provide a specific implementation of a method in a subclass
Overloading is resolved at compile-time while overriding is r...
Interview experience
based on 3 reviews
Rating in categories
Software Engineer
81
salaries
| ₹4 L/yr - ₹15.4 L/yr |
Software Developer
22
salaries
| ₹3 L/yr - ₹12 L/yr |
QA Engineer
21
salaries
| ₹3 L/yr - ₹6.9 L/yr |
Senior Software Engineer
16
salaries
| ₹5.4 L/yr - ₹18 L/yr |
Senior QA Engineer
8
salaries
| ₹5.7 L/yr - ₹12 L/yr |
Oracle
SAP
Microsoft Corporation
Salesforce