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 Interview Questions and Answers for Experienced

Updated 22 Jan 2025

IDRBT Interview Experiences for Experienced

Popular Designations

3 interviews found

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

I was interviewed in Dec 2024.

Round 1 - HR 

(1 Question)

  • Q1. What strategies can you use to effectively communicate with higher officials?
  • Ans. 

    To effectively communicate with higher officials, I can use strategies such as being concise, respectful, proactive, and prepared.

    • Be concise and to the point when communicating important information.

    • Show respect by using formal language and addressing them appropriately.

    • Be proactive in anticipating their needs and providing solutions before they ask.

    • Be prepared with relevant information and data to support your points.

    • ...

  • Answered by AI

Administration Assistant Interview Questions asked at other Companies

Q1. What is the role of a teacher in students life?
View answer (2)
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

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)

Developer Interview Questions & Answers

user image Binod Prasad Mahto

posted on 25 Oct 2021

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is your work and responsibility in your Company?
  • Q2. What is your Company Profile?
  • Q3. Why you want to left current company?
  • Q4. Are you interested to join with us?

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are Experience Person in related field, then make Patience and be confidante.
and everything you ask honestly.

Developer Interview Questions asked at other Companies

Q1. Which programming language do you use regular in work
View answer (2)

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Technical skills
  • Q2. Mvc

Interview Preparation Tips

Interview preparation tips for other job seekers - ausumn

I applied via Naukri.com and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is your exp?

Interview Preparation Tips

Interview preparation tips for other job seekers - Great

Interview Questionnaire 

11 Questions

  • Q1. Difference between function and store procedure?
  • Ans. 

    Functions return a value while stored procedures do not.

    • Functions can be used in SQL statements while stored procedures cannot.

    • Functions can be called from within stored procedures.

    • Functions can be used in views while stored procedures cannot.

    • Functions can have input parameters while stored procedures can have both input and output parameters.

  • Answered by AI
  • Q2. What is unique key
  • Ans. 

    A unique key is a field or combination of fields in a database table that uniquely identifies each record.

    • A unique key ensures that no two records in a table have the same values for the specified field(s).

    • It can be a single field or a combination of fields.

    • It is used to enforce data integrity and prevent duplicate records.

    • Examples include primary keys, candidate keys, and alternate keys.

  • Answered by AI
  • Q3. How many types of joining?exmplae
  • Ans. 

    There are four types of joining in SQL: Inner Join, Left Join, Right Join, and Full Join.

    • Inner Join returns only the matching rows from both tables.

    • Left Join returns all the rows from the left table and matching rows from the right table.

    • Right Join returns all the rows from the right table and matching rows from the left table.

    • Full Join returns all the rows from both tables, with NULL values in the columns where there ...

  • Answered by AI
  • Q4. What is constraint?
  • Ans. 

    A constraint is a limitation or restriction on something.

    • Constraints can be applied in various fields such as software development, engineering, and project management.

    • In software development, constraints can include limitations on memory usage, processing speed, and storage capacity.

    • In engineering, constraints can include limitations on materials, dimensions, and weight.

    • In project management, constraints can include l...

  • Answered by AI
  • Q5. What is asp.net life cycle?
  • Ans. 

    ASP.NET life cycle is the series of events that occur during the processing of a request.

    • ASP.NET life cycle includes stages like initialization, page rendering, and disposal.

    • During initialization, the page and its controls are created and initialized.

    • During page rendering, the page is processed and HTML is generated.

    • During disposal, resources used by the page are released.

    • Events like Page_Load and Page_PreRender occur ...

  • Answered by AI
  • Q6. What is the view state?
  • Ans. 

    View state is a hidden state of the page that stores values of controls and other page-specific data.

    • View state is used to maintain the state of server-side controls between postbacks.

    • It is stored in a hidden field on the page and is encrypted for security purposes.

    • View state can be disabled to improve performance, but this may cause issues with control state.

    • Example: A user fills out a form, but then navigates away fr...

  • Answered by AI
  • Q7. What is session?
  • Ans. 

    Session is a way to store and retrieve user data between HTTP requests.

    • Session is a temporary storage of user data on the server side.

    • It is identified by a unique session ID which is stored in a cookie or URL parameter.

    • Session data can be used to maintain user state, such as login status or shopping cart contents.

  • Answered by AI
  • Q8. What is response.redirect?
  • Ans. 

    response.redirect is a method used in web development to redirect the user to a different URL.

    • response.redirect is used to redirect the user to a different URL

    • It is commonly used in web applications to redirect users after a successful login or when accessing restricted pages

    • The method can be used with different programming languages and frameworks, such as ASP.NET, PHP, and Node.js

    • The redirected URL can be specified a

  • Answered by AI
  • Q9. What is querry string ?how we use that?
  • Ans. 

    A query string is a part of a URL that contains data to be passed to a web server.

    • It starts with a question mark (?) and is followed by key-value pairs separated by ampersands (&).

    • It is commonly used to filter or sort data on a web page.

    • Example: www.example.com/search?q=apple&category=fruit

    • To use it, simply append the query string to the end of the URL.

  • Answered by AI
  • Q10.  what is polymerphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Bird. Each child class can have its own implementation of the method 'makeSound'.

    • Polymorphism makes code more flexibl

  • Answered by AI
  • Q11. Tell me 4 pillars of c++?
  • Ans. 

    The 4 pillars of C++ are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together to prevent external interference.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and methods.

    • Polymorphism: Using a single interface to represent multiple types of objects.

  • Answered by AI

Skills evaluated in this interview

Developer Interview Questions & Answers

TCS user image Anonymous

posted on 13 Sep 2017

Interview Questionnaire 

1 Question

  • Q1. How setup network in lab anf what equipment u required?
  • Ans. 

    To setup a network in a lab, you need equipment and a plan.

    • Determine the network topology and design

    • Choose appropriate networking equipment such as routers, switches, and cables

    • Configure network settings such as IP addresses and subnet masks

    • Test the network to ensure connectivity and functionality

    • Consider security measures such as firewalls and access control

    • Examples of equipment: Cisco routers, Juniper switches, Cat6

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: They asked about all questions based computer networks and what type of practical u did. And network logarithms how packet works.
Tips: If you are from ece background then computer network one of the option for interview preparation.

College Name: Echelon institute of technology

Skills evaluated in this interview

Developer Interview Questions & Answers

TCS user image Anonymous

posted on 22 Aug 2017

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: Technical Interview
Experience: The interviewer asked me to explain the project I had worked on which followed a series of questions regarding what would happen if some changes are made, or what exactly happens at the back end.
Tips: Be thorough with your project if you want to mention it.

Round: Technical Interview
Experience: The interviewer asked me to explain the project I had worked on which followed a series of questions regarding what would happen if some changes are made, or what exactly happens at the back end.
Tips: Be thorough with your project if you want to mention it.

College Name: GNDU
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 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 - One-on-one 

(2 Questions)

  • Q1. Basic concept question
  • Q2. Used of Java stream api collection framework
  • Ans. 

    Java stream api collection framework is used for processing collections of objects.

    • Stream API provides a functional approach to process collections in Java

    • It allows operations like filter, map, reduce, etc. to be performed on collections

    • Example: List numbers = Arrays.asList(1, 2, 3, 4, 5); numbers.stream().filter(n -> n % 2 == 0).forEach(System.out::println);

    • Collection framework provides interfaces like List, Set, Map,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep attending multiple interviews u will learn from that

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is the aim of joining this compnay

Interview Preparation Tips

Interview preparation tips for other job seekers - Future growth is the exact answer

IDRBT Interview FAQs

How many rounds are there in IDRBT interview for experienced candidates?
IDRBT interview process for experienced candidates usually has 1 rounds. The most common rounds in the IDRBT interview process for experienced candidates are Technical and HR.
How to prepare for IDRBT interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at IDRBT. The most common topics and skills that interviewers at IDRBT expect are Python, Java, Kubernetes, Magma and Virtualization.
What are the top questions asked in IDRBT interview for experienced candidates?

Some of the top questions asked at the IDRBT interview for experienced candidates -

  1. What strategies can you use to effectively communicate with higher officia...read more
  2. Write a program swapping of two numbers without using third varia...read more
  3. I was interviewed for a cyber security position in idrbt. The questions were b...read more

Tell us how to improve this page.

IDRBT Interview Process for Experienced

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k 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 Reviews and Ratings

based on 30 reviews

3.8/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.4

Salary

3.2

Job security

3.6

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 30 Reviews and Ratings
Research Associate
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Associate
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Administration Assistant
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Cyber Security Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IDRBT with

National Payments Corporation of India

3.9
Compare

Reserve Bank of India

4.6
Compare

Institute Development Research In Banking Technology

3.4
Compare

Securities and Exchange Board of India

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