Upload Button Icon Add office photos

Filter interviews by

D&K Technologies Trainee Interview Questions and Answers

Updated 22 Aug 2024

D&K Technologies Trainee Interview Experiences

1 interview found

Trainee Interview Questions & Answers

user image Anonymous

posted on 22 Aug 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

8 part of mcq questions with verbal logical and analytical and technical question of 4 parts

Round 2 - Coding Test 

10 question of program in our choosen languages

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write an API to fetch the id and JSON from the client.
  • Ans. 

    Create an API to fetch id and JSON from the client.

    • Create a RESTful API endpoint that accepts requests from the client

    • Use a GET request to fetch the id and JSON data from the client

    • Implement error handling for invalid requests or missing data

  • Answered by AI
  • Q2. Find forth highest salary from List using java 8.
  • Ans. 

    Use Java 8 stream to find the forth highest salary from a List.

    • Use stream() method to convert the List to a stream.

    • Use distinct() method to remove duplicates.

    • Use sorted() method to sort the salaries in ascending order.

    • Use skip() method to skip the first three highest salaries.

    • Use findFirst() method to get the forth highest salary.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Microservice Architecture questions
  • Q2. Spring Boot Annotations
Round 3 - HR 

(2 Questions)

  • Q1. Salary Expectation
  • Q2. Basic HR questions

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Thread safety of a class
  • Ans. 

    Ensuring that a class can be safely used by multiple threads concurrently.

    • Use synchronized keyword to ensure only one thread can access critical sections at a time.

    • Avoid mutable shared state to prevent race conditions.

    • Consider using thread-safe data structures like ConcurrentHashMap or AtomicInteger.

    • Implementing the java.util.concurrent.locks.Lock interface for more fine-grained control over synchronization.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1) How do you achieve concurrency in your current job, and write code for it? 2) Write code for Rest API using Springboot, need to write Entity, Service, Repository, and Controller classes? 3)Volatile keyw...
  • Ans. 

    Answers to common Java Developer interview questions

    • 1) Concurrency is achieved using multithreading in Java. Use threads, executors, or synchronized blocks. Example: using ExecutorService to run multiple tasks concurrently.

    • 2) Rest API in Springboot: Entity class defines database table, Service class contains business logic, Repository class interacts with database, Controller class handles HTTP requests.

    • 3) Volatile key...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Citicorp Java Developer interview:
  • exception handlin
  • multithreading
  • Springboot

Skills evaluated in this interview

Java Developer Interview Questions & Answers

Citicorp user image Kasinathan Nagarajan

posted on 18 May 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Good queries like
  • Q2. Sorting from two array,sum if the number equivalent to sequence of number.
  • Ans. 

    Sort and sum numbers from two arrays based on their sequence.

    • Sort both arrays in ascending order.

    • Iterate through both arrays simultaneously and compare the elements.

    • If the elements are equal, add them and move to the next element in both arrays.

    • If the element in the first array is smaller, move to the next element in the first array.

    • If the element in the second array is smaller, move to the next element in the second a...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The most common cognitive aptitude tests are the CCAT, PI Cognitive Assessment, Wonderlic test, McQuaig Mental Agility Test (MMAT), and Thomas GIA.

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

I applied via Campus Placement and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(3 Questions)

  • Q1. Interested your self : thank you for giving opportunity to introduce myself . I am Dheeraj Jadhav I am from Karnataka my graduation completed in PDA College of Engineering Kalburgi my stream is Electron...
  • Q2. Tell me about hobbies: my hobbies is playing cricket watching movie and reading book and helping Nature.
  • Q3. Tell me about your technical skill: my technical skill is Java HTML and SQL

Interview Preparation Tips

Topics to prepare for Xyz Company Java Developer interview:
  • Semiconductor
  • Digital Electronics
Interview preparation tips for other job seekers - I am Happy to Join your company because It's very use full my career to learn and good technical skill .

I appeared for an interview in Oct 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on DSA and Java.

  • Q1. 

    Max Element After Update Operations

    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...

  • Ans. 

    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

  • Answered by AI
  • Q2. Can you explain the internal working of a hash map in Java?
  • Ans. 

    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...

  • Answered by AI
  • Q3. Why do we need to override the equals and hashCode methods in Java?
  • Ans. 

    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...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions based around Java.

  • Q1. How can you print even and odd numbers in increasing order using two threads in Java?
  • Ans. 

    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.

  • Answered by AI
  • Q2. What is the internal working of a CopyOnWrite ArrayList?
  • Ans. 

    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

  • Answered by AI
  • Q3. What are the differences between Synchronized Collection and Concurrent Collection in Java?
  • Ans. 

    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...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMorgan Stanley interview preparation:Topics to prepare for the interview - Java, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Round 1 was an online hackerank coding test + technical MCQs.

It consisted of 5 MCQs + 1 SQL problem + 1 DSA problem based on queue + 1 Graph question + 1 java based question to create a REST API.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for any type of DSA problems for level medium to difficult.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Stream APIs, Default method, Java 8 features
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiation, why change in job

D&K Technologies Interview FAQs

How many rounds are there in D&K Technologies Trainee interview?
D&K Technologies interview process usually has 2 rounds. The most common rounds in the D&K Technologies interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

D&K Technologies Trainee Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 580 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
Bajaj Finserv Interview Questions
4.0
 • 538 Interviews
HSBC Group Interview Questions
3.9
 • 489 Interviews
Xyz Company Interview Questions
3.8
 • 464 Interviews
American Express Interview Questions
4.1
 • 366 Interviews
BNY Interview Questions
3.8
 • 351 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
View all
Software Developer
5 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Java Developer
5 salaries
unlock blur

₹1.8 L/yr - ₹2 L/yr

Graphic Designer
5 salaries
unlock blur

₹1 L/yr - ₹3.3 L/yr

Embedded Developer
5 salaries
unlock blur

₹1.6 L/yr - ₹2 L/yr

Business Development Manager
4 salaries
unlock blur

₹2.8 L/yr - ₹6 L/yr

Explore more salaries
Compare D&K Technologies with

JPMorgan Chase & Co.

3.9
Compare

Wells Fargo

3.8
Compare

Citicorp

3.7
Compare

HSBC Group

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview