Upload Button Icon Add office photos
Engaged Employer

i

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

AVEVA Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

AVEVA Senior R&D Engineer Interview Questions and Answers

Updated 30 Mar 2022

AVEVA Senior R&D Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is difference between task and thread
  • Ans. 

    A task is a unit of work while a thread is a unit of execution.

    • A task is a logical concept while a thread is a physical concept.

    • A task can be broken down into multiple threads.

    • A task can be scheduled by the operating system while a thread cannot.

    • A task can communicate with other tasks while a thread cannot.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write a program to explain the use case related to delegate
  • Ans. 

    Delegate is used to pass methods as parameters to other methods or to invoke methods asynchronously.

    • Delegate is a type-safe function pointer.

    • It allows methods to be passed as parameters to other methods.

    • It can be used to invoke methods asynchronously.

    • It can be used to implement events and callbacks.

    • Example: passing a method as a parameter to a sorting algorithm.

    • Example: invoking a method asynchronously using BeginInvok

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basics, focus more on concepts rather than the implementation details

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test will a hackerrank test where it might have technical MCQ and/or coding test.

Round 2 - Technical 

(1 Question)

  • Q1. Interviewer will test your logic building capability with puzzel/coding and technical questions and experience discussion.
Round 3 - One-on-one 

(1 Question)

  • Q1. Its a normal discussion with HR about CTC and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - In TR interviewer are really good. They will help you and give hints. They mostly check if you have problem solving approch.

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - learn basic javascript questions with practical approach

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A c++ written round. It contains good questions on c++ related to exception handling, virtual table concepts, smart_ptrs , etc ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with your project.
Have decent but not great knowledge knowledge in DS/Algos
Know basics of system design.
Be good in your programming language.

I applied via Naukri.com and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Oracle Architecture, RAC Setup, Golden Gate Troubleshooting, Data Guard recover, RMAN restoration

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Day to Day activities and Oracle architecture

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Java memory management
  • Q2. Spring boot basics
  • Q3. Classloaders in java
  • Ans. 

    Classloaders are responsible for loading classes into the JVM at runtime.

    • Java has three built-in classloaders: bootstrap, extension, and system.

    • Custom classloaders can be created to load classes from non-standard sources.

    • Classloaders follow a delegation model, where they first delegate to their parent classloader before attempting to load the class themselves.

    • Classloaders can be used for dynamic class loading and hot-s

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare java basics very well and solve various coding challenges

Skills evaluated in this interview

I applied via Referral and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Sliding window problem in an Array(using 2 pointers) like Pythagorean triplets.
  • Q2. Overlapping circular linked list problem.
  • Ans. 

    Detect if two circular linked lists overlap

    • Traverse both lists and check if they have the same tail node

    • If they have different tail nodes, they do not overlap

    • If they have the same tail node, check if they intersect at any point

    • Use Floyd's cycle-finding algorithm to detect intersection point

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 6 rounds of technical interview . Each round of 1 hr or more. In all the rounds I was asked to write proper programs (Sometimes on HackerRank, sometimes on an IDE, sometimes just on a text editor.) . Questions were designed to test problem solving abilities and proper use to dataStructures and coding basics. Lot of emphasis on writing efficient program with least time complexity possible.

During preparations, its important to understand basics of different dataStructures and how to efficiently use it in your programs . For practicing interview problems, I referred leetcode and geeksforgeeks . Solving different kind of problems from these websites really helped me. Dynamic Programming is also an important area from where lot of problems are asked in interview.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2023. There were 6 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 - HR 

(1 Question)

  • Q1. Why did you leave your last job? What is your expected compensation? When are you available to start?
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager, behavior, background, project
Round 4 - Coding Test 

Hackerrank
1. write a program to check if a patient has fever, based on measurement, degree, time to take a temperature

Round 5 - Coding Test 

Hackerrank
1. write a query to get total based on sector, but the column is varchar type, then order by

Round 6 - Coding Test 

Hackerrank
write a program for pharmacy and display information

Interview Preparation Tips

Topics to prepare for Oracle Cerner Senior Software Engineer interview:
  • Java
  • Kubernetes
  • Big Data
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Regarding js coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Nov 2023.

Round 1 - Coding Test 

Simple coding test - DSA questions. Questions on JS

Round 2 - Technical 

(1 Question)

  • Q1. JS Concepts - Closures, Promise

AVEVA Interview FAQs

How many rounds are there in AVEVA Senior R&D Engineer interview?
AVEVA interview process usually has 2 rounds. The most common rounds in the AVEVA interview process are Technical.
What are the top questions asked in AVEVA Senior R&D Engineer interview?

Some of the top questions asked at the AVEVA Senior R&D Engineer interview -

  1. What is difference between task and thr...read more
  2. Write a program to explain the use case related to deleg...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 174 Interviews
AVASOFT Interview Questions
2.9
 • 162 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
EbixCash Limited Interview Questions
4.0
 • 102 Interviews
SPRINKLR Interview Questions
3.0
 • 101 Interviews
View all

AVEVA Senior R&D Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Consultant
133 salaries
unlock blur

₹9 L/yr - ₹23 L/yr

Software Engineer
75 salaries
unlock blur

₹5.5 L/yr - ₹14.2 L/yr

Principal Consultant
64 salaries
unlock blur

₹15 L/yr - ₹33 L/yr

Test Engineer
55 salaries
unlock blur

₹5.4 L/yr - ₹12 L/yr

Consultant
54 salaries
unlock blur

₹7 L/yr - ₹15.2 L/yr

Explore more salaries
Compare AVEVA with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

Chetu

3.3
Compare

R Systems International

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