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 17 Feb 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

100 interviews found

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)
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 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
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?
  • Q2. What is the role of the garbage collector in Java programming, and where is it utilized?
  • Q3. How would you rate your proficiency in Java programming?
  • Q4. Can you explain a model used in natural language processing?
  • Q5. Why do we use activation functions?

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)
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)

Centre for Development of Advanced Computing interview questions for popular designations

 Project Engineer

 (42)

 Project Associate

 (7)

 Software Developer

 (4)

 Graduate Student

 (2)

 Intern

 (2)

 Software Engineer

 (2)

 Academic Mentor

 (1)

 Accounts Officer

 (1)

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 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)

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

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 MirrorYou are given two arbitrary binary trees consisting of N and M number of nodes respectively, your task is to check whether the two trees are mirror of each other or not. Two trees are said to be mirror of each o... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is numerical methods?
Round 2 - One-on-one 

(1 Question)

  • Q1. What is Reynolds stress?

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
-
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)

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

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 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 96 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
TCS iON Interview Questions
3.9
 • 365 Interviews
View all

Centre for Development of Advanced Computing Reviews and Ratings

based on 881 reviews

3.8/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 881 Reviews and Ratings
Project Engineer
2.8k salaries
unlock blur

₹3.8 L/yr - ₹14 L/yr

Project Associate
436 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Software Developer
176 salaries
unlock blur

₹1 L/yr - ₹9.5 L/yr

Senior Project Engineer
140 salaries
unlock blur

₹6 L/yr - ₹16 L/yr

Software Engineer
85 salaries
unlock blur

₹3 L/yr - ₹9.6 L/yr

Explore more salaries
Compare Centre for Development of Advanced Computing with

National Informatics Centre

3.9
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