i
Wemonde
Filter interviews by
I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.
Normal aptitude questions and very basic core Java questions
Code to validate if a string is a palindrome or not
Create a function that takes a string as input
Remove all non-alphanumeric characters and convert to lowercase
Compare the string with its reverse to check if it's a palindrome
Overloading is when multiple methods have the same name but different parameters, while overriding is when a subclass provides a specific implementation of a method from its superclass.
Overloading involves multiple methods with the same name but different parameters.
Overriding involves a subclass providing a specific implementation of a method from its superclass.
Overloading is determined at compile time based on the m...
Top trending discussions
OOPs concept is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.
Encapsulation: bundling data and methods that operate on the data into a single unit. Example: a car object with properties like color and methods like start() and stop().
Inheritance: allows a class to inherit properties and behavior from another class. Example: a class...
A real life scenario example of OOPs is modeling a car as an object with properties and methods.
Create a Car class with attributes like make, model, year, color
Define methods like start(), accelerate(), brake()
Instantiate multiple car objects and perform actions on them
Collections in Java are classes and interfaces that provide a way to store and manipulate groups of objects.
Collections provide a way to work with groups of objects in Java
They include classes like ArrayList, LinkedList, HashMap, etc.
Collections framework provides interfaces like List, Set, Map, etc.
Collections offer methods for adding, removing, and accessing elements in a group
I am a passionate Java developer with 5 years of experience in developing web applications and implementing software solutions.
5 years of experience in Java development
Strong knowledge of web application development
Experience in implementing software solutions
Passionate about coding and problem-solving
Developed a web application for online shopping with user authentication and payment gateway integration.
Used Java Spring framework for backend development
Implemented RESTful APIs for communication between frontend and backend
Integrated Stripe API for secure payment processing
posted on 17 Jul 2023
I applied via Walk-in and was interviewed in Jun 2023. There were 4 interview rounds.
Aptitude it is a type of test in which there are many questions like resigning, technical,blood relation.etc
In group discussion we have provided some topic and told discuss about that topic and tell advantages and dis advance.
final keyword in Java is used to restrict the user from changing the value of a variable, making it a constant.
Final keyword can be applied to variables, methods, and classes
Final variables cannot be reassigned once initialized
Final methods cannot be overridden in subclasses
Final classes cannot be extended
Static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.
Static variables are shared among all instances of a class.
Static methods can be called without creating an object of the class.
Static blocks are used to initialize static variables.
Example: public static int count = 0;
posted on 16 Jul 2024
I applied via Naukri.com and was interviewed before Jul 2023. There were 3 interview rounds.
2 coding question were asked
posted on 14 Jun 2024
I applied via LinkedIn and was interviewed before Oct 2023. There were 2 interview rounds.
Giva a Full stack project. based on MERN AND MEAN stack
I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.
Oops concept in C# refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.
Inheritance allows a class to inherit properties and behavior from another class.
Encapsulation hides the internal state of an object and only exposes necessary information.
Polymorphism allows objects of different classes to be treated as objects of a common superclass.
Abstraction focuses on...
A filter is a tool used to select specific data from a larger set based on certain criteria.
Filters can be used in various programming languages and databases to narrow down results.
Types of filters include text filters, numeric filters, date filters, and custom filters.
Examples of filters include WHERE clause in SQL, filter() function in Python, and filter() method in JavaScript.
A view in SQL Server is a virtual table that contains the result set of a SELECT statement.
Views are used to simplify complex queries by storing them as a virtual table.
Views can be used to restrict access to specific columns or rows of a table.
Views can be created using the CREATE VIEW statement.
Example: CREATE VIEW vwEmployee AS SELECT FirstName, LastName FROM Employees;
Primary key uniquely identifies a record in a table, while unique key ensures uniqueness but allows null values.
Primary key enforces uniqueness and not null constraint on a column
Primary key can consist of multiple columns
Unique key enforces uniqueness but allows null values
Unique key can be applied to multiple columns as well
Procedures are a set of instructions that perform a specific task, while functions return a value after performing a task.
Procedures do not return a value, while functions do.
Functions can be called within expressions, while procedures cannot.
Functions are more versatile and reusable compared to procedures.
A trigger in SQL Server is a special type of stored procedure that automatically executes when certain events occur in a database.
Triggers can be used to enforce business rules, audit changes, or replicate data.
There are two main types of triggers in SQL Server: DML triggers and DDL triggers.
DML triggers fire in response to data manipulation language (DML) events like INSERT, UPDATE, and DELETE.
DDL triggers fire in res...
Interface in C# is a reference type that defines a contract for classes to implement certain methods and properties.
Interfaces cannot have implementation, only method signatures and properties.
Classes can implement multiple interfaces in C#.
Interfaces are used to achieve abstraction and multiple inheritance in C#.
Example: public interface IShape { void Draw(); }
Example: public class Circle : IShape { public void Draw()
Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that must be implemented by a class.
Abstract class can have constructor, fields, and methods, while interface cannot have any implementation.
A class can implement multiple interfaces but can only inherit from one abstract class.
Abstract classes are used when some common functionality needs ...
Partial view in ASP.NET MVC allows reusing common UI elements across multiple views.
Partial views are like reusable components that can be included in multiple views
They help in reducing code duplication and improving maintainability
Partial views are rendered using Html.Partial or Html.RenderPartial methods
Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is redefining a method in a subclass with the same name and parameters as in the superclass.
Method overloading involves multiple methods with the same name but different parameters.
Method overriding involves redefining a method in a subclass with the same name and parameters as in the superclas...
Union combines and removes duplicates, while union all combines all rows including duplicates.
Union removes duplicates, while union all includes duplicates.
Union is slower as it has to remove duplicates, while union all is faster.
Use union when you want to remove duplicates, use union all when duplicates are acceptable.
Foreign key in SQL is a field in a table that links to a primary key in another table, enforcing referential integrity.
Foreign key constraints ensure data consistency between related tables
Foreign key values must exist in the referenced table's primary key column
Foreign key can be used to establish relationships between tables
Constructor in C# is a special type of method that is automatically called when an instance of a class is created.
Constructors have the same name as the class and do not have a return type.
They can be used to initialize the data members of the class.
Constructors can be overloaded to have multiple versions with different parameters.
Example: public class Person { public Person(string name) { this.Name = name; } }
SQL statements are used to interact with databases by performing operations like querying, updating, and deleting data.
SQL statements are made up of keywords like SELECT, INSERT, UPDATE, DELETE, etc.
They are structured in a specific order, with clauses like WHERE, ORDER BY, GROUP BY, etc.
Tables are referenced using their names, and conditions are specified to filter data.
Joins can be used to combine data from multiple
I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.
Basic coding questions (non-DSA) - Basic questions to reverse a string, check if string is palindrome, etc. If you have basic coding skills, you'll easily clear this round
I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 3 interview rounds.
JavaScript, React Js
One weakness I have is that I can be overly critical of my own work, which can sometimes lead to self-doubt.
I tend to overthink things and can be indecisive at times
I have a tendency to take on too many tasks at once, leading to feeling overwhelmed
I struggle with public speaking and often get nervous in front of large groups
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Software Engineer
6
salaries
| ₹4.2 L/yr - ₹8.6 L/yr |
Android Developer
6
salaries
| ₹3 L/yr - ₹4 L/yr |
Software Developer
5
salaries
| ₹1.2 L/yr - ₹6 L/yr |
Java Developer
5
salaries
| ₹5 L/yr - ₹15 L/yr |
Senior IOS Developer
4
salaries
| ₹4 L/yr - ₹4.8 L/yr |
TCS
Infosys
Wipro
HCLTech