Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Dignizant Technologies Team. If you also belong to the team, you can get access from here

Dignizant Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Dignizant Technologies Interview Questions, Process, and Tips

Updated 21 Mar 2025

Top Dignizant Technologies Interview Questions and Answers

Dignizant Technologies Interview Experiences

Popular Designations

5 interviews found

3D Artist Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Software relate
  • Q2. What is diffrent maya and blender
  • Ans. 

    Maya and Blender are both 3D modeling software, but Maya is more commonly used in professional settings while Blender is open-source and free.

    • Maya is more commonly used in professional settings due to its advanced features and industry recognition.

    • Blender is open-source and free, making it more accessible to beginners and hobbyists.

    • Maya has a steeper learning curve compared to Blender.

    • Blender has a more active online c...

  • Answered by AI
  • Q3. Are you know about unity and unreal engin
  • Q4. Are you use unity
  • Ans. 

    Yes, I use Unity for creating 3D art and animations.

    • I use Unity for creating 3D models, animations, and visual effects.

    • Unity provides a user-friendly interface and powerful tools for 3D artists.

    • I have experience with Unity's lighting and shading features to enhance the visual quality of my work.

  • Answered by AI
  • Q5. Are you using unreal engin ?
  • Ans. 

    Yes, I am using Unreal Engine for my 3D projects.

    • I use Unreal Engine for creating realistic environments and characters.

    • Unreal Engine offers powerful tools for creating interactive experiences.

    • I have experience with Unreal Engine's Blueprint visual scripting system.

  • Answered by AI
  • Q6. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - If you sure to your software and befor interview set you can ask hr to what is the software need and what type of work

Skills evaluated in this interview

3D Artist Interview Questions asked at other Companies

Q1. How can we copy unwrap of an object to another object?
View answer (3)

Flutter Developer Interview Questions & Answers

user image shivaprasad naik

posted on 25 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Basic flutter question
Round 2 - Coding Test 

A task doc will be shared

Flutter Developer Interview Questions asked at other Companies

Q1. Write the code on paper how to intigrate the api in your flutter app?
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. What is K-means clustering and how does it work?
  • Ans. 

    K-means clustering is an unsupervised machine learning algorithm that partitions data into K distinct clusters based on feature similarity.

    • K-means initializes K centroids randomly from the data points.

    • Each data point is assigned to the nearest centroid, forming K clusters.

    • Centroids are recalculated as the mean of all points in each cluster.

    • The process of assignment and centroid recalculation repeats until convergence.

    • E...

  • Answered by AI
  • Q2. What is the difference between Long Short-Term Memory (LSTM) networks and Recurrent Neural Networks (RNN)?
  • Ans. 

    LSTMs are a type of RNN designed to overcome the vanishing gradient problem, enabling better long-term dependency learning.

    • LSTMs have memory cells that store information over long periods, while RNNs can forget information quickly.

    • LSTMs use gates (input, output, forget) to control the flow of information, whereas RNNs lack this mechanism.

    • RNNs can struggle with long sequences due to vanishing gradients, while LSTMs are ...

  • Answered by AI

Ai Ml Engineer Interview Questions asked at other Companies

Q1. Can you describe a recent machine learning project you built, including a walkthrough of the project and a code sample?
View answer (1)

Interview Questions & Answers

user image aniket hendle

posted on 7 Aug 2024

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

(1 Question)

  • Q1. All react and javascript

Dignizant Technologies interview questions for popular designations

 3D Artist

 (1)

 Flutter Developer

 (1)

 Ai Ml Engineer

 (1)

 Mern Stack Developer

 (1)

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

I applied via Company Website and was interviewed before Oct 2023. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Introduce yourself.
  • Ans. 

    I am a Mern Stack Developer with 5 years of experience in building web applications using MongoDB, Express, React, and Node.js.

    • 5 years of experience in Mern Stack development

    • Proficient in MongoDB, Express, React, and Node.js

    • Strong understanding of RESTful APIs

    • Experience with front-end technologies like HTML, CSS, and JavaScript

    • Familiarity with version control systems like Git

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions based on the stack
Round 3 - Assignment 

Machine test with some basic requirements

Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion regarding offer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Follow atleast basic professional etiquettes, and keep energetic , Try to cover all topics in your stack.

Mern Stack Developer Interview Questions asked at other Companies

Q1. Middle of a Linked List You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list. If there is an odd number of elements, return the middle element. If there are an even ... read more
View answer (1)

Interview questions from similar companies

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

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. In first technical round they will ask some logical questions, problems related to react, graphql, node. They might show you some screenshot related to react and node error.
  • Ans. Before start technical round just go through data structures problems like sorting, searching etc. Also go through your projects and common problems that you faced in your projects.
  • Answered Anonymously
  • Q2. Second technical round will be manager round they will give you some scenario and ask for estimation and solutions.
  • Ans. For this just make practice of rendering values through json. Also go through your past project and see the some common task like third party integration, payment gateway etc. And think about the estimation.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - First round will be online aptitude test. If you found qualified in first round they will call you for next two rounds and both round will be technical. If you qualified these two rounds then they will call for hr and salary discussion round.

I appeared for an interview in Mar 2017.

Interview Questionnaire 

7 Questions

  • Q1. Questiosns on oops concept
  • Q2. SQL questions
  • Q3. Ability to speak in English
  • Q4. Information about the company
  • Q5. Negotiation round
  • Q6. Ready to reallocate
  • Ans. 

    Yes, I am ready to reallocate.

    • I am open to relocating to a different city or country for the right opportunity.

    • I have experience working remotely and can adapt to different work environments.

    • I am willing to travel for work-related purposes if required.

  • Answered by AI
  • Q7. Salary expectations

Interview Preparation Tips

Round: Test
Experience: aptitude test arranged by netwin infosolutions. difficulty level was moderate.
Tips: prepare indiabix questions
Duration: 30 minutes
Total Questions: 30

Round: Group Discussion
Experience: everybody got a chance to talk and we are 15 students in our group.
Tips: keep calm and mark your uniqueness.
Duration: 15 minutes

Round: Technical Interview
Experience: before this round, we got some questions on oops and SQL queries and we have to give answers to them on paper which examined at the time of interview.
Tips: prepare oops concepts and database queries

Skills: Problem Solving Abilties, Group Discussion Skills, Aptitude, Confidence
College Name: Amrutvahini College Of Engineering

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

Dignizant Technologies Interview FAQs

How many rounds are there in Dignizant Technologies interview?
Dignizant Technologies interview process usually has 1-2 rounds. The most common rounds in the Dignizant Technologies interview process are Technical, HR and Coding Test.
How to prepare for Dignizant 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 Dignizant Technologies. The most common topics and skills that interviewers at Dignizant Technologies expect are PHP, CakePHP, Debugging, Digital Marketing and Javascript.
What are the top questions asked in Dignizant Technologies interview?

Some of the top questions asked at the Dignizant Technologies interview -

  1. What is the difference between Long Short-Term Memory (LSTM) networks and Recur...read more
  2. What is K-means clustering and how does it wo...read more
  3. What is diffrent maya and blen...read more

Tell us how to improve this page.

Dignizant Technologies Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 142 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
Aapna Infotech Interview Questions
4.5
 • 16 Interviews
QuyTech Interview Questions
3.3
 • 13 Interviews
Greytrix Interview Questions
3.7
 • 12 Interviews
View all

Dignizant Technologies Reviews and Ratings

based on 15 reviews

4.8/5

Rating in categories

4.6

Skill development

4.7

Work-life balance

4.5

Salary

4.6

Job security

4.7

Company culture

4.6

Promotions

4.6

Work satisfaction

Explore 15 Reviews and Ratings
Flutter Developer
5 salaries
unlock blur

₹3 L/yr - ₹6.6 L/yr

Flutter Application Developer
4 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Mern Stack Developer
4 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Front end Developer
3 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Senior Android Developer
3 salaries
unlock blur

₹4.9 L/yr - ₹6 L/yr

Explore more salaries
Compare Dignizant Technologies with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

DynPro

3.8
Compare

ClaySys

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