Upload Button Icon Add office photos

Filter interviews by

CDA Campus Project Engineer Interview Questions and Answers

Updated 27 Aug 2024

CDA Campus Project Engineer Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. EXPLAIN PROJECT
  • Ans. 

    A project is a temporary endeavor with a specific goal, timeline, and budget.

    • Projects have defined objectives and deliverables.

    • They involve a team of people working together towards a common goal.

    • Projects have a start and end date, and are typically constrained by budget and resources.

    • Examples: Building a bridge, developing a new software application, organizing an event.

  • Answered by AI
  • Q2. OVERLOADING AND OVERRIDING
  • Q3. STATIC METHOD CAN BE OVERRIDEN
  • Ans. 

    No, static methods cannot be overridden in Java.

    • Static methods belong to the class itself, not to any specific instance of the class.

    • In Java, static methods are resolved at compile time based on the reference type, not at runtime based on the object type.

    • Subclasses can have static methods with the same signature as the superclass, but they are not considered overriding.

    • Example: class A { static void method() {} } class...

  • Answered by AI
  • Q4. EXPLIAN RDBMS IN DATABASE
  • Ans. 

    RDBMS stands for Relational Database Management System, which is a type of database management system that stores data in a structured format using rows and columns.

    • RDBMS organizes data into tables with rows and columns.

    • It uses SQL (Structured Query Language) for querying and managing data.

    • It enforces relationships between tables using foreign keys.

    • Examples of RDBMS include MySQL, Oracle, SQL Server, and PostgreSQL.

  • Answered by AI
  • Q5. WHAT IS FORIEGN KEY
  • Ans. 

    A foreign key is a column or a group of columns in a database table that uniquely identifies a row in another table.

    • Used to establish a relationship between two tables in a database

    • Enforces referential integrity

    • Helps maintain data consistency

    • Prevents actions that would destroy links between tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE JAVA BASICS MORE AND PROJECT

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about CDA Campus ?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions about c and new technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and it will be fine

Project Engineer Interview Questions Asked at Other Companies

asked in Wipro
Q1. Triangle Star Pattern Task Your task is to print a triangle patte ... read more
asked in Wipro
Q2. Encode The String Problem Statement Given a string S of length N, ... read more
asked in Wipro
Q3. Given a starting time, find the minimum number of minutes needed ... read more
asked in Wipro
Q4. Binary to Decimal Conversion Challenge Transform a given binary n ... read more
asked in Wipro
Q5. Mindbending Product Problem Statement You are given an array ARR ... read more

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

NLTH Program. Basic aptitude, Essay.

Round 2 - Technical 

(2 Questions)

  • Q1. All technology based on CV, basic programming questions. Write in your CV, that you can speak of comfortably.
  • Q2. Basics of SQL, C programming.
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. More related to Hobbies and interests.
  • Q3. Will you be Okay for relocation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and go for it. All the things that you mentioned in CV will be highlighted and asked. Don't write, what you don't know about.

I applied via Campus Placement and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. They asked me to introduce myself, about oops concepts, about project and finally they asked me to write a code on notepad.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're apply for project engineer in wipro be good at the basics of programming language which you have learnt and be confident will the interview is going on.

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All questions related to Digital and networks and they asked core java question like functional interface uses and why do we need it and difference with interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was quite good

I applied via LinkedIn and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Angular
  • Q2. Basics of js

Interview Preparation Tips

Interview preparation tips for other job seekers - Freshen up basics on skills.

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude+coding+english

Round 2 - business discussion 

(2 Questions)

  • Q1. Technical and hr round together
  • Q2. Project-related basic c++ and java

Interview Preparation Tips

Interview preparation tips for other job seekers - talk confidently and stay calm
answer questions fast
learn basics of c and java
have good knowledge of project
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Design facebook
  • Ans. 

    Designing Facebook is a complex task involving various components and technologies.

    • Identify the core features of Facebook such as user profiles, news feed, messaging, and groups.

    • Choose appropriate technologies for each component such as PHP for backend, React for frontend, and MySQL for database.

    • Ensure scalability and performance by implementing caching, load balancing, and database sharding.

    • Implement security measures...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Database, logical reasoning

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. What is name mangling?

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Explain abstract factory design pattern ?
  • Ans. 

    Abstract Factory is a creational design pattern that provides an interface for creating families of related objects.

    • Abstract Factory is used when we need to create families of related objects without specifying their concrete classes.

    • It provides an interface for creating objects of related classes without specifying their concrete classes.

    • It encapsulates a group of factories that have a common theme.

    • It promotes loose c...

  • Answered by AI
  • Q2. How do you do range based map iteration
  • Ans. 

    Range based map iteration can be done using a for-each loop or iterators.

    • Use a for-each loop to iterate over the map elements.

    • Alternatively, use iterators to traverse the map.

    • The range-based for loop is preferred for its simplicity and readability.

    • Example: for(auto const& [key, value] : myMap) { //do something with key and value }

  • Answered by AI
  • Q3. What are detached and joined threads
  • Ans. 

    Detached threads are independent threads that run separately from the main thread. Joined threads are threads that wait for the main thread to finish.

    • Detached threads are created using pthread_detach() function

    • Joined threads are created using pthread_join() function

    • Detached threads do not need to be explicitly terminated

    • Joined threads must be explicitly terminated using pthread_exit() or return statement

    • Detached thread...

  • Answered by AI
  • Q4. What are static code analysis tools
  • Ans. 

    Static code analysis tools are software programs that analyze source code to find potential issues and improve code quality.

    • Static code analysis tools scan code without executing it

    • They can detect issues such as security vulnerabilities, coding errors, and performance problems

    • Examples of static code analysis tools include SonarQube, ESLint, and Checkstyle

  • Answered by AI
  • Q5. Command to list currently running threads in linux
  • Ans. 

    Command to list currently running threads in linux

    • Use the 'ps' command with the 'H' option to display threads in a hierarchy

    • Use the 'top' command to display threads in real-time

    • Use the 'htop' command for an interactive display of threads

  • Answered by AI
  • Q6. Can we perform arithmetic operation on Unique pointer
  • Ans. 

    No, arithmetic operations cannot be performed on unique pointers.

    • Unique pointers are used to manage the lifetime of dynamically allocated objects.

    • They cannot be copied or assigned, only moved.

    • Arithmetic operations are not defined for pointers, including unique pointers.

  • Answered by AI

Skills evaluated in this interview

CDA Campus Interview FAQs

How many rounds are there in CDA Campus Project Engineer interview?
CDA Campus interview process usually has 1 rounds. The most common rounds in the CDA Campus interview process are One-on-one Round.
What are the top questions asked in CDA Campus Project Engineer interview?

Some of the top questions asked at the CDA Campus Project Engineer interview -

  1. WHAT IS FORIEGN ...read more
  2. EXPLIAN RDBMS IN DATAB...read more
  3. STATIC METHOD CAN BE OVERRI...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

CDA Campus Project Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

3.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Compare CDA Campus with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview