Filter interviews by
I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.
8 part of mcq questions with verbal logical and analytical and technical question of 4 parts
10 question of program in our choosen languages
I applied via Walk-in and was interviewed in Mar 2024. There were 3 interview rounds.
Mathematical question , grammatical question
OOPs stands for Object-Oriented Programming. It is used in Java to organize code into objects for better reusability, maintainability, and scalability.
OOPs allows for the creation of classes and objects, which encapsulate data and behavior together.
It promotes concepts like inheritance, polymorphism, encapsulation, and abstraction.
Using OOPs in Java leads to modular and organized code, making it easier to understand an...
Access modifiers in Java control the visibility and accessibility of classes, methods, and variables.
Access modifiers include public, private, protected, and default (no modifier).
Public - accessible from any other class.
Private - only accessible within the same class.
Protected - accessible within the same package and subclasses.
Default - accessible only within the same package.
Access modifiers help in encapsulation, d
Experienced Java Developer with 5+ years of industry experience in developing web applications and software solutions.
5+ years of experience in Java development
Strong knowledge of web application development
Proficient in software solution design
Familiar with Agile methodologies
Excellent problem-solving skills
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
I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.
React is a JavaScript library for building user interfaces. React components are reusable, self-contained building blocks of a UI.
React is a JavaScript library for creating interactive UIs
React components are reusable and self-contained
Components can be nested within each other to create complex UI structures
Components can have their own state and lifecycle methods
React uses a virtual DOM to efficiently update the UI
Hooks in React are functions that allow you to use state and other React features in functional components.
Hooks are introduced in React 16.8 as a way to write reusable logic in functional components.
They allow you to use state and other React features without writing a class.
Hooks provide a way to break down complex components into smaller, reusable functions.
Some commonly used hooks are useState, useEffect, useContex...
Props are used in React to pass data from a parent component to a child component.
Props are read-only and cannot be modified by the child component
Props are passed as attributes to the child component in JSX
Props can be any type of data, including strings, numbers, objects, or even functions
Props can be used to customize the behavior or appearance of a component
Props can be accessed in the child component using the 'pr
I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.
An interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.
Interfaces are used to define a contract for classes that implement them.
Classes can implement multiple interfaces, but can only extend one class.
Interfaces are used to achieve abstraction and multiple inheritance in Java.
Example: interface Animal { void eat
Hibernate is an open-source Java framework that simplifies database operations by mapping Java objects to database tables.
Hibernate is an ORM (Object-Relational Mapping) tool.
It provides a way to map Java classes to database tables and Java data types to SQL data types.
Hibernate handles the mapping between Java objects and database tables, as well as the generation of SQL queries.
It simplifies database operations by al...
Abstract class is a class that cannot be instantiated and may contain abstract methods.
Cannot be instantiated directly
May contain abstract methods that must be implemented by subclasses
Can have both abstract and non-abstract methods
Used to define a common interface for subclasses
D&K Technologies interview questions for popular designations
Get interview-ready with Top D&K Technologies Interview Questions
Top trending discussions
I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.
I applied via Indeed and was interviewed in Jul 2024. There was 1 interview round.
Objects of String are stored in the String Pool in Java.
String objects are stored in the String Pool, a special memory area in Java heap memory.
String literals are automatically stored in the String Pool.
String objects created using the new keyword are not stored in the String Pool.
String.intern() method can be used to store a String object in the String Pool.
A bean in Spring Boot is a Java object that is instantiated, assembled, and managed by the Spring IoC container.
Beans are defined in the Spring configuration file or using annotations like @Component, @Service, @Repository, etc.
Beans are singleton by default but can be scoped as prototype, request, session, etc.
Beans are injected into other beans using dependency injection.
Example: @Component annotation is used to defi
Query parameters are used to pass data to a web server through the URL, while path parameters are part of the URL itself.
Query parameters are key-value pairs added to the end of a URL after a '?'
Path parameters are variables within the URL path itself, denoted by curly braces {}
Example of query parameter: www.example.com/api/users?id=123
Example of path parameter: www.example.com/api/users/{userId}
Exceptions are recoverable errors that can be handled in code, while errors are unrecoverable issues that usually result in program termination.
Exceptions are checked at compile time, while errors are unchecked.
Exceptions are subclasses of Throwable, while errors are subclasses of Error.
Examples of exceptions include FileNotFoundException, NullPointerException, while examples of errors include OutOfMemoryError, StackOv
I applied via Campus Placement and was interviewed in Jul 2022. There were 2 interview rounds.
I was interviewed in Oct 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical Interview round with questions on DSA and Java.
Given an array A
of size N
, initialized with all zeros, and another array ARR
of M
pairs of integers representing operations. Each operation consists of a range where e...
Find the maximum element in an array after performing a series of increment operations on specified ranges.
Initialize an array of size N with all zeros
Iterate through the operations and increment elements within specified ranges
Return the maximum element in the array after all operations
HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.
HashMap internally uses an array of linked lists to store key-value pairs.
When a key-value pair is added, the key is hashed to find the index in the array where it will be stored.
If multiple keys hash to the same index, a linked list is used to handle collisions.
Retrieving a value involves hashi...
Overriding equals and hashCode methods in Java is important for proper object comparison and hashing.
Equals method is used to compare two objects for equality, while hashCode method is used to generate a unique integer value for an object.
By overriding equals and hashCode methods, we can ensure that objects are compared based on their actual content rather than memory address.
This is crucial for collections like HashMa...
Round duration - 60 minutes
Round difficulty - Medium
Technical Interview round with questions based around Java.
Use two threads to print even and odd numbers in increasing order.
Create two threads, one for printing even numbers and one for printing odd numbers.
Use a shared variable to keep track of the current number to be printed.
Synchronize access to the shared variable to ensure correct ordering of numbers.
Use a loop in each thread to print the next number and update the shared variable.
CopyOnWriteArrayList creates a new copy of the underlying array whenever an element is added, modified, or removed.
CopyOnWriteArrayList is thread-safe and suitable for scenarios where reads are more frequent than writes.
Adding, modifying, or removing elements in CopyOnWriteArrayList creates a new copy of the underlying array, ensuring thread safety.
Iterators on CopyOnWriteArrayList operate on the original array and do
Synchronized Collection is thread-safe but may have performance issues, while Concurrent Collection is optimized for concurrent access.
Synchronized Collection uses synchronized keyword to achieve thread-safety, while Concurrent Collection uses non-blocking algorithms like CAS (Compare and Swap).
Synchronized Collection locks the entire collection during modification, leading to potential performance bottlenecks, while C...
Tip 1 : Thread concept is must for Morgan Stanley. So prepare that on priority
Tip 2 : Basic concepts of Oops/collection framework should be clear.
Tip 3 : Array based program will be asked so have some hands-on.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I applied via Naukri.com and was interviewed in Nov 2022. There were 4 interview rounds.
based on 5 interviews
Interview experience
based on 13 reviews
Rating in categories
Software Developer
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Java Developer
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Graphic Designer
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Embedded Developer
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Business Development Manager
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Bajaj Finserv
Wells Fargo
JPMorgan Chase & Co.
HSBC Group