Filter interviews by
I applied via Campus Placement and was interviewed in May 2023. There were 3 interview rounds.
It was having mcq questions from java
Most of the questions were from multi threading
Java is a high-level programming language known for its portability and object-oriented programming support. OOPs stands for Object-Oriented Programming. HashMap and HashSet are both data structures in Java, but HashMap is used to store key-value pairs while HashSet is used to store unique elements.
Java is a high-level programming language used for developing applications and software.
OOPs (Object-Oriented Programming)...
Collection framework in Java is a set of classes and interfaces that provide a way to store and manipulate groups of objects.
Collection framework provides interfaces like List, Set, and Map for storing and manipulating groups of objects.
It includes classes like ArrayList, LinkedList, HashSet, and HashMap that implement these interfaces.
Collections in Java provide methods for adding, removing, and accessing elements in ...
Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.
Encapsulation helps in hiding the internal state of an object and restricting access to it.
It allows for better control over the data by preventing direct access and manipulation.
Encapsulation also helps in achieving data abstraction, where the internal details of an object are hidden and only the nec...
Yes, we can use try block without catch block to handle exceptions using finally block.
Try block can be used without catch block if there is a finally block to handle exceptions.
Finally block is executed whether an exception is thrown or not.
Example: try { // code that may throw exception } finally { // code to be executed regardless of exception }
I applied via Campus Placement and was interviewed in Jul 2022. There were 2 interview rounds.
This was just a technical test in which there were 30 MCQs based on your job domain. In my case it was questions based on core Java and advanced java and Java Frameworks.
A collection is a framework that provides an architecture to store and manipulate a group of objects.
Collections are used to store, retrieve, manipulate, and communicate data between objects.
They provide various data structures like lists, sets, and maps.
Collections offer methods to add, remove, and search for elements in the collection.
Examples of collections in Java include ArrayList, HashSet, and HashMap.
Thread in Java is a lightweight sub-process that executes a set of instructions independently.
Thread can be defined by extending the Thread class or implementing the Runnable interface.
Thread class provides various methods to control the execution of threads like start(), sleep(), join(), etc.
Runnable interface has only one method run() which needs to be implemented.
Threads can be created and started using the start() ...
Servlets and JSP are Java technologies used for web development.
Servlets are Java classes that handle HTTP requests and responses.
JSP (JavaServer Pages) are HTML pages with embedded Java code.
Servlets and JSP work together to create dynamic web pages.
Servlets are faster than JSP as they directly generate HTML.
JSP is easier to use for web designers as it allows them to focus on HTML and CSS.
Polymorphism is the ability of an object to take on many forms.
Polymorphism allows objects of different classes to be treated as if they are of the same class.
It can be achieved through method overloading and method overriding.
Example: A parent class Animal can have child classes like Dog, Cat, and Cow. All these child classes can have their own implementation of the method 'makeSound', but they can be called using the...
Java provides JDBC API to connect with databases.
Load the JDBC driver class
Create a connection object
Create a statement object
Execute the query
Process the result set
Checked exceptions are checked at compile-time while unchecked exceptions are not checked at compile-time.
Checked exceptions are those which are checked at compile-time and the programmer is forced to handle them using try-catch or throws keyword.
Unchecked exceptions are those which are not checked at compile-time and the programmer is not forced to handle them.
Examples of checked exceptions are IOException, ClassNotFo...
throw is used to explicitly throw an exception while throws is used to declare the exception that a method may throw.
throw is used to handle exceptional situations in the code
throws is used to declare the exceptions that a method may throw
throw is followed by an instance of an exception class
throws is followed by the list of exceptions that a method may throw
throw is used inside a method
throws is used in the method sig
I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.
It was an easy level DSA problem.
I applied via Walk-in and was interviewed before Oct 2021. There were 2 interview rounds.
OOPS stands for Object-Oriented Programming System in Java.
OOPS is a programming paradigm that uses objects to represent real-world entities.
It focuses on encapsulation, inheritance, and polymorphism.
Encapsulation is the process of hiding data and methods within a class.
Inheritance allows a subclass to inherit properties and methods from a superclass.
Polymorphism allows objects to take on multiple forms or behaviors.
Ex...
Polymorphism is the ability of an object to take on many forms.
Polymorphism allows objects of different classes to be treated as if they are of the same class.
It can be achieved through method overloading or method overriding.
Example: A parent class Animal can have child classes like Dog, Cat, and Cow. All these child classes can have their own implementation of the method 'makeSound', but they can be treated as Animal...
Asite Solutions interview questions for designations
Top trending discussions
I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.
I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.
I applied via Campus Placement and was interviewed in Oct 2023. There were 4 interview rounds.
Topics: maps, sorting and simple DSA question
A linked list is a data structure where each element points to the next element in the sequence.
Linked list is stored in memory as nodes, where each node contains data and a reference to the next node.
Examples of linked-list include a singly linked list, doubly linked list, and circular linked list.
In a singly linked list, each node points to the next node. In a doubly linked list, each node points to both the next and
ML models are built by collecting and preparing data, selecting a model, training the model on the data, and evaluating its performance.
Collect and prepare data by cleaning, transforming, and encoding it
Select a model based on the problem at hand (e.g. regression, classification, clustering)
Train the model using algorithms like linear regression, decision trees, or neural networks
Evaluate the model's performance using ...
Arrays store elements in contiguous memory locations, while linked lists store elements in nodes with pointers to the next node.
Arrays have fixed size, while linked lists can dynamically grow or shrink.
Accessing elements in arrays is faster (O(1)), while accessing elements in linked lists is slower (O(n)).
Inserting or deleting elements in arrays can be inefficient, as it may require shifting elements, while in linked l...
Return a string containing the first occurrence of characters in the input string.
Create an empty string to store the result.
Iterate through each character in the input string.
If the character is not already in the result string, add it to the result string.
Return the result string.
One of the hardest DSA questions I have done involved implementing a complex graph traversal algorithm.
The question required understanding of graph data structures and algorithms.
I had to implement a depth-first search or breadth-first search algorithm.
The question may have involved finding the shortest path in a weighted graph.
I had to consider edge cases and optimize the algorithm for efficiency.
2 hours of duration and medium level leetcode questions
OS stands for Operating System. It is a software that manages computer hardware and provides services for computer programs.
OS is the software that acts as an intermediary between computer hardware and user applications.
It manages computer resources such as memory, processors, devices, and file systems.
Examples of popular operating systems include Windows, macOS, Linux, and Android.
Deadlock can be avoided by implementing proper resource allocation strategies and using techniques like deadlock prevention, avoidance, detection, and recovery.
Implement proper resource allocation strategies such as resource ordering, wait-die, wound-wait, etc.
Use techniques like deadlock prevention by ensuring that the system never enters a deadlock state, avoidance by ensuring that the system does not enter an unsafe...
posted on 30 Oct 2023
C# is a programming language developed by Microsoft for building a wide range of applications on the .NET framework.
C# is an object-oriented language with features like classes, inheritance, and polymorphism.
It is strongly typed, meaning variables must be declared with a specific data type.
C# supports modern programming concepts like async/await for asynchronous programming.
It is commonly used for developing desktop, w...
based on 1 interview
Interview experience
based on 2 reviews
Rating in categories
Java Developer
21
salaries
| ₹0 L/yr - ₹0 L/yr |
UI Developer
15
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate Software Engineer
11
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
10
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Software Engineer
10
salaries
| ₹0 L/yr - ₹0 L/yr |
Aconex
Procore
Trimble
Autodesk