Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Centre for Development of Advanced Computing Team. If you also belong to the team, you can get access from here
3.8

based on 830 Reviews

Filter interviews by

Centre for Development of Advanced Computing Project Engineer Interview Questions, Process, and Tips

Updated 30 Dec 2024

Top Centre for Development of Advanced Computing Project Engineer Interview Questions and Answers

  • Q1. MySQL database Array vs Array list vs Linked list What is Binary tree, Complete binary tree? Coding Questions: Preorder , Inorder, Postorder traversal of Binary tree (Rec ...read more
  • Q2. Explain oops concepts with real world example
  • Q3. Explain your cdac project in detail
View all 23 questions

Centre for Development of Advanced Computing Project Engineer Interview Experiences

39 interviews found

Project Engineer Interview Questions & Answers

user image Adarsh Kumar Gupta

posted on 17 Nov 2023

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

I applied via campus placement at University of Hyderabad, Hyderabad and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

(1 Question)

  • Q1. Related to Linux Operating System Time Complexity of different algorithms Finding output of code snippet Some questions were related to parallel programming.
Round 2 - Technical 

(1 Question)

  • Q1. MySQL database Array vs Array list vs Linked list What is Binary tree, Complete binary tree? Coding Questions: Preorder , Inorder, Postorder traversal of Binary tree (Recursively) Pattern Printing Coding q...
  • Ans. 

    Understanding data structures and algorithms commonly used in MySQL databases.

    • Array: a data structure that stores a collection of elements in a contiguous memory location.

    • ArrayList: a resizable array implementation that dynamically adjusts its size as elements are added or removed.

    • LinkedList: a data structure where each element is connected to the next element via pointers.

    • Binary Tree: a tree data structure where each ...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Related to Java Programming language Class, Object, Polymorphism, Inheritance, Method overloading, Method Overriding, Interface, Abstract class, Exception Handling One puzzle Number of Island( LeetCode Cod...

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Networks, DBMS, OOPS, etc

Round 2 - Technical 

(2 Questions)

  • Q1. Resume Projects, and Skills
  • Q2. DBMS, Oops, Sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Read more computer science core subjects

Project Engineer Interview Questions Asked at Other Companies

asked in Wipro
Q1. Triangle Star PatternPrint the following pattern for the given N ... read more
asked in Wipro
Q2. Encode The StringYou are given a string ‘S’ of length ‘N’. The st ... read more
asked in Wipro
Q3. Mindbending ProductYou are given an array ‘ARR’ of size N. You ha ... read more
asked in Wipro
Q4. Count Number of SubsequencesGiven an array of non-negative intege ... read more
asked in Wipro
Q5. Difference between compiler and interpreter. Why do you apply to ... read more

Project Engineer Interview Questions & Answers

user image arjun patil

posted on 29 Aug 2024

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

(5 Questions)

  • Q1. DBMS Questions , Procedures , functions differenece
  • Q2. Core java questions
  • Q3. Spring boot annotations
  • Q4. Primitive and non primitive data types
  • Q5. DBMS queries given to write

Project Engineer Interview Questions & Answers

user image Akanksha Sachan

posted on 8 Aug 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Related to spring Frame work
  • Q2. Basic java concepts like oops , exception

Centre for Development of Advanced Computing interview questions for designations

 Project Engineer 1

 (1)

 Project Manager

 (1)

 Project Associate

 (7)

 Project Associate 1

 (1)

 Associate Engineer

 (1)

 Computer Engineer

 (1)

 Software Engineer

 (2)

 System Engineer

 (1)

Project Engineer Interview Questions & Answers

user image nitin yadav

posted on 23 Aug 2024

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

(2 Questions)

  • Q1. Explain about how to secure database
  • Ans. 

    Securing a database involves implementing access controls, encryption, regular backups, and monitoring for suspicious activity.

    • Implement strong access controls to restrict unauthorized access to the database

    • Use encryption to protect sensitive data both at rest and in transit

    • Regularly backup the database to prevent data loss in case of a security breach

    • Monitor the database for any suspicious activity or unauthorized acc...

  • Answered by AI
  • Q2. Explain spring security
  • Ans. 

    Spring Security is a powerful and customizable authentication and access control framework for Java applications.

    • Provides comprehensive security services for Java EE-based enterprise software applications

    • Supports authentication, authorization, and protection against common security vulnerabilities

    • Integrates with Spring Framework for seamless configuration and usage

    • Allows for custom security configurations and extension...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Centre for Development of Advanced Computing Interview Questions

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

(1 Question)

  • Q1. Microcontroller,operating system,device driver,c programming
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Core Java Question like HashMap, List, Threads, Static keyword, HashTable, Exception concept
  • Q2. Spring MVC life cycle, Spring boot execution , GET, POST concept, REST API concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a good organization for guys who are mostly fresher or some mid level experience people you will be getting opportunities to frame yourself in particular technical stack but at the same time salary is quite average, people willing to join need to decide there priority first like what kind of work environment they are expecting and it generally varies from person to person. Good Luck!!

Project Engineer Interview Questions & Answers

user image Omkar Yeware

posted on 4 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sql join conditions
  • Ans. 

    SQL join conditions are used to combine rows from two or more tables based on a related column between them.

    • Use JOIN keyword to combine rows from two or more tables based on a related column

    • Specify the join condition using ON keyword followed by the column names

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

  • Answered by AI
  • Q2. Procedure stored procedure
  • Ans. 

    A stored procedure is a set of SQL statements that can be saved and reused in a database management system.

    • Stored procedures help improve performance by reducing network traffic and improving security.

    • They can be used to encapsulate business logic for reuse.

    • Stored procedures can accept input parameters and return output parameters or result sets.

    • Examples: CREATE PROCEDURE, EXECUTE PROCEDURE.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Convenient onlinr

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Solving ques in python
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic ml ques,data visualisation ques

Project Engineer Interview Questions & Answers

user image ajay bhosale

posted on 26 May 2024

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

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS concept stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data in the form of attributes and code in the form of methods.

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four main principles of OOPS.

    • Encapsulation refers to the bundling of data and methods that operate on the data into a single u...

  • Answered by AI
  • Q2. Diff between shallow copy and deep copy
  • Ans. 

    Shallow copy only copies the references of objects, while deep copy creates new copies of objects.

    • Shallow copy creates a new object but does not duplicate the nested objects within it.

    • Deep copy creates a new object and also duplicates all the nested objects within it.

    • Example: Shallow copy - copying a list of objects only copies the references to those objects. Deep copy - creates new copies of all objects in the list.

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic core java and dbms questions were asked sql commands types, exception handling, package scope
Round 3 - HR 

(1 Question)

  • Q1. Basics questions related to relocation.

Centre for Development of Advanced Computing Interview FAQs

How many rounds are there in Centre for Development of Advanced Computing Project Engineer interview?
Centre for Development of Advanced Computing interview process usually has 1-2 rounds. The most common rounds in the Centre for Development of Advanced Computing interview process are Technical, One-on-one Round and Resume Shortlist.
What are the top questions asked in Centre for Development of Advanced Computing Project Engineer interview?

Some of the top questions asked at the Centre for Development of Advanced Computing Project Engineer interview -

  1. MySQL database Array vs Array list vs Linked list What is Binary tree, Complete...read more
  2. Explain oops concepts with real world exam...read more
  3. Explain your cdac project in det...read more
How long is the Centre for Development of Advanced Computing Project Engineer interview process?

The duration of Centre for Development of Advanced Computing Project Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Centre for Development of Advanced Computing Project Engineer Interview Process

based on 25 interviews in last 1 year

2 Interview rounds

  • Technical Round 1
  • Technical Round 2
View more

People are getting interviews through

based on 26 Centre for Development of Advanced Computing interviews
Company Website
Campus Placement
Job Portal
WalkIn
Referral
46%
35%
12%
4%
4%
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Centre for Development of Advanced Computing Project Engineer Salary
based on 2.8k salaries
₹3.7 L/yr - ₹12.6 L/yr
44% more than the average Project Engineer Salary in India
View more details

Centre for Development of Advanced Computing Project Engineer Reviews and Ratings

based on 359 reviews

3.8/5

Rating in categories

3.3

Skill development

4.0

Work-Life balance

3.3

Salary & Benefits

4.2

Job Security

3.4

Company culture

2.9

Promotions/Appraisal

3.3

Work Satisfaction

Explore 359 Reviews and Ratings
Project Engineer
2.8k salaries
unlock blur

₹3.7 L/yr - ₹12.6 L/yr

Project Associate
427 salaries
unlock blur

₹2.6 L/yr - ₹6 L/yr

Software Developer
178 salaries
unlock blur

₹1 L/yr - ₹10 L/yr

Senior Project Engineer
127 salaries
unlock blur

₹6 L/yr - ₹15.5 L/yr

Software Engineer
81 salaries
unlock blur

₹3 L/yr - ₹9.2 L/yr

Explore more salaries
Compare Centre for Development of Advanced Computing with

National Informatics Centre

4.0
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
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