Filter interviews by
A constructor is a special method that is used to initialize objects in a class.
Constructors have the same name as the class they belong to.
They are called automatically when an object is created.
They can take parameters to initialize the object's properties.
If a class does not have a constructor, a default constructor is created.
Constructors can be overloaded to provide multiple ways to initialize an object.
Wrapper class is a class that wraps a primitive data type to provide additional functionality.
Wrapper classes are used to convert primitive data types into objects.
They provide methods to convert between primitive types and objects.
Wrapper classes are immutable.
Examples include Integer, Double, and Boolean.
C++ is a compiled language with pointers and memory management, while Java is an interpreted language with garbage collection.
C++ is faster than Java due to direct memory access.
Java is platform-independent, while C++ is platform-dependent.
C++ supports multiple inheritance, while Java only supports single inheritance.
Java has built-in support for multithreading, while C++ requires external libraries.
C++ allows for...
Java is a high-level, object-oriented programming language used for developing desktop, web, and mobile applications.
Java is platform-independent and can run on any operating system
It is known for its security features and is widely used in enterprise applications
Java code is compiled into bytecode which can be run on a Java Virtual Machine (JVM)
Popular frameworks and libraries in Java include Spring, Hibernate, a...
Java doesn't support multiple inheritance to avoid diamond problem and complexity.
Java supports single inheritance to promote simplicity and avoid ambiguity.
Multiple inheritance can lead to the diamond problem where a class inherits from two classes with a common parent.
Java provides interfaces to achieve multiple inheritance of type without the diamond problem.
Example: class A and class B both have a method with ...
Polymorphism is the ability of an object to take on many forms.
Polymorphism allows objects to be treated as instances of their own class or as instances of their parent class.
It enables the use of a single interface to represent multiple types of objects.
Examples include method overloading, method overriding, and interfaces in Java.
Polymorphism is a key concept in object-oriented programming.
Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.
Inheritance allows code reuse and promotes code organization.
The existing class is called the parent or superclass, and the new class is called the child or subclass.
The child class inherits all the properties and methods of the parent class, and can also add new properties and metho...
Create a MySQL database and a 'registration' table with specified columns for user data storage.
Use the command: CREATE DATABASE registration_db; to create a new database.
Create the table with: CREATE TABLE registration (ID INT AUTO_INCREMENT PRIMARY KEY, Name VARCHAR(100), Address VARCHAR(255), DOB DATE, Phone VARCHAR(15), Email VARCHAR(100));
Ensure the ID column is set as PRIMARY KEY and AUTO_INCREMENT for uniqu...
Creating a PHP registration form with essential user fields for data collection and validation.
Use HTML to create the form structure with input fields for each required data point.
Implement PHP for server-side validation to ensure data integrity (e.g., check if email is valid).
Utilize prepared statements to prevent SQL injection when storing data in a database.
Include client-side validation using JavaScript for im...
I applied via Referral and was interviewed in Aug 2021. There were 5 interview rounds.
Java is a high-level, object-oriented programming language used for developing desktop, web, and mobile applications.
Java is platform-independent and can run on any operating system
It is known for its security features and is widely used in enterprise applications
Java code is compiled into bytecode which can be run on a Java Virtual Machine (JVM)
Popular frameworks and libraries in Java include Spring, Hibernate, and Ap...
Creating a PHP registration form with essential user fields for data collection and validation.
Use HTML to create the form structure with input fields for each required data point.
Implement PHP for server-side validation to ensure data integrity (e.g., check if email is valid).
Utilize prepared statements to prevent SQL injection when storing data in a database.
Include client-side validation using JavaScript for immedia...
Create a MySQL database and a 'registration' table with specified columns for user data storage.
Use the command: CREATE DATABASE registration_db; to create a new database.
Create the table with: CREATE TABLE registration (ID INT AUTO_INCREMENT PRIMARY KEY, Name VARCHAR(100), Address VARCHAR(255), DOB DATE, Phone VARCHAR(15), Email VARCHAR(100));
Ensure the ID column is set as PRIMARY KEY and AUTO_INCREMENT for unique ide...
C++ is a compiled language with pointers and memory management, while Java is an interpreted language with garbage collection.
C++ is faster than Java due to direct memory access.
Java is platform-independent, while C++ is platform-dependent.
C++ supports multiple inheritance, while Java only supports single inheritance.
Java has built-in support for multithreading, while C++ requires external libraries.
C++ allows for manu...
Wrapper class is a class that wraps a primitive data type to provide additional functionality.
Wrapper classes are used to convert primitive data types into objects.
They provide methods to convert between primitive types and objects.
Wrapper classes are immutable.
Examples include Integer, Double, and Boolean.
A constructor is a special method that is used to initialize objects in a class.
Constructors have the same name as the class they belong to.
They are called automatically when an object is created.
They can take parameters to initialize the object's properties.
If a class does not have a constructor, a default constructor is created.
Constructors can be overloaded to provide multiple ways to initialize an object.
Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.
Inheritance allows code reuse and promotes code organization.
The existing class is called the parent or superclass, and the new class is called the child or subclass.
The child class inherits all the properties and methods of the parent class, and can also add new properties and methods.
Fo...
Polymorphism is the ability of an object to take on many forms.
Polymorphism allows objects to be treated as instances of their own class or as instances of their parent class.
It enables the use of a single interface to represent multiple types of objects.
Examples include method overloading, method overriding, and interfaces in Java.
Polymorphism is a key concept in object-oriented programming.
Java doesn't support multiple inheritance to avoid diamond problem and complexity.
Java supports single inheritance to promote simplicity and avoid ambiguity.
Multiple inheritance can lead to the diamond problem where a class inherits from two classes with a common parent.
Java provides interfaces to achieve multiple inheritance of type without the diamond problem.
Example: class A and class B both have a method with the s...
Top trending discussions
I applied via Campus Placement and was interviewed before May 2021. There were 4 interview rounds.
VERBAL QUANT DI/LR and Picture based test
Fibonacci series can be easily implemented using loops in C++ or C.
Declare variables for first two numbers of the series
Use a loop to calculate and print the next number in the series
Repeat the loop until desired number of terms are printed
I appeared for an interview before Sep 2020.
Round duration - 90 minutes
Round difficulty - Easy
This round was held during university hours and consisted of 2 coding questions.
Round duration - 120 minutes
Round difficulty - Easy
Make sure you do no cutting and are clear about the approach you'd be following.
Running median of an input stream is the median value of the numbers seen so far in a continuous stream of data.
Maintain two heaps - a max heap for the lower half of the numbers and a min heap for the upper half.
Keep the number of elements in the two heaps balanced or differ by at most 1.
If the total number of elements is odd, the median is the root of the max heap. If even, it is the average of the roots of the two he...
Prepare for company-wise interview questions according to the company in which you are applying. Try to write the code yourself and if got stuck in between then take help from the internet. I recommend you Codezen of Coding Ninjas for practicing Data Structures and Algorithms based questions.
Application resume tips for other job seekersBe sure 100% of what you write in your resume and prepare for that before the interview what is written on resume.
Final outcome of the interviewSelectedI applied via Referral and was interviewed before Jan 2021. There was 1 interview round.
Abstract class is a class that cannot be instantiated, List is a collection of objects, SQL is a language used to manage databases, ADO.net is a framework for accessing databases.
Abstract class is used as a base class for other classes
List is a generic collection of objects
SQL is used to create, modify, and query databases
ADO.net provides a set of classes for accessing databases
Example: abstract class Animal { public a...
I applied via Company Website and was interviewed before Jan 2021. There were 5 interview rounds.
I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.
I'm a passionate software developer with 5 years of experience in building scalable web applications and a strong focus on user experience.
Experience in full-stack development using technologies like React, Node.js, and MongoDB.
Led a team project that improved application performance by 30% through code optimization.
Strong background in Agile methodologies, having participated in multiple sprints and retrospectives.
Dev...
I excel in problem-solving, collaboration, and adaptability, which enhance my effectiveness as a software developer.
Strong problem-solving skills: I enjoy tackling complex coding challenges, like optimizing algorithms for better performance.
Effective collaboration: I have successfully worked in Agile teams, contributing to projects like a web application that improved user engagement.
Adaptability: I quickly learn new t...
I tend to be overly critical of my work, which can slow down my progress and affect my confidence in delivering projects.
I often spend too much time refining code, which can delay project timelines. For example, I once spent an extra week on a feature.
I sometimes struggle with delegation, preferring to handle tasks myself to ensure quality. This was evident in a group project where I took on too much.
I can be hesitant ...
I am looking for a competitive salary that reflects my skills and experience in software development.
Based on my research, the average salary for a software developer in this region is between $80,000 and $100,000.
I have over 5 years of experience in full-stack development, which I believe warrants a salary towards the higher end of that range.
I am open to discussing the entire compensation package, including benefits ...
I applied via Referral and was interviewed before Jun 2021. There were 2 interview rounds.
Java, program logic, software engineering
I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 2 interview rounds.
I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.
Some of the top questions asked at the IT-Asset Software Developer interview -
based on 1 review
Rating in categories
Software Engineer
3
salaries
| ₹1.8 L/yr - ₹7 L/yr |
Software Developer
3
salaries
| ₹1 L/yr - ₹2.4 L/yr |
TCS
Accenture
Wipro
Cognizant