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

Filter interviews by

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

Updated 6 Mar 2025

Top Centre for Development of Advanced Computing Interview Questions and Answers

View all 61 questions

Centre for Development of Advanced Computing Interview Experiences

Popular Designations

102 interviews found

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

I was interviewed before Mar 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic questions related to field of work and career
  • Q2. Some technology related and skill based scenarios were introduced during the interview
  • Q3. Clear indications of the procedure or additional information regarding the selection process were not provided promptly.
Round 2 - Technical 

(2 Questions)

  • Q1. It was a joint interview on VC with different stakeholders and technical experts from different departments and areas. The HR was also included along with Executive Director Sir.
  • Q2. A panel of 6-8 members put forward questions from various technologies, set of technical scenarios were discussed, technical skills were tested, vendor specific questions were asked, career progression was...
Round 3 - HR 

(1 Question)

  • Q1. In the same session, lasting questions were posed by the ED Sir and HR Maam as per the standard procedure.

Interview Preparation Tips

Interview preparation tips for other job seekers - Regardless of the candidate's experience level, the interview is primarily focused on the technical acumen and skills required for the offered position. Although the questions may appear fundamental, the panel expects and seeks expertise from the candidate through a well-structured process.

Senior Project Engineer Interview Questions asked at other Companies

Q1. Types of road:- 1 Flexible pavements .... .. . 2 Rigid pavements Flexible pavement:- embankment thickness 3m,large size soil particles 75mm lumps and cloud. Liquid limit <50% ,plastic limit<25%, swelling and shrnkag<50%, cbr as per... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Mostly about linux , its distro and should have very strong knowledge in all commands
  • Q2. Python- tuples and list..and which is faster? and libraries
  • Q3. Asked many things like -do you know networking ,ai,ml algorithms ,have u worked on it ? the interview many look like simple ,but even the basics questions were asked tricky
  • Q4. About your project

Project Associate Interview Questions asked at other Companies

Q1. What is an API? Why APIs are so popular these days? What is API Management? Why we need an API Management tool such as Apigee Edge? What is REST? What is the difference between SOAP & REST API ? What is API Proxy? What are the different... read more
View answer (1)
Centre for Development of Advanced Computing Interview Questions and Answers for Freshers
illustration image
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

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 Pattern Task Your task is to print a triangle pattern using stars (*) for a given integer N, which represents the number of rows. Input: Integer N (Total number of rows) Output: The triangle pattern printed over N lines Exampl... read more
View answer (11)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the structure of a Java program?
  • Ans. 

    The structure of a Java program includes classes, methods, variables, and packages.

    • Java program starts with a class definition, which includes methods and variables.

    • Methods contain the code that defines the behavior of the program.

    • Variables are used to store data within the program.

    • Packages are used to organize classes and provide a namespace for the program.

    • Example: public class HelloWorld { public static void main(St...

  • Answered by AI
  • Q2. What is the role of the garbage collector in Java programming, and where is it utilized?
  • Ans. 

    Garbage collector in Java manages memory by reclaiming unused objects, preventing memory leaks.

    • Automatically frees up memory by removing objects that are no longer in use

    • Prevents memory leaks by reclaiming memory from objects that are no longer referenced

    • Utilized in Java programming to improve memory management and prevent out-of-memory errors

  • Answered by AI
  • Q3. How would you rate your proficiency in Java programming?
  • Ans. 

    I rate my proficiency in Java programming as advanced.

    • Advanced knowledge of object-oriented programming principles

    • Experience with Java frameworks like Spring and Hibernate

    • Ability to write efficient and scalable code

    • Familiarity with design patterns and best practices

    • Completed multiple Java projects successfully

  • Answered by AI
  • Q4. Can you explain a model used in natural language processing?
  • Ans. 

    A common model used in natural language processing is the Bag of Words model.

    • Bag of Words model represents text as a collection of words, ignoring grammar and word order.

    • It creates a vocabulary of unique words in the text and counts the frequency of each word.

    • This model is often used for tasks like sentiment analysis, document classification, and topic modeling.

  • Answered by AI
  • Q5. Why do we use activation functions?
  • Ans. 

    Activation functions introduce non-linearity to neural networks, enabling them to learn complex patterns and relationships.

    • Activation functions help neural networks to learn complex patterns and relationships by introducing non-linearity.

    • They ensure that the output of each neuron is mapped to a specific range, allowing for better learning and generalization.

    • Common activation functions include ReLU, Sigmoid, Tanh, and S...

  • Answered by AI

Research and Development Interview Questions asked at other Companies

Q1. Explain how you will place heat and light sensors in a room with glass facade on one side
View answer (7)

Centre for Development of Advanced Computing interview questions for popular designations

 Project Engineer

 (43)

 Project Associate

 (7)

 Software Developer

 (4)

 Software Engineer

 (2)

 Graduate Student

 (2)

 Senior Project Engineer

 (2)

 Intern

 (2)

 System Engineer

 (1)

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between mutex and semaphore
  • Ans. 

    Mutex is used for exclusive access to a resource by a single thread, while semaphore is used for controlling access to a resource by multiple threads.

    • Mutex is binary in nature, allowing only one thread to access the resource at a time.

    • Semaphore can have a count greater than 1, allowing multiple threads to access the resource simultaneously.

    • Mutex is typically used for protecting critical sections of code.

    • Semaphore is of...

  • Answered by AI
  • Q2. When we use volatile and const at the same time what will happen
  • Ans. 

    When volatile and const are used together, the variable is treated as read-only and its value can change unexpectedly.

    • The const keyword indicates that the variable's value cannot be changed by the program.

    • The volatile keyword tells the compiler that the variable's value may change at any time, even if it doesn't appear to be modified by the program.

    • When used together, the variable is treated as read-only by the program...

  • Answered by AI
  • Q3. Is brute force is good or bad
  • Ans. 

    Brute force can be both good and bad depending on the context and application.

    • Brute force can be effective for small scale problems or when time is limited.

    • However, it is inefficient and impractical for large scale problems.

    • Brute force may also be necessary in certain scenarios where no other efficient solution exists.

    • For example, brute force can be used in password cracking when other methods fail.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Difference between mutex and semaphore
  • Ans. 

    Mutex is used for exclusive access to a resource by a single thread, while semaphore is used for controlling access to a resource by multiple threads.

    • Mutex is binary in nature, allowing only one thread to access the resource at a time.

    • Semaphore can have a count greater than 1, allowing multiple threads to access the resource simultaneously.

    • Mutex is used for protecting critical sections of code, while semaphore is used ...

  • Answered by AI
  • Q2. What happens when we use volatile and const at the same time
  • Ans. 

    When volatile and const are used together, the variable is treated as read-only and its value can change unexpectedly.

    • Using volatile and const together is rare but can be useful for memory-mapped hardware registers.

    • The volatile keyword tells the compiler that the variable can be changed unexpectedly, while const ensures the variable is read-only.

    • Example: const volatile int * const ptr = (int *)0x1234; // pointer to a r...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - appear for mock interviews

Skills evaluated in this interview

Embedded Software Engineer Interview Questions asked at other Companies

Q1. 3. 1)Do you know about Autosar. 2)define function definition and function declaration. 3)difference between structure and union. 4) define Enumeration 5)what is microcontroller and microprocessor and its applications 6)where we uses in real... read more
View answer (1)

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

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

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 Pattern Task Your task is to print a triangle pattern using stars (*) for a given integer N, which represents the number of rows. Input: Integer N (Total number of rows) Output: The triangle pattern printed over N lines Exampl... read more
View answer (11)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Cybersecurity Questions
  • Q2. DDOS attack explanation
  • Ans. 

    DDOS attack is a malicious attempt to disrupt normal traffic of a targeted server or network by overwhelming it with a flood of internet traffic.

    • DDOS stands for Distributed Denial of Service attack.

    • Attackers use multiple compromised systems to flood the target with traffic.

    • Common types include UDP flood, SYN flood, and HTTP flood.

    • DDOS attacks can lead to service disruption, financial losses, and reputational damage.

    • Mit...

  • Answered by AI
  • Q3. How does Google search work?
  • Ans. 

    Google search works by crawling and indexing web pages, and then ranking them based on relevance and quality.

    • Google uses web crawlers to discover and index web pages.

    • The search algorithm ranks pages based on relevance to the search query.

    • Factors like keywords, backlinks, and user experience influence rankings.

    • Google constantly updates its algorithm to improve search results.

    • Google also considers user location and searc

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Chill environment polish your skills

Skills evaluated in this interview

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How would you be able to manage work life balance
  • Ans. 

    I prioritize tasks, set boundaries, delegate when necessary, and make time for self-care.

    • Prioritize tasks based on deadlines and importance

    • Set boundaries by establishing work hours and sticking to them

    • Delegate tasks to team members when feeling overwhelmed

    • Make time for self-care activities such as exercise, hobbies, and relaxation

    • Avoid multitasking and focus on one task at a time

  • Answered by AI
  • Q2. Are you aware of ISO standards 9000
  • Ans. 

    Yes, ISO 9000 is a set of international standards for quality management and quality assurance.

    • ISO 9000 is a series of standards developed by the International Organization for Standardization (ISO) that focus on quality management systems.

    • These standards provide guidance and tools for companies to ensure their products and services consistently meet customer requirements and regulatory standards.

    • ISO 9000 certification...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep preparing hard.

Project Associate Interview Questions asked at other Companies

Q1. What is an API? Why APIs are so popular these days? What is API Management? Why we need an API Management tool such as Apigee Edge? What is REST? What is the difference between SOAP & REST API ? What is API Proxy? What are the different... read more
View answer (1)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. I was asked on Spring Boot.

Interview Preparation Tips

Interview preparation tips for other job seekers - As my name was last on the list , they didn't ask any good question. They just completed the interview hurriedly.

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 Pattern Task Your task is to print a triangle pattern using stars (*) for a given integer N, which represents the number of rows. Input: Integer N (Total number of rows) Output: The triangle pattern printed over N lines Exampl... read more
View answer (11)

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

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 Pattern Task Your task is to print a triangle pattern using stars (*) for a given integer N, which represents the number of rows. Input: Integer N (Total number of rows) Output: The triangle pattern printed over N lines Exampl... read more
View answer (11)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

REVIEWS

Sigma Electric Manufacturing Corporation

No Reviews

REVIEWS

Sigma Electric Manufacturing Corporation

No Reviews

REVIEWS

Sigma Electric Manufacturing Corporation

No Reviews

REVIEWS

Sigma Electric Manufacturing Corporation

No Reviews

REVIEWS

Sigma Electric Manufacturing Corporation

No Reviews

Tell us how to improve this page.

Centre for Development of Advanced Computing Interview Process

based on 99 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
TCS iON Interview Questions
3.9
 • 367 Interviews
View all

Centre for Development of Advanced Computing Reviews and Ratings

based on 896 reviews

3.7/5

Rating in categories

3.4

Skill development

4.0

Work-life balance

3.2

Salary

3.9

Job security

3.4

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 896 Reviews and Ratings
Project Engineer
2.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Associate
433 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
181 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Project Engineer
143 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
85 salaries
unlock blur

₹0 L/yr - ₹0 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.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview