Upload Button Icon Add office photos

Filter interviews by

Dcm Architects Software Developer Interview Questions and Answers

Updated 22 Jun 2017

Dcm Architects Software Developer Interview Experiences

1 interview found

I was interviewed before Jun 2016.

Interview Questionnaire 

3 Questions

  • Q1. The questions start with some basic concept of the subject and later they continue based on further discussion
  • Q2. When you know programming, what is the need to learn software engineering concepts?
  • Ans. 

    Software engineering concepts provide a structured approach to software development and help in building scalable and maintainable solutions.

    • Software engineering concepts help in understanding the entire software development lifecycle.

    • They provide guidelines and best practices for designing, coding, testing, and maintaining software.

    • Software engineering concepts enable collaboration and communication among team members...

  • Answered by AI
  • Q3. What is software project management?
  • Ans. 

    Software project management is the process of planning, organizing, and controlling the resources and activities required to develop software.

    • It involves defining project goals, scope, and deliverables.

    • It includes creating a project schedule and allocating resources.

    • It involves managing risks and ensuring quality throughout the project.

    • It includes coordinating and communicating with stakeholders.

    • Examples: Agile, Waterf

  • Answered by AI

Interview Preparation Tips

Skills: Software Skills

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Net core architecture and features
  • Q2. API structure and implementation
Round 2 - HR 

(1 Question)

  • Q1. Salary expectation
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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. DSA question on the technical based
  • Q2. Same another one is DSA algorithm question

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for future
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI
Interview experience
4
Good
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. What is HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • HashMap allows quick access to values based on their keys

    • Keys must be unique and values can be duplicated

    • HashMap is not thread-safe and requires synchronization for concurrent access

    • Java's HashMap implementation uses hashing to distribute keys across buckets

  • Answered by AI
  • Q2. It’s a collection framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. What are the features of Java8?
  • Ans. 

    Java8 introduced new features like lambda expressions, streams, and functional interfaces.

    • Lambda expressions for functional programming

    • Streams for efficient processing of large data sets

    • Functional interfaces for easy implementation of lambda expressions

    • Default methods to add new functionality to existing interfaces

    • Date and Time API for improved handling of date and time

    • Nashorn JavaScript engine for improved performance...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good core knowledge .

Skills evaluated in this interview

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

Practice atleast 20 questions for every topic.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction Achievement background education
  • Q2. Ask about technical skills and ask questions about projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2022. There were 2 interview rounds.

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 - One-on-one 

(1 Question)

  • Q1. Sql Query Sequence and basically asks the SqlServer Releted question and Webform Also.

Interview Preparation Tips

Topics to prepare for DISH TV Software Developer interview:
  • SQL
  • MVC
  • ASP.Net
  • Webform
  • API
Interview preparation tips for other job seekers - Most Of the people mistakes lack of confidence.this is the main factor to select or not.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The first round was an aptitude test. There were 30 questions with 1 marks for each.

Round 2 - Coding Test 

After being selected from the first round the second round was the Coding test there were 6 sets and 1 set had 3 questions. they told me to do it in an online compiler without an internet connection.

Round 3 - Technical 

(1 Question)

  • Q1. After being selected from the coding test. They took technical interviews and asked very basic questions like oops and all but they were doing cross-questioning.

Dcm Architects Interview FAQs

What are the top questions asked in Dcm Architects Software Developer interview?

Some of the top questions asked at the Dcm Architects Software Developer interview -

  1. When you know programming, what is the need to learn software engineering conce...read more
  2. What is software project manageme...read more
  3. The questions start with some basic concept of the subject and later they conti...read more

Tell us how to improve this page.

Dcm Architects Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

4.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Assistant Manager
5 salaries
unlock blur

₹1.9 L/yr - ₹10.1 L/yr

Company Secretary
4 salaries
unlock blur

₹27 L/yr - ₹40 L/yr

Executive
4 salaries
unlock blur

₹4.2 L/yr - ₹6 L/yr

Assistant Company Secretary
4 salaries
unlock blur

₹5.4 L/yr - ₹7.8 L/yr

Graduate Engineer Trainee (Get)
4 salaries
unlock blur

₹5.1 L/yr - ₹6 L/yr

Explore more salaries
Compare Dcm Architects with

Reliance Communications

4.0
Compare

Tata Teleservices

4.1
Compare

Jet Airways

4.6
Compare

DISH TV

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