Upload Button Icon Add office photos

Filter interviews by

D&K Technologies Web Developer Interview Questions and Answers

Updated 1 Feb 2024

D&K Technologies Web Developer Interview Experiences

1 interview found

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
  • Q5. Hshs hshsh hshshs hshshs shshhs

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Diff btwn this and arrow in javascript
  • Ans. 

    The 'this' keyword in JavaScript refers to the current object, while the arrow function does not bind its own 'this'.

    • The 'this' keyword in JavaScript refers to the object that is executing the current function.

    • Arrow functions do not bind their own 'this' value, instead they inherit the 'this' value from the enclosing lexical context.

    • Using 'this' in a regular function can lead to unexpected behavior, especially in neste...

  • Answered by AI
  • Q2. Diff btwn let, var, const
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and behaviors.

    • let is block-scoped and can be reassigned, var is function-scoped and can be reassigned, const is block-scoped and cannot be reassigned

    • Using let:

    • let x = 10;

    • x = 20; // valid

    • Using var:

    • var y = 5;

    • y = 8; // valid

    • Using const:

    • const z = 15;

    • z = 25; // error, cannot reassign const variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - stick with basics of javascript and react

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Medium level aptitude test

Round 2 - Coding Test 

I was not shortlisted for this round

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

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Data binding techniques
  • Ans. 

    Data binding techniques allow for synchronization of data between the model and the view in web development.

    • Two-way data binding ensures that changes in the model are reflected in the view and vice versa

    • One-way data binding updates the view when the model changes, but not the other way around

    • Data binding libraries like AngularJS, React, and Vue.js provide tools for efficient data binding

  • Answered by AI
  • Q2. Project related information

Interview Preparation Tips

Interview preparation tips for other job seekers - Not so good experience

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell about a time where you had competing demands from stakeholders.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Diff btwn this and arrow in javascript
  • Ans. 

    The 'this' keyword in JavaScript refers to the current object, while the arrow function does not bind its own 'this'.

    • The 'this' keyword in JavaScript refers to the object that is executing the current function.

    • Arrow functions do not bind their own 'this' value, instead they inherit the 'this' value from the enclosing lexical context.

    • Using 'this' in a regular function can lead to unexpected behavior, especially in neste...

  • Answered by AI
  • Q2. Diff btwn let, var, const
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and behaviors.

    • let is block-scoped and can be reassigned, var is function-scoped and can be reassigned, const is block-scoped and cannot be reassigned

    • Using let:

    • let x = 10;

    • x = 20; // valid

    • Using var:

    • var y = 5;

    • y = 8; // valid

    • Using const:

    • const z = 15;

    • z = 25; // error, cannot reassign const variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - stick with basics of javascript and react

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Why use php ?
  • Ans. 

    PHP is a popular server-side scripting language used for web development.

    • PHP is easy to learn and use for web development.

    • PHP has a large community and extensive documentation for support.

    • PHP is compatible with various operating systems and web servers.

    • PHP can be embedded directly into HTML code for dynamic web pages.

    • PHP can interact with databases like MySQL to create dynamic content.

  • Answered by AI
  • Q2. Php popular framewrk?.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Small UI task using Vue.js
  • Ans. 

    Create a small UI task using Vue.js

    • Create a simple form with input fields and a submit button

    • Use Vue.js directives like v-model for data binding

    • Implement validation for the form fields

    • Display a success message upon form submission

  • Answered by AI
  • Q2. Find the second largest number
  • Ans. 

    Iterate through the array to find the second largest number

    • Iterate through the array and keep track of the largest and second largest numbers

    • Compare each element with the largest and second largest numbers to update them accordingly

    • Return the second largest number once the iteration is complete

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Javascript questions. Object, Arrow function.

Interview Preparation Tips

Topics to prepare for JPMorgan Chase & Co. Front end Developer interview:
  • Javascript
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Medium level aptitude test

Round 2 - Coding Test 

I was not shortlisted for this round

D&K Technologies Interview FAQs

How many rounds are there in D&K Technologies Web Developer interview?
D&K Technologies interview process usually has 1 rounds. The most common rounds in the D&K Technologies interview process are Technical.
What are the top questions asked in D&K Technologies Web Developer interview?

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

  1. What is react and define react compone...read more
  2. What is Hooks in re...read more
  3. Define props and its ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 560 Interviews
Wells Fargo Interview Questions
3.9
 • 554 Interviews
Bajaj Finserv Interview Questions
4.0
 • 497 Interviews
HSBC Group Interview Questions
4.0
 • 488 Interviews
Xyz Company Interview Questions
3.8
 • 447 Interviews
American Express Interview Questions
4.2
 • 358 Interviews
UBS Interview Questions
4.0
 • 334 Interviews
BNY Interview Questions
4.0
 • 332 Interviews
Morgan Stanley Interview Questions
3.7
 • 301 Interviews
View all

D&K Technologies Web Developer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

3.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

2.0

Job Security

2.0

Company culture

1.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
5 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Java Developer
5 salaries
unlock blur

₹1.8 L/yr - ₹2.4 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

Bajaj Finserv

4.0
Compare

Wells Fargo

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare

HSBC Group

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview