Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by IDRBT Team. If you also belong to the team, you can get access from here

IDRBT Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IDRBT Project Associate Interview Questions and Answers

Updated 7 Apr 2024

IDRBT Project Associate Interview Experiences

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Swapping of two number s without using third variable
  • Ans. 

    To swap two numbers without using a third variable, use arithmetic operations.

    • Assign the sum of the two numbers to the first number

    • Subtract the second number from the sum and assign it to the second number

    • Subtract the original first number (now stored in the second number) from the sum and assign it to the first number

  • Answered by AI
  • Q2. And hr question s
  • Q3. Wt are you doing since from completion of btech

Interview Preparation Tips

Interview preparation tips for other job seekers - But they cannot allocate IT work they will offer another work which is not related to IT background, and they will say if you are interested do the job, if not leave

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Some basic questions on coding languages
  • Q2. General HR questions
  • Q3. Mostly they focused on communication skills
  • Q4. Write a program swapping of two numbers without using third variable
  • Ans. 

    Swapping two numbers without using a third variable in a program

    • Use bitwise XOR operation to swap two numbers without using a third variable

    • Example: int a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5

    • Ensure the numbers are not the same to avoid getting 0 as a result

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IDRBT Project Associate interview:
  • Communication Skills
Interview preparation tips for other job seekers - We need to fit in well spiking skills English

Skills evaluated in this interview

Project Associate Interview Questions Asked at Other Companies

asked in Cognizant
Q1. What is an API? Why APIs are so popular these days? What is API M ... read more
Q2. Which organic compound is called acid but do not have a COOH grou ... read more
asked in Cognizant
Q3. 1.Four pillars of OOPS concepts with real time example and have y ... read more
asked in Cognizant
Q4. Write a program to display most frequent element in an array usin ... read more
Q5. What concentration of H2SO4 and HCl is used in your laboratory?

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Articlesship experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly ask articleship experience

I applied via Referral and was interviewed before Oct 2021. There were 3 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 - Aptitude Test 

That was 1 hour apti test with subjective questions

Round 3 - Coding Test 

This was coding round with DSA. Good basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to get internship from a good organisation. You get chance to see and work in corporate culture

Analyst Interview Questions & Answers

Ducat user image Yatharth Antil

posted on 2 Feb 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Only introduction?
  • Q2. Past experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Just chilll.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Elevator pitch. About the past exp .....

I applied via Company Website and was interviewed before Jul 2021. 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 - Face to face Interview 

(1 Question)

  • Q1. Question Related with my desertation, training and theoratical.

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly make yourself confident about your knowledge. Do not answer in hurry. All respected scientists are supporting if you have knowledge.

I applied via Naukri.com and was interviewed before Apr 2021. There were 4 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 - Technical 

(1 Question)

  • Q1. About technical sound
Round 3 - Technical 

(1 Question)

  • Q1. Technical and management skills
Round 4 - HR 

(1 Question)

  • Q1. Salary and notice period

Interview Preparation Tips

Interview preparation tips for other job seekers - be strong in your technical sound

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

Interview Questionnaire 

1 Question

  • Q1. Fundamental of SOM, FEA and FEM

Interview Preparation Tips

Interview preparation tips for other job seekers - Be brave enough to accept if you don't know the answer for any questions don't try to mislead the interviewer and be confident and interactive. And try to say you will learn as quickly as possible.

Interview Questionnaire 

3 Questions

  • Q1. What is micro service? How it is different from monolithic application ??
  • Ans. 

    Microservices are small, independent, and loosely coupled services that work together to form a larger application.

    • Microservices are independently deployable and scalable.

    • Each microservice performs a specific task and communicates with other services through APIs.

    • Monolithic applications are a single, tightly-coupled unit, while microservices are modular and flexible.

    • Microservices allow for faster development and easier...

  • Answered by AI
  • Q2. Is parrallel execution possible in micro services?
  • Ans. 

    Yes, parallel execution is possible in microservices.

    • Microservices architecture allows for independent deployment and scaling of services.

    • Each microservice can be executed in parallel, enabling concurrent processing.

    • Parallel execution improves performance and scalability of the overall system.

    • Microservices can communicate asynchronously, further enhancing parallelism.

    • Examples of parallel execution in microservices incl...

  • Answered by AI
  • Q3. What is PCF ? Why it is preferred today ?
  • Ans. 

    PCF stands for Pivotal Cloud Foundry. It is a cloud-native platform for deploying and managing applications.

    • PCF is a popular choice for cloud application development and deployment.

    • It provides a platform for developers to build, test, and deploy applications quickly and easily.

    • PCF offers a range of features such as automatic scaling, load balancing, and self-healing.

    • It supports multiple programming languages and framew...

  • Answered by AI

Skills evaluated in this interview

IDRBT Interview FAQs

How many rounds are there in IDRBT Project Associate interview?
IDRBT interview process usually has 1 rounds. The most common rounds in the IDRBT interview process are One-on-one Round and Technical.
What are the top questions asked in IDRBT Project Associate interview?

Some of the top questions asked at the IDRBT Project Associate interview -

  1. Write a program swapping of two numbers without using third varia...read more
  2. Swapping of two number s without using third varia...read more
  3. Mostly they focused on communication ski...read more

Tell us how to improve this page.

IDRBT Project Associate Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
View all
IDRBT Project Associate Salary
based on 10 salaries
₹2.7 L/yr - ₹3.2 L/yr
71% less than the average Project Associate Salary in India
View more details

IDRBT Project Associate Reviews and Ratings

based on 4 reviews

4.1/5

Rating in categories

3.6

Skill development

4.1

Work-life balance

4.1

Salary

4.5

Job security

4.1

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 4 Reviews and Ratings
Research Associate
31 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Project Associate
10 salaries
unlock blur

₹2.7 L/yr - ₹3.2 L/yr

Administration Assistant
5 salaries
unlock blur

₹2.4 L/yr - ₹3.1 L/yr

Software Engineer
4 salaries
unlock blur

₹5.5 L/yr - ₹17.2 L/yr

Cyber Security Analyst
4 salaries
unlock blur

₹3 L/yr - ₹3.8 L/yr

Explore more salaries
Compare IDRBT with

Jetking Infotrain

3.7
Compare

Billabong High International School

3.8
Compare

The Institute Of Chartered Accountants

3.7
Compare

Jitm Skills

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview