i
Infosys
Filter interviews by
I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.
An abstract class is a class that cannot be instantiated and is meant to be subclassed.
An abstract class can have abstract and non-abstract methods.
Abstract methods have no implementation and must be implemented by the subclass.
A subclass can only extend one abstract class but can implement multiple interfaces.
Example: Animal is an abstract class with abstract method 'makeSound'. Dog and Cat are subclasses that impleme
Abstract is a class while interface is a contract. Abstract can have implementation while interface cannot.
Abstract class can have constructors while interface cannot
Abstract class can have non-abstract methods while interface cannot
A class can implement multiple interfaces but can only inherit from one abstract class
I applied via campus placement at Andhra University and was interviewed in May 2021. There was 1 interview round.
DBMS is a software to manage databases while RDBMS is a type of DBMS that uses a relational model.
DBMS stands for Database Management System while RDBMS stands for Relational Database Management System.
DBMS can manage any type of database while RDBMS uses a relational model to manage data.
RDBMS enforces ACID properties (Atomicity, Consistency, Isolation, Durability) while DBMS may not.
Examples of DBMS include MongoDB, ...
Cloud computing is the delivery of computing services over the internet.
Cloud computing allows users to access data and applications from anywhere with an internet connection.
It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises computing.
Examples include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.
I enjoy both single player and group games, depending on my mood and the type of game.
I prefer single player games when I want to relax and enjoy a story-driven experience.
I enjoy group games when I want to socialize and collaborate with others.
Some examples of single player games I enjoy are The Witcher 3 and Skyrim.
Some examples of group games I enjoy are Overwatch and League of Legends.
Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.
Bubble sort has a time complexity of O(n^2)
It is not efficient for large datasets
It is easy to implement and understand
Example: [5, 3, 8, 4, 2] -> [2, 3, 4, 5, 8]
JavaScript cannot be embedded in CSS. They are separate languages used for different purposes.
CSS is used for styling and layout of web pages
JavaScript is used for adding interactivity and functionality to web pages
JavaScript can be included in HTML using