Upload Button Icon Add office photos

D&K Technologies

Compare button icon Compare button icon Compare

Filter interviews by

D&K Technologies Interview Questions and Answers

Updated 9 Mar 2025
Popular Designations

9 Interview questions

A Python Developer was asked 3mo ago
Q. What is a CSRF token?
Ans. 

A CSRF token is a security measure to prevent unauthorized actions on behalf of authenticated users in web applications.

  • CSRF stands for Cross-Site Request Forgery.

  • It protects against attacks where unauthorized commands are transmitted from a user that the web application trusts.

  • A CSRF token is a unique, secret, and unpredictable value generated by the server and sent to the client.

  • The token is included in forms or...

View all Python Developer interview questions
A Python Developer was asked 3mo ago
Q. What is ORM?
Ans. 

ORM (Object-Relational Mapping) is a programming technique for converting data between incompatible type systems using objects.

  • ORM allows developers to interact with databases using Python objects instead of SQL queries.

  • Popular ORM libraries in Python include SQLAlchemy and Django ORM.

  • Example: Using Django ORM, you can create a new user with 'User.objects.create(username='john')'.

  • ORM abstracts database interaction...

View all Python Developer interview questions
A Java Developer was asked 9mo ago
Q. What is OOPS and why do we use it in Java?
Ans. 

OOPs (Object-Oriented Programming) is a programming paradigm based on objects and classes, enhancing code reusability and organization.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present ...

View all Java Developer interview questions
A Java Developer was asked 9mo ago
Q. What are the access modifiers in Java, and why do we use them?
Ans. 

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

View all Java Developer interview questions
A Java Developer was asked
Q. What is Hibernate?
Ans. 

Hibernate is an open-source ORM framework for Java that simplifies database interactions through object-relational mapping.

  • Hibernate maps Java classes to database tables, allowing developers to work with Java objects instead of SQL queries.

  • It supports various database systems like MySQL, PostgreSQL, Oracle, etc.

  • Hibernate provides features like caching, lazy loading, and transaction management to enhance performanc...

View all Java Developer interview questions
A Java Developer was asked
Q. What is an abstract class?
Ans. 

An abstract class in Java is a class that cannot be instantiated and may contain abstract methods that must be implemented by subclasses.

  • An abstract class can have both abstract methods (without a body) and concrete methods (with a body).

  • Example: 'abstract class Animal { abstract void sound(); }'

  • Subclasses must implement all abstract methods to be instantiated.

  • Example: 'class Dog extends Animal { void sound() { Sy...

View all Java Developer interview questions
A Web Developer was asked
Q. Define props and their use.
Ans. 

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

View all Web Developer interview questions
Are these interview questions helpful?
A Web Developer was asked
Q. What are Hooks in React?
Ans. 

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

View all Web Developer interview questions
A Web Developer was asked
Q. What is react and define react components
Ans. 

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

View all Web Developer interview questions

D&K Technologies Interview Experiences

6 interviews found

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

I appeared for an interview in Feb 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is csrf token
  • Ans. 

    A CSRF token is a security measure to prevent unauthorized actions on behalf of authenticated users in web applications.

    • CSRF stands for Cross-Site Request Forgery.

    • It protects against attacks where unauthorized commands are transmitted from a user that the web application trusts.

    • A CSRF token is a unique, secret, and unpredictable value generated by the server and sent to the client.

    • The token is included in forms or AJAX...

  • Answered by AI
  • Q2. What is ORM
  • Ans. 

    ORM (Object-Relational Mapping) is a programming technique for converting data between incompatible type systems using objects.

    • ORM allows developers to interact with databases using Python objects instead of SQL queries.

    • Popular ORM libraries in Python include SQLAlchemy and Django ORM.

    • Example: Using Django ORM, you can create a new user with 'User.objects.create(username='john')'.

    • ORM abstracts database interactions, ma...

  • Answered by AI

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 experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mathematical question , grammatical question

Round 2 - Technical 

(2 Questions)

  • Q1. What is oops and why we use it in java?
  • Q2. What are the access modifiers in java , why we use them?
Round 3 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself?
  • Q2. Tell me about your project?

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is react and define react components
  • Ans. 

    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

  • Answered by AI
  • Q2. What is Hooks in react
  • Ans. 

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

  • Answered by AI
  • Q3. Define props and its use
  • Ans. 

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

  • Answered by AI
  • Q4. Why did you choose this company
  • Ans. 

    I chose this company for its innovative projects, strong team culture, and commitment to professional growth.

    • The company is known for its cutting-edge technology, like the recent launch of a progressive web app that improved user engagement by 30%.

    • I admire the collaborative environment here, where team members regularly share knowledge through workshops and hackathons.

    • The emphasis on continuous learning aligns with my ...

  • Answered by AI
  • Q5. Hshs hshsh hshshs hshshs shshhs

Skills evaluated in this interview

Java Developer Interview Questions & Answers

user image Jigar Parmar

posted on 5 Apr 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 before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is interface?
  • Q2. What is Hibernate?
  • Q3. What is abstract class?
Round 2 - HR 

(2 Questions)

  • Q1. Current package
  • Q2. Notice period and joining date

Skills evaluated in this interview

Round 1 - One-on-one 

(1 Question)

  • Q1. About my self intro and test my skill

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't worry about interview. Just one round f2f interview. Just they will test your skill

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about D&K Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Java Developer Interview Questions & Answers

UBS user image Saloni Sharma

posted on 24 May 2024

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. AWS project related
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2022. There were 4 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 - Technical 

(1 Question)

  • Q1. Question were asked on basics of Java and SQL. Eg:- OOPS concepts, Collections
Round 3 - Technical 

(1 Question)

  • Q1. Questions were asked specific topics on Java and SQL again. This time it was moderate. Eg:- Exception Handling, Springboot, Subquery, Joins etc
Round 4 - HR 

(1 Question)

  • Q1. This round was normal and HR was explaining the company policies and discussed the package.

Interview Preparation Tips

Topics to prepare for Citicorp Java Developer interview:
  • Core Java
  • Advanced Java
  • Oracle
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(6 Questions)

  • Q1. Stringbuilder and string buffer diff
  • Ans. 

    StringBuilder is non-synchronized and faster, while StringBuffer is synchronized and thread-safe.

    • 1. Synchronization: StringBuffer is synchronized, making it thread-safe. StringBuilder is not synchronized, making it faster but not thread-safe.

    • 2. Performance: StringBuilder is generally preferred for single-threaded scenarios due to better performance.

    • 3. Usage: Use StringBuffer when you need to work with strings in a mult...

  • Answered by AI
  • Q2. Where we store the object of string
  • Q3. What is bean in springboot
  • Q4. What is query parameters and path param
  • Q5. Code snippet related to exception
  • Q6. Diff between exception and error

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:
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 - Technical 

(2 Questions)

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

Skills evaluated in this interview

D&K Technologies Interview FAQs

How many rounds are there in D&K Technologies interview?
D&K Technologies interview process usually has 1-2 rounds. The most common rounds in the D&K Technologies interview process are One-on-one Round, Technical and Aptitude Test.
How to prepare for D&K Technologies interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at D&K Technologies. The most common topics and skills that interviewers at D&K Technologies expect are Search Engine Marketing, Content Writing, Recruitment and Search Engine Optimization.
What are the top questions asked in D&K Technologies interview?

Some of the top questions asked at the D&K Technologies interview -

  1. what are the access modifiers in java , why we use th...read more
  2. What is react and define react compone...read more
  3. what is oops and why we use it in ja...read more
How long is the D&K Technologies interview process?

The duration of D&K Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

2.8/5

based on 6 interview experiences

Difficulty level

Easy 60%
Moderate 40%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 622 Interviews
Bajaj Finserv Interview Questions
4.0
 • 604 Interviews
Citicorp Interview Questions
3.7
 • 590 Interviews
HSBC Group Interview Questions
3.9
 • 512 Interviews
Xyz Company Interview Questions
3.8
 • 480 Interviews
Klm Axiva Finvest Interview Questions
4.4
 • 433 Interviews
American Express Interview Questions
4.1
 • 388 Interviews
BNY Interview Questions
3.8
 • 367 Interviews
UBS Interview Questions
3.9
 • 352 Interviews
View all

D&K Technologies Reviews and Ratings

based on 15 reviews

3.7/5

Rating in categories

3.7

Skill development

3.3

Work-life balance

3.3

Salary

3.0

Job security

3.2

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 15 Reviews and Ratings
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

Business Development Manager
5 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Embedded Developer
5 salaries
unlock blur

₹1.6 L/yr - ₹2 L/yr

Software Developer
4 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Explore more salaries
Compare D&K Technologies with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare
write
Share an Interview