Upload Button Icon Add office photos
Engaged Employer

i

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

Ducont Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 41 Reviews

Filter interviews by

Ducont DOT NET Developer Interview Questions and Answers

Updated 1 Feb 2022

Ducont DOT NET Developer Interview Experiences

1 interview found

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic of mvc,oops,web api

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be strong on basic concepts

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Hard
Process Duration
6-8 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Tech questions on dot net
Round 2 - Behavioral 

(1 Question)

  • Q1. To check your knowledge and communication skills
Round 3 - Client Interview 

(1 Question)

  • Q1. They are not even proceeding on time with the client interview . I have to quit the process because they already took 1 week for client interview round
Round 4 - HR 

(1 Question)

  • Q1. Basic discussion.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization helps in minimizing data redundancy by dividing the database into multiple tables.

    • It ensures data integrity by avoiding update anomalies.

    • Normalization is achieved through a series of rules called normal forms, such as 1NF, 2NF, 3NF, etc.

    • Example: In a database, instead of storing customer details i...

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

    Reflection is the ability of a program to examine and modify its own structure and behavior at runtime.

    • Allows accessing metadata of types and members at runtime

    • Enables dynamic instantiation of objects

    • Facilitates invoking methods dynamically

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

I applied via Walk-in and was interviewed in Jun 2023. 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 - HR 

(2 Questions)

  • Q1. -Self intro -Some simple topics to speak for 5 minutes till the satisfied with your english.
  • Q2. Topics like your native, internet benefits and social media
Round 3 - Aptitude Test 

-Quantitative easy, intermediate
-Mathematical easy, intermediate
-Logical easy, intermediate
-programming questions too but it is easy like syntax correction and McQ in coding.

Round 4 - Coding Test 

This was taken by two senior developers
30mins interview which the questions will be asked on your skill section.
-About Dotnet
-c#
-Oops principles
-HTML, CSS
-React Js basics
-SQL queries
But they asked only the basics so cover all the fundamentals before interview
Good luck guys!

Interview Preparation Tips

Topics to prepare for SrinSoft Technologies DOT NET Developer interview:
  • C#.Net
  • Javascript
  • HTML
  • CSS
  • SQL
Interview preparation tips for other job seekers - Study according to the company Requirements
Courses and certificates makes you first priority for the HR
Spoken English important
Be open with them don't lie about your skills in resume
Keep it simple don't panic🙂
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Code Snept question with 3-4 Reasoning question. Google form

Round 2 - Assignment 

Pen paper coding round. String , Array . Linkedlist , graph, questions

Round 3 - Technical 

(3 Questions)

  • Q1. Maximum Spaning
  • Q2. Nearest Prime number
  • Ans. 

    To find the nearest prime number, iterate from the given number in both directions until a prime number is found.

    • Start iterating from the given number in both directions to find the nearest prime number.

    • Check if a number is prime by dividing it by all numbers less than its square root.

    • Keep track of the closest prime number found during the iteration.

  • Answered by AI
  • Q3. Second Maximum Number in Array
  • Ans. 

    Find the second maximum number in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Project Question
  • Q2. Robot question of DSA
  • Q3. Stock Buy and sell - VI . Leetcode Hard
  • Q4. Leetcode Medium

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 DSA question was asked

Round 2 - Aptitude Test 

40 questions in 20 minutes

Round 3 - Technical 

(2 Questions)

  • Q1. Stones games 2 leetcode
  • Q2. Permutations of array
  • Ans. 

    Generate all possible permutations of an array of strings

    • Use recursion to generate permutations

    • Swap elements to create different permutations

    • Base case: when array size is 1, return array as permutation

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Project discussion

Skills evaluated in this interview

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

I applied via campus placement at GLA Institute of Technology and Management, Mathura and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

30min Pseudo Code,Ratio and Proportion

Round 2 - Coding Test 

1 hour Array,HashMap

Round 3 - Technical 

(4 Questions)

  • Q1. Write a program a string is Anagram or not
  • Ans. 

    Program to check if a string is an Anagram or not

    • Create a function that takes in two strings as input

    • Sort the characters in both strings and compare if they are equal

    • Return true if they are anagrams, false otherwise

  • Answered by AI
  • Q2. How to connect mongodb with database
  • Ans. 

    To connect MongoDB with a database, you need to use the MongoDB URI and a MongoDB client library.

    • Use the MongoDB URI to specify the connection details such as host, port, username, password, and database name

    • Install a MongoDB client library like Mongoose for Node.js or pymongo for Python

    • Use the client library to establish a connection to the MongoDB database and perform CRUD operations

  • Answered by AI
  • Q3. What is event listener
  • Ans. 

    An event listener is a function that waits for a specific event to occur and then triggers a response.

    • Event listeners are commonly used in web development to handle user interactions like clicks, keypresses, etc.

    • They are attached to specific elements and listen for events to occur on those elements.

    • Once the event occurs, the listener executes a callback function to respond to the event.

    • Example: Adding a click event lis...

  • Answered by AI
  • Q4. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. How to reverse a string without using extra space
  • Ans. 

    Use two pointers to swap characters in place

    • Initialize two pointers, one at the beginning of the string and one at the end

    • Swap characters at the two pointers and move them towards each other until they meet or cross

    • Repeat the process until the entire string is reversed

  • Answered by AI
  • Q2. Find a number that not present in array in O(N) time complexity array contain only 0 to n numbers
  • Ans. 

    Use bitwise XOR operation to find the missing number in O(N) time complexity.

    • Iterate through the array and XOR all the elements with their indices and the array length.

    • The missing number will be the result of XORing all the elements with their indices and the array length.

  • Answered by AI
  • Q3. Why should you join this company
  • Q4. How many interview have you give previously and why you get rejected

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Tell me about
  • Q2. Your self they are asking
  • Q3. What is your weakness
  • Q4. Any questions ask for me
  • Q5. All the best future
Round 2 - Coding Test 

Coding for international

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

I applied via Job Portal

Round 1 - Coding Test 

60mintues DSA level coding exam

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

I applied via Campus Placement

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 - Aptitude Test 

It basic about all the common aptitude

Round 3 - Coding Test 

It had a coding test where there was 2 questions

Round 4 - Technical 

(2 Questions)

  • Q1. Conducted in their office kochin
  • Q2. Number of alphabets in a string
  • Ans. 

    Count the number of alphabets in a given string.

    • Iterate through each character in the string and check if it is an alphabet using ASCII values.

    • Ignore spaces, numbers, and special characters while counting alphabets.

    • Example: 'Hello World!' has 10 alphabets.

  • Answered by AI

Ducont Interview FAQs

How many rounds are there in Ducont DOT NET Developer interview?
Ducont interview process usually has 1 rounds. The most common rounds in the Ducont interview process are Technical.
How to prepare for Ducont DOT NET Developer 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 Ducont. The most common topics and skills that interviewers at Ducont expect are ASP.Net, Angular, .Net Core, Azure and Core.

Tell us how to improve this page.

Software Engineer
85 salaries
unlock blur

₹2.8 L/yr - ₹9.5 L/yr

Senior Software Engineer
63 salaries
unlock blur

₹5.5 L/yr - ₹11.5 L/yr

Software Developer
30 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Junior Software Developer
16 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Test Engineer
15 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Explore more salaries
Compare Ducont with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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