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 Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top Centre for Development of Advanced Computing Interview Questions and Answers

View all 60 questions

Centre for Development of Advanced Computing Interview Experiences

Popular Designations

95 interviews found

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

(1 Question)

  • Q1. Basics of deep learning
Round 2 - Technical 

(1 Question)

  • Q1. Basics of NLP and LLMs

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 (Recursively) Pattern Printing Coding question Find the length of a string... read more
View answer (1)

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star PatternPrint the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** Note : There are no spaces between the stars (*). Input format : Integer N (Total no. of rows) Output format : Pattern in N l... read more
View answer (9)

Project Engineer Interview Questions & Answers

user image Narendra Bhatt

posted on 15 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Most questions asked were from previous projects
Round 2 - HR 

(1 Question)

  • Q1. Expectation and long term goal

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 (Recursively) Pattern Printing Coding question Find the length of a string... read more
View answer (1)

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star PatternPrint the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** Note : There are no spaces between the stars (*). Input format : Integer N (Total no. of rows) Output format : Pattern in N l... read more
View answer (9)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Spring dependency injection Autowired Ioc

Project Associate 1 Interview Questions asked at other Companies

Q1. On which cycle will gas turbine works?
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to turn an LED On? Explain with design Difference between BJT and FETs Explain Project
  • Ans. 

    To turn an LED on, apply a voltage higher than the forward voltage across the LED. BJT and FETs differ in their operation and characteristics.

    • To turn an LED on, connect it in the correct polarity with a voltage source higher than its forward voltage.

    • BJTs are current-controlled devices, while FETs are voltage-controlled.

    • BJTs have higher gain and lower input impedance compared to FETs.

    • Example: To turn on a red LED with a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Basics

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 (Recursively) Pattern Printing Coding question Find the length of a string... read more
View answer (1)

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star PatternPrint the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** Note : There are no spaces between the stars (*). Input format : Integer N (Total no. of rows) Output format : Pattern in N l... read more
View answer (9)

Centre for Development of Advanced Computing interview questions for popular designations

 Project Engineer

 (39)

 Project Associate

 (7)

 Software Developer

 (4)

 Intern

 (3)

 Graduate Student

 (2)

 Software Engineer

 (2)

 Academic Mentor

 (1)

 Accounts Officer

 (1)

WBL Interview Questions & Answers

user image Anonymous

posted on 24 Apr 2024

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

I applied via aicte internship portal and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Write for loop, write the pseudo code for fibbonacci,
  • Q2. How will you develop a python code for ML algortihm
  • Q3. Will you continue to work forCDACif you get another offer

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer with confidence, and ask for help, show people that you are working that is important. Work is nice, and the environment is friendly too, but keep your mentor updated with your work

Skills evaluated in this interview

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

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 2 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 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain your cdac project in detail
  • Ans. 

    Developed a real-time traffic monitoring system using image processing techniques

    • Used OpenCV library for image processing

    • Implemented vehicle detection and tracking algorithm

    • Developed a web-based dashboard for real-time monitoring

    • Used Raspberry Pi for hardware implementation

    • Achieved an accuracy of 90% in vehicle detection

  • Answered by AI
  • Q3. Write code for jdbc db connectivity
  • Ans. 

    Code for JDBC DB connectivity

    • Load the JDBC driver class

    • Create a connection object using DriverManager.getConnection()

    • Create a statement object using connection.createStatement()

    • Execute the query using statement.executeQuery()

    • Process the result set

    • Close the result set, statement, and connection

  • Answered by AI
  • Q4. Explain exception handling, Multithreading, etc
  • Ans. 

    Exception handling is a way to handle errors in code. Multithreading allows multiple threads to run concurrently.

    • Exception handling is used to catch and handle errors that occur during program execution.

    • It helps prevent the program from crashing and allows for graceful error handling.

    • Multithreading allows for multiple threads to run concurrently, improving program performance.

    • It can be used for tasks such as background...

  • Answered by AI
  • Q5. Explain oops concepts with real world example
  • Ans. 

    OOPs concepts are used to model real-world objects and their interactions.

    • Encapsulation: Hiding internal details of an object. Example: A car's engine is encapsulated and can only be accessed through the car's interface.

    • Inheritance: Creating new classes from existing ones. Example: A sports car class can inherit properties from a car class.

    • Polymorphism: Objects can take on many forms. Example: A vehicle class can have ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Centre for Development of Advanced Computing Project Engineer interview:
  • Core Java
  • Advanced Java
  • Project
  • tell me about yourself
Interview preparation tips for other job seekers - Just prepare your cdac project by heart. thats all

Skills evaluated in this interview

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 (Recursively) Pattern Printing Coding question Find the length of a string... read more
View answer (1)

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star PatternPrint the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** Note : There are no spaces between the stars (*). Input format : Integer N (Total no. of rows) Output format : Pattern in N l... read more
View answer (9)

Developer Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2024

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

60 min of exam included question on some technical and english and logical.

Round 2 - Technical 

(1 Question)

  • Q1. What is oop in java?
  • Ans. 

    OOP in Java stands for Object-Oriented Programming, a programming paradigm that uses objects to design and build applications.

    • OOP focuses on creating objects that contain data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP in Java.

    • Example: Creating a class 'Car' with attributes like 'make', 'model', and methods like 'drive' and 'stop'.

  • Answered by AI

Skills evaluated in this interview

Developer Interview Questions asked at other Companies

Q1. Which programming language do you use regular in work
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Test includes technical and aptitude questions

Round 3 - Technical 

(1 Question)

  • Q1. Basic and intermediate technical questions
Round 4 - Technical 

(1 Question)

  • Q1. Advanced technical questions

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 (Recursively) Pattern Printing Coding question Find the length of a string... read more
View answer (1)

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star PatternPrint the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** Note : There are no spaces between the stars (*). Input format : Integer N (Total no. of rows) Output format : Pattern in N l... read more
View answer (9)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - MCQ test 

(1 Question)

  • Q1. There were totally 3 rounds where the 1st round was the test which consists of mcqs time was 45min and the questions were on basics of oops and os and techincal coding ques and basic concepts. i have quali...
Round 2 - Technical 

(1 Question)

  • Q1. Based on the resume they were asking the ques. u should be able to explain the project in detail and ready to ans any ques asked in that
Round 3 - HR 

(1 Question)

  • Q1. HR was basically about the behaviour also they asked little technical

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)

Intern NetOps Engineer Interview Questions & Answers

user image suryadev chaudhary

posted on 29 Oct 2023

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

I was interviewed in Sep 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. All about mentioned in resume and project
Round 3 - HR 

(1 Question)

  • Q1. About relocation

Centre for Development of Advanced Computing Interview FAQs

How many rounds are there in Centre for Development of Advanced Computing 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, Resume Shortlist and Aptitude Test.
What are the top questions asked in Centre for Development of Advanced Computing interview?

Some of the top questions asked at the Centre for Development of Advanced Computing 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 interview process?

The duration of Centre for Development of Advanced Computing 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 Interview Process

based on 50 interviews in last 1 year

Interview experience

4.1
  
Good
View more

People are getting interviews through

based on 59 Centre for Development of Advanced Computing interviews
Company Website
Campus Placement
Job Portal
WalkIn
Referral
34%
34%
22%
3%
3%
4% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 779 Interviews
CMS IT Services Interview Questions
3.1
 • 119 Interviews
View all

Centre for Development of Advanced Computing Reviews and Ratings

based on 830 reviews

3.8/5

Rating in categories

3.4

Skill development

4.0

Work-Life balance

3.2

Salary & Benefits

4.0

Job Security

3.4

Company culture

3.0

Promotions/Appraisal

3.4

Work Satisfaction

Explore 830 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