Upload Button Icon Add office photos

Temenos

Compare button icon Compare button icon Compare

Filter interviews by

Temenos Associate Product Engineer Interview Questions and Answers

Updated 27 Jun 2025

6 Interview questions

An Associate Product Engineer was asked 11mo ago
Q. What are access specifiers, and can you provide examples of their use?
Ans. 

Access specifiers control the visibility of class members in object-oriented programming.

  • Public: accessible from any class

  • Private: only accessible within the same class

  • Protected: accessible within the same class and its subclasses

  • Examples: public int age; private String name; protected double salary;

An Associate Product Engineer was asked
Q. What are the differences between lists and tuples in Python?
Ans. 

Lists are mutable, ordered collections of items while tuples are immutable, ordered collections of items in Python.

  • Lists are defined using square brackets [] while tuples are defined using parentheses ().

  • Lists can be modified (add, remove, change elements) while tuples cannot be modified once created.

  • Lists are typically used for collections of similar items while tuples are used for fixed collections of items.

  • Exam...

Associate Product Engineer Interview Questions Asked at Other Companies

Q1. Do you know SQL? Can you write a query for selecting some rows in ... read more
Q2. What is javascript? What is the difference between Java and Javas ... read more
Q3. Is Java a compiled language or an interpreted language?
Q4. What are the different types of access modifiers in Java?
asked in Deltax
Q5. Solve a Dynamic Programming question from the coding test.
An Associate Product Engineer was asked
Q. Write a simple program in Java or Python.
Ans. 

A simple program to calculate the sum of an array of integers in Python.

  • Define a function that takes an array as input.

  • Use a loop to iterate through the array elements.

  • Accumulate the sum in a variable and return it.

  • Example: sum_array([1, 2, 3]) should return 6.

🔥 Asked by recruiter 2 times
An Associate Product Engineer was asked
Q. What is the difference between HTTP and HTTPS?
Ans. 

HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

  • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

  • HTTP operates on port 80 while HTTPS operates on port 443.

  • HTTP is vulnerable to attacks while HTTPS is secure due to SSL/TLS encryption.

  • HTTPS provides authentication, data integrity, and confidentiality.

  • HTTPS is used for secure online transactions su...

An Associate Product Engineer was asked 1w ago
Q. 2 qns on array
Ans. 

Arrays are collections of elements, typically of the same type, stored in contiguous memory locations.

  • An array can hold multiple values, e.g., ['apple', 'banana', 'cherry'].

  • Arrays are zero-indexed, meaning the first element is accessed with index 0.

  • They have a fixed size once declared, e.g., String[] fruits = new String[3];

  • Arrays can be multidimensional, e.g., String[][] grid = {{'A', 'B'}, {'C', 'D'}}.

An Associate Product Engineer was asked 11mo ago
Q. Quick sort algorithm and code
Ans. 

Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

  • Quick sort picks a pivot element and partitions the array around the pivot.

  • It recursively sorts the sub-arrays on either side of the pivot.

  • It is efficient for large datasets but can have worst-case time complexity of O(n^2).

  • Example: [3, 6, 8, 10, 1, 2, 1]

Temenos Associate Product Engineer Interview Experiences

10 interviews found

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. About ur self
  • Q2. SDLC STLC related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 codings and 1 sql questions were asked

Round 2 - Technical 

(1 Question)

  • Q1. Basics of questions like string, stringbuffer
Round 3 - HR 

(1 Question)

  • Q1. General attitude questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Quick sort algorithm and code
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

    • Quick sort picks a pivot element and partitions the array around the pivot.

    • It recursively sorts the sub-arrays on either side of the pivot.

    • It is efficient for large datasets but can have worst-case time complexity of O(n^2).

    • Example: [3, 6, 8, 10, 1, 2, 1]

  • Answered by AI
  • Q2. Access specifiers uses and examples
  • Ans. 

    Access specifiers control the visibility of class members in object-oriented programming.

    • Public: accessible from any class

    • Private: only accessible within the same class

    • Protected: accessible within the same class and its subclasses

    • Examples: public int age; private String name; protected double salary;

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Contains more than 6 questions, basically we can solve those using java and mysql.

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Asked the questions related to testing and automation
  • Q2. Asked about the testing and automation questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at Automation testing and Manual Basics and b.tech percentage should be above 70% is preferred
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Assignment 

I was asked to answer five types of questions for the assessment and to write code that describes and addresses those issues; however, only three are required to be completed.

Round 2 - Technical 

(1 Question)

  • Q1. Programming related concepts
Round 3 - One-on-one 

(1 Question)

  • Q1. HR round asked about the projects and future growth details
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. 2 qns on array
  • Ans. 

    Arrays are collections of elements, typically of the same type, stored in contiguous memory locations.

    • An array can hold multiple values, e.g., ['apple', 'banana', 'cherry'].

    • Arrays are zero-indexed, meaning the first element is accessed with index 0.

    • They have a fixed size once declared, e.g., String[] fruits = new String[3];

    • Arrays can be multidimensional, e.g., String[][] grid = {{'A', 'B'}, {'C', 'D'}}.

  • Answered by AI
  • Q2. Mostly qns on sql
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Java logical questions and SQL
  • Q2. Learn python and linux might be helpful for working in VMs
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

For On campus
2 sql questions
2 coding question
1 question (to write a paragraph)

Round 2 - Technical 

(4 Questions)

  • Q1. Technical interview Asked question based on the things mentioned in resume
  • Q2. Difference between lists and tuple in python
  • Ans. 

    Lists are mutable, ordered collections of items while tuples are immutable, ordered collections of items in Python.

    • Lists are defined using square brackets [] while tuples are defined using parentheses ().

    • Lists can be modified (add, remove, change elements) while tuples cannot be modified once created.

    • Lists are typically used for collections of similar items while tuples are used for fixed collections of items.

    • Example: ...

  • Answered by AI
  • Q3. Some basic questions on sql queries
  • Q4. Asked to write a simple program in java/python
  • Ans. 

    A simple program to calculate the sum of an array of integers in Python.

    • Define a function that takes an array as input.

    • Use a loop to iterate through the array elements.

    • Accumulate the sum in a variable and return it.

    • Example: sum_array([1, 2, 3]) should return 6.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearing interview will be easy if you have knowledge about things mentioned in resume. Dont add things you dont know clearly in resume.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Sql and python ,c or java

Round 2 - Technical 

(3 Questions)

  • Q1. Array coding question
  • Q2. Diff between http and https
  • Ans. 

    HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

    • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

    • HTTP operates on port 80 while HTTPS operates on port 443.

    • HTTP is vulnerable to attacks while HTTPS is secure due to SSL/TLS encryption.

    • HTTPS provides authentication, data integrity, and confidentiality.

    • HTTPS is used for secure online transactions such as...

  • Answered by AI
  • Q3. About the project done
Round 3 - HR 

(1 Question)

  • Q1. Asked for location about family friendly conversation

Interview Preparation Tips

Topics to prepare for Temenos Associate Product Engineer interview:
  • C programming
  • SQL

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 Temenos?
Ask anonymously on communities.

Temenos Interview FAQs

How many rounds are there in Temenos Associate Product Engineer interview?
Temenos interview process usually has 2-3 rounds. The most common rounds in the Temenos interview process are Technical, Coding Test and HR.
How to prepare for Temenos Associate Product Engineer interview?
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 Temenos. The most common topics and skills that interviewers at Temenos expect are Agile, Banking Software, Coding, Core banking and Market Analysis.
What are the top questions asked in Temenos Associate Product Engineer interview?

Some of the top questions asked at the Temenos Associate Product Engineer interview -

  1. difference between lists and tuple in pyt...read more
  2. asked to write a simple program in java/pyt...read more
  3. Diff between http and ht...read more
How long is the Temenos Associate Product Engineer interview process?

The duration of Temenos Associate Product Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 10 interview experiences

Difficulty level

Easy 57%
Moderate 29%
Hard 14%

Duration

Less than 2 weeks 71%
2-4 weeks 29%
View more

Interview Questions from Similar Companies

Adobe Interview Questions
3.9
 • 247 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 176 Interviews
Oracle Cerner Interview Questions
3.6
 • 161 Interviews
VMware Software Interview Questions
4.4
 • 145 Interviews
Thomson Reuters Interview Questions
4.1
 • 124 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 111 Interviews
Atlassian Interview Questions
3.4
 • 92 Interviews
View all
Temenos Associate Product Engineer Salary
based on 324 salaries
₹5.8 L/yr - ₹11.5 L/yr
29% more than the average Associate Product Engineer Salary in India
View more details

Temenos Associate Product Engineer Reviews and Ratings

based on 43 reviews

3.0/5

Rating in categories

2.5

Skill development

3.2

Work-life balance

3.1

Salary

2.5

Job security

3.1

Company culture

2.5

Promotions

2.6

Work satisfaction

Explore 43 Reviews and Ratings
Senior Software Engineer
851 salaries
unlock blur

₹9.4 L/yr - ₹15.7 L/yr

Software Engineer
747 salaries
unlock blur

₹5.2 L/yr - ₹12 L/yr

Senior Test Engineer
410 salaries
unlock blur

₹8.5 L/yr - ₹15 L/yr

Test Engineer
370 salaries
unlock blur

₹4.5 L/yr - ₹9.5 L/yr

Associate Product Engineer
324 salaries
unlock blur

₹5.8 L/yr - ₹11.4 L/yr

Explore more salaries
Compare Temenos with

24/7 Customer

3.5
Compare

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Adobe

3.9
Compare
write
Share an Interview