Upload Button Icon Add office photos

Filter interviews by

Ducen It Interview Questions and Answers

Updated 2 Jul 2024

Ducen It Interview Experiences

Popular Designations

7 interviews found

Trainee Interview Questions & Answers

user image Anonymous

posted on 2 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your ling term Goals
  • Ans. 

    My long term goal is to become a successful entrepreneur and make a positive impact in my community.

    • Establish my own business in the tech industry

    • Create job opportunities for others

    • Give back to the community through philanthropic efforts

  • Answered by AI
  • Q2. What atr you expecting

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)

Software Developer Interview Questions & Answers

user image Nandhana Gopi

posted on 10 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Technical,Verbal,Quants

Round 2 - One-on-one 

(1 Question)

  • Q1. JAVA OOPS CONCEPTS

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

1 round aptitude went for 30 mins

Round 2 - One-on-one 

(1 Question)

  • Q1. They asked about basic of java and skill
Round 3 - One-on-one 

(1 Question)

  • Q1. Questiona were aaked mostly from project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in what you know

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

It was bit hard but can solve questions

Round 2 - Technical 

(2 Questions)

  • Q1. They asked questions mostly about oops
  • Q2. Puzzle solving was also asked

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Ducen It interview questions for popular designations

 Software Developer

 (2)

 Software Engineer

 (2)

 Java Developer

 (1)

 Technical Lead

 (1)

 Trainee

 (1)

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

I applied via Naukri.com and was interviewed before Dec 2022. There were 3 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. Sql related basic functions, ssis package task development and deployment related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Group head will connect to you will ask about the how we did work and you can ask details from him about to team and it's technology

Interview Preparation Tips

Interview preparation tips for other job seekers - If your developer on previous role, this will be easy for you

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Karpagam College of Engineering, Coimbatore and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

30 mins and they given 25 questions

Round 2 - HR 

(1 Question)

  • Q1. Tech stack u interested

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Jobs at Ducen It

View all

I applied via Referral and was interviewed in May 2021. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Recent project worked and technology used
  • Ans. 

    Developed a web application using React and Node.js

    • Used React for the frontend and Node.js for the backend

    • Implemented RESTful APIs for communication between frontend and backend

    • Used MongoDB as the database for storing and retrieving data

    • Implemented authentication and authorization using JSON Web Tokens (JWT)

    • Deployed the application on AWS EC2 instance

  • Answered by AI
  • Q2. Roles and responsibilities and real time scenarios were asked

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Interview questions from similar companies

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. What are the concepts of threads in Java?
  • Ans. 

    Threads in Java allow for concurrent execution of code, enabling multitasking and improving performance.

    • Threads are lightweight sub-processes within a process.

    • They allow for concurrent execution of code, enabling multitasking.

    • Threads share the same memory space, allowing for efficient communication and data sharing.

    • Examples include creating threads using the Thread class or implementing the Runnable interface.

  • Answered by AI
  • Q2. Volatile keyword uses, refied keyword and its use in generics
  • Ans. 

    Volatile keyword ensures visibility of changes to variables across threads. Reified keyword is used to access type information at runtime in generics.

    • Volatile keyword is used to indicate that a variable's value will be modified by different threads.

    • It ensures that changes made by one thread to a volatile variable are visible to other threads.

    • Reified keyword is used in generics to access type information at runtime, whi...

  • Answered by AI
  • Q3. Multi module architecture in android pros and cons
  • Ans. 

    Multi module architecture in Android involves breaking down an app into multiple modules for better organization and scalability.

    • Pros: better organization, easier maintenance, faster build times, code reusability

    • Cons: increased complexity, potential for dependency issues, learning curve for developers

    • Example: Breaking down an app into separate modules for UI, networking, and data storage can make it easier to work on d

  • Answered by AI
  • Q4. Generics in java
  • Ans. 

    Generics in Java allow for creating classes, interfaces, and methods that operate on types parameterized at compile time.

    • Generics provide type safety by allowing the compiler to detect and prevent type errors at compile time.

    • They enable code reusability by writing generic algorithms that work on different types.

    • Example: List<String> names = new ArrayList<>();

    • Example: public class Box<T> { private T va

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Litmus7 Systems Consulting Senior Android Developer interview:
  • Java
  • Kotlin
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What are Agile Values? Scrum Values? Scrum Ceremonies? Story Points?
  • Ans. 

    Agile values include individuals and interactions over processes and tools, while Scrum values include commitment, courage, focus, openness, and respect.

    • Agile values prioritize individuals and interactions over processes and tools

    • Scrum values include commitment, courage, focus, openness, and respect

    • Scrum ceremonies include Sprint Planning, Daily Standup, Sprint Review, and Sprint Retrospective

    • Story points are a unit of...

  • Answered by AI
  • Q2. As project manager what docs do you prepare? How do you contribute as a PM?
  • Ans. 

    As a project manager, I prepare various documents such as project plans, schedules, budgets, risk assessments, and progress reports. I contribute by leading the team, managing resources, and ensuring project success.

    • Prepare project plans outlining scope, objectives, deliverables, and timelines

    • Create schedules to allocate tasks and track progress

    • Develop budgets to manage project costs effectively

    • Conduct risk assessments...

  • Answered by AI
  • Q3. Capacity? Velocity? etc Agile/Scrum-based questions (bookish) this round was taken by Rajni
Round 2 - One-on-one 

(6 Questions)

  • Q1. Megha took my final round and asked me questions about Agile/Scrum, Stroy Points (estimation).
  • Q2. Ques on explaining Sprint Planning, Retro, Review, using Doc/Excel (screen sharing)
  • Q3. Ques on Conflict and Resource Management, some scenario-based question.
  • Q4. How will you make a low-performing resource a high-performing one?
  • Ans. 

    Provide clear expectations, offer support and training, provide feedback and recognition, set goals and milestones.

    • Clearly communicate expectations and goals to the resource.

    • Offer support and training to help the resource improve their skills and knowledge.

    • Provide regular feedback and recognition for progress made.

    • Set specific goals and milestones to track improvement.

    • Create a development plan with the resource to addr...

  • Answered by AI
  • Q5. Megha did not hire me because she felt I had adequate knowledge and practical experience. (insecurities) Anyway, good luck with your interview.
  • Q6. What is Scrum of Scrums? What is PI planning?
  • Ans. 

    Scrum of Scrums is a scaled agile framework where multiple Scrum teams coordinate their work. PI planning is a key event in SAFe where teams plan their work for the upcoming Program Increment.

    • Scrum of Scrums involves representatives from each Scrum team meeting regularly to discuss dependencies and progress.

    • PI planning is a two-day event where teams align on their objectives, dependencies, and priorities for the upcomi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Magic Edtech Project Manager interview:
  • Agile Methodology
  • Waterfall
  • Scrum
  • Project Management
Interview preparation tips for other job seekers - Be well prepared with your bookish as well as practical answers.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

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

Round 1 - HR 

(2 Questions)

  • Q1. How could you use AI in a company?
  • Q2. Tell me about your past experience.
Round 2 - Aptitude Test 

Few maths , few English , few problem solving

Round 3 - Technical 

(2 Questions)

  • Q1. Few details about data Science regressions and all
  • Q2. Write pseudo code in python

Interview Preparation Tips

Interview preparation tips for other job seekers - Please ask them if they are serious about this job or if they are doing the time pass as they don't have anything else to do, even if they tell you they are selecting you don't believe them, don't leave other offers because of them.

Ducen It Interview FAQs

How many rounds are there in Ducen It interview?
Ducen It interview process usually has 2-3 rounds. The most common rounds in the Ducen It interview process are One-on-one Round, Aptitude Test and Resume Shortlist.
How to prepare for Ducen It 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 Ducen It. The most common topics and skills that interviewers at Ducen It expect are Javascript, Automotive Engineering, Java, Financial Services and SQL.
What are the top questions asked in Ducen It interview?

Some of the top questions asked at the Ducen It interview -

  1. Recent project worked and technology u...read more
  2. What is your ling term Go...read more
  3. Group head will connect to you will ask about the how we did work and you can a...read more

Tell us how to improve this page.

Ducen It Interview Process

based on 3 interviews in last 1 year

Interview experience

4.3
  
Good

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
Cyient Interview Questions
3.7
 • 280 Interviews
View all

Ducen It Reviews and Ratings

based on 66 reviews

3.7/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.5

Salary

3.0

Job security

3.4

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 66 Reviews and Ratings
Data Scientist::Technical Lead

Chennai

4-10 Yrs

Not Disclosed

Automation QA (AI Testing)

Kolkata,

Mumbai

+5

4-7 Yrs

Not Disclosed

Performance testing (JMeter)

Kolkata,

Mumbai

+5

5-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
84 salaries
unlock blur

₹5.1 L/yr - ₹13.5 L/yr

Associate Software Engineer
55 salaries
unlock blur

₹4 L/yr - ₹8.2 L/yr

Senior Software Engineer
52 salaries
unlock blur

₹7 L/yr - ₹18.5 L/yr

Technical Lead
22 salaries
unlock blur

₹10 L/yr - ₹26 L/yr

Software Developer
20 salaries
unlock blur

₹4.8 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Ducen It with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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