Upload Button Icon Add office photos

Temenos

Compare button icon Compare button icon Compare

Filter interviews by

Temenos Interview Questions and Answers

Updated 27 Jun 2025
Popular Designations

59 Interview questions

A Production Engineer was asked 2w ago
Q. What is Java?
Ans. 

Java is a high-level, object-oriented programming language used for building platform-independent applications.

  • Developed by Sun Microsystems in 1995, now owned by Oracle.

  • Java is platform-independent due to the Java Virtual Machine (JVM).

  • It follows the principle of 'Write Once, Run Anywhere' (WORA).

  • Commonly used for web applications, mobile apps (Android), and enterprise software.

  • Java supports multithreading, allow...

View all Production Engineer interview questions
A Software Developer was asked 2mo ago
Q. What is the definition of a data structure?
Ans. 

A data structure is a specialized format for organizing, processing, and storing data efficiently.

  • 1. Types: Common data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  • 2. Purpose: They enable efficient data manipulation and retrieval, optimizing performance for specific tasks.

  • 3. Example: An array stores elements in contiguous memory locations, allowing fast access via indices.

  • 4. Example:...

View all Software Developer interview questions
An Associate Software Engineer was asked 4mo ago
Q. What is indexing?
Ans. 

Indexing is a technique used to optimize the performance of databases by creating a data structure that allows for quick lookup of data.

  • Indexing involves creating a data structure that maps key values to their corresponding data entries.

  • It helps in speeding up data retrieval operations by reducing the number of disk accesses needed.

  • Examples of indexing include creating indexes on columns in a database table to imp...

View all Associate Software Engineer interview questions
A Technical Lead was asked 6mo ago
Q. Two Sum Problem Statement Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. Implement the solution in O(n) time complexity. You may as...
Ans. 

The Two Sum problem involves finding two numbers in an array that add up to a target value.

  • Iterate through the array and store the difference between the target and current element in a hashmap.

  • Check if the current element exists in the hashmap, if yes, return the indices of the current element and the stored difference.

  • Time complexity of O(n) can be achieved by using a hashmap to store elements and their indices.

View all Technical Lead interview questions
A Technical Lead was asked 6mo ago
Q. How do load balancers work?
Ans. 

Load balancers distribute incoming network traffic across multiple servers to ensure no single server is overwhelmed.

  • Load balancers monitor the health of servers and distribute traffic based on predefined algorithms.

  • They can be hardware-based or software-based.

  • Common algorithms used by load balancers include round-robin, least connections, and IP hash.

  • Load balancers can improve reliability and scalability of a web...

View all Technical Lead interview questions
A Technical Lead was asked 6mo ago
Q. Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
Ans. 

A MinStack supports push, pop, top, and retrieving the minimum element in constant time.

  • Use two stacks: one for the main stack and another for tracking minimums.

  • Push operation: Add to both stacks; if new value is smaller, push to min stack.

  • Pop operation: Remove from both stacks; check if popped value is the current minimum.

  • Top operation: Return the top of the main stack.

  • GetMin operation: Return the top of the min ...

View all Technical Lead interview questions
A Software Engineer Level 1 was asked 12mo ago
Q. What is an empty class in Java?
Ans. 

An empty class in Java is a class that does not have any member variables or methods.

  • An empty class can be defined like this: class EmptyClass {}

  • Empty classes are often used as placeholders or markers in code.

  • Even though an empty class does not have any explicit members, it still inherits from the Object class in Java.

View all Software Engineer Level 1 interview questions
Are these interview questions helpful?
A Software Developer was asked 12mo ago
Q. What is the use of RESTful APIs?
Ans. 

RESTful API is used to allow communication between different systems over the internet using standard HTTP methods.

  • Allows systems to communicate and exchange data over the internet

  • Uses standard HTTP methods like GET, POST, PUT, DELETE

  • Follows REST architectural principles for designing networked applications

  • Enables stateless communication between client and server

  • Promotes scalability and flexibility in system archi...

View all Software Developer interview questions
A Software Developer was asked 12mo ago
Q. What is synchronization?
Ans. 

Synchronisation is the coordination of multiple processes or threads to ensure they work together effectively.

  • Synchronisation is important in multi-threaded programming to prevent race conditions and ensure data consistency.

  • Common synchronization mechanisms include locks, semaphores, and barriers.

  • For example, using a mutex lock to protect a shared resource from being accessed by multiple threads simultaneously.

View all Software Developer interview questions
A Software Developer was asked 12mo ago
Q. How do you design a web application?
Ans. 

Designing a web application involves planning the user interface, database structure, backend functionality, and security measures.

  • Identify the target audience and their needs

  • Create wireframes and mockups to visualize the layout

  • Choose appropriate technologies for frontend and backend development

  • Implement responsive design for mobile compatibility

  • Secure the application against common vulnerabilities

  • Test the applica...

View all Software Developer interview questions

Temenos Interview Experiences

91 interviews found

Interview Questionnaire 

23 Questions

  • Q1. In exception handling how many ways can we throw exception
  • Q2. Reverse string Program
  • Ans. 

    Reverse a given string using array of characters.

    • Create an empty array to store the reversed string.

    • Loop through the original string from end to start.

    • Push each character into the empty array.

    • Join the array to form the reversed string.

  • Answered by AI
  • Q3. Difference between copy constructor and assignment operator
  • Ans. 

    Copy constructor creates a new object by copying an existing object, while assignment operator assigns the value of an existing object to another object.

    • Copy constructor is used to initialize a new object with the values of an existing object.

    • Assignment operator is used to assign the value of an existing object to another object.

    • Copy constructor is called when a new object is created from an existing object.

    • Assignment ...

  • Answered by AI
  • Q4. Implement a simple copy constructor. why to we implement our own
  • Ans. 

    A copy constructor is used to create a new object with the same values as an existing object. We implement our own to ensure proper copying of data members.

    • A copy constructor is needed when we want to create a new object with the same values as an existing object.

    • If we don't implement our own copy constructor, the default copy constructor provided by the compiler may not copy data members properly.

    • We can implement our ...

  • Answered by AI
  • Q5. Why we use QT framework?
  • Ans. 

    QT framework is used for developing cross-platform applications with a single codebase.

    • QT provides a wide range of libraries and tools for developing GUI applications.

    • QT supports multiple platforms including Windows, Linux, macOS, Android, and iOS.

    • QT has a large community and extensive documentation.

    • QT is written in C++ and supports other programming languages like Python and Java.

    • QT is used by companies like Autodesk,...

  • Answered by AI
  • Q6. What is RTTI?
  • Ans. 

    RTTI stands for Run-Time Type Identification.

    • RTTI is a feature in C++ that allows the type of an object to be determined at runtime.

    • It is used to implement dynamic_cast, typeid, and exception handling.

    • RTTI can be used to check if an object is of a certain type before casting it.

    • It can also be used to determine the type of an object in order to perform specific operations on it.

  • Answered by AI
  • Q7. Some questions on STL?
  • Q8. Which design patterns you used and why explain?
  • Ans. 

    I have used the Singleton and Factory design patterns in my previous projects.

    • Singleton pattern was used to ensure only one instance of a class is created and provide a global point of access to it.

    • Factory pattern was used to create objects without exposing the instantiation logic to the client and provide a way to create objects of a family without specifying their concrete classes.

  • Answered by AI
  • Q9. What are all the Os QT supports ? do i need to compile again for every Operating system?
  • Ans. 

    QT supports multiple operating systems and cross-compilation is possible.

    • QT supports Windows, macOS, Linux, Android, iOS, and many other operating systems.

    • Cross-compilation is possible, meaning you can compile for different operating systems on a single machine.

    • QT also supports embedded systems like Raspberry Pi and BeagleBone.

    • QT provides pre-built binaries for some operating systems, but for others, you may need to co...

  • Answered by AI
  • Q10. What is Qpointer?
  • Ans. 

    QPointer is a deprecated Qt class used for storing and managing pointers.

    • QPointer is used to avoid dangling pointers in Qt applications.

    • It is a template class that can be used with any QObject-derived class.

    • QPointer is now deprecated and replaced by QWeakPointer.

    • QPointer can be used to check if a QObject is still valid before accessing it.

  • Answered by AI
  • Q11. What is dpointer?
  • Ans. 

    dpointer is a Qt framework concept used for efficient memory management.

    • dpointer is a private implementation pointer.

    • It is used to hide implementation details from the public API.

    • dpointer allows for copy-on-write semantics.

    • It reduces memory usage and improves performance.

    • Example: QString uses dpointer to store its data.

    • Example: QSharedDataPointer is used to share data between objects.

  • Answered by AI
  • Q12. Which version of Qt you used?
  • Ans. 

    I have used Qt version 5.12.3 for my previous project.

    • Qt version 5.12.3 was used in my previous project

    • I have experience working with Qt 5.15.2 as well

    • I am familiar with the features and functionalities of Qt 5.12.3

  • Answered by AI
  • Q13. Some more questions on Qt not able to remember now
  • Q14. Some questions on my projects
  • Q15. How to find linkedlist is circualar or not?
  • Ans. 

    To check if a linked list is circular, use two pointers, one moving at twice the speed of the other. If they meet, the list is circular.

    • Use two pointers, one moving at twice the speed of the other

    • If the faster pointer catches up to the slower pointer, the list is circular

    • If the faster pointer reaches the end of the list, the list is not circular

  • Answered by AI
  • Q16. Find the Merge point in 2 linkedlists?
  • Ans. 

    Find the merge point of 2 linked lists.

    • Traverse both lists and find their lengths

    • Move the pointer of the longer list to the same distance as the shorter list

    • Move both pointers until they meet at the merge point

    • If there is no merge point, return null

  • Answered by AI
  • Q17. How to find the string in an array of strings which are arranged in sorted order in the array?
  • Ans. 

    To find a string in a sorted array of strings.

    • Use binary search algorithm to search for the string in the array.

    • Compare the search string with the middle element of the array.

    • If the search string is less than the middle element, search in the left half of the array.

    • If the search string is greater than the middle element, search in the right half of the array.

    • Repeat the process until the string is found or the search sp...

  • Answered by AI
  • Q18. Some questions on singleton design pattern?
  • Q19. Single ton class also? How to create the singleton and how to delete the singleton object?
  • Ans. 

    Singleton class is a design pattern that restricts the instantiation of a class to one object.

    • To create a singleton, we need to make the constructor private and provide a static method to get the instance of the class.

    • To delete the singleton object, we can simply set the instance to null.

    • Singletons are useful when we need to ensure that only one instance of a class exists throughout the application.

    • Example: Logger clas...

  • Answered by AI
  • Q20. )Asked Outputs of some methods void myfunc(int *a) { a = new int; *a=10; } int main() { int *p; myfunc(p); std::cout<<"p value is "<<*p< return 0; }
  • Ans. 

    The code demonstrates pointer behavior and memory allocation in C++, leading to undefined behavior.

    • Pointers in C++ can point to memory locations, but passing them by value does not affect the original pointer.

    • In myfunc, 'a' is a local copy of 'p', so changes to 'a' do not reflect in 'p' in main.

    • Dereferencing 'p' in main leads to undefined behavior since 'p' was never initialized.

  • Answered by AI
  • Q21. About searching techniques? some question?
  • Q22. Which search is best?
  • Ans. 

    The best search method depends on the context, data structure, and requirements of the task at hand.

    • Binary Search: Efficient for sorted arrays, with O(log n) time complexity. Example: Finding an element in a sorted list.

    • Linear Search: Simple and works on unsorted data, with O(n) time complexity. Example: Searching for a name in an unsorted list.

    • Depth-First Search (DFS): Useful for tree/graph traversal. Example: Finding...

  • Answered by AI
  • Q23. How do you do dynamic memory allocation in C,C++? what is the difference?
  • Ans. 

    Dynamic memory allocation in C/C++ is done using malloc(), calloc(), realloc() functions. C++ also has new and delete operators.

    • malloc() allocates memory block of specified size

    • calloc() allocates memory block and initializes it to zero

    • realloc() changes the size of previously allocated memory block

    • new operator in C++ allocates memory and calls constructor

    • delete operator in C++ deallocates memory and calls destructor

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Aptitude Test : 30-60 Minutes.Quantitative (Maths) + Verbal (English Objective) + Logical Reasoning (LR) + Data Interpretation (DI)Technical Written : 30-60 Minutes

College Name: BITS MESRA

Skills evaluated in this interview

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

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic sql query and some project related questions
  • Q2. What is indexing
  • Ans. 

    Indexing is a technique used to optimize the performance of databases by creating a data structure that allows for quick lookup of data.

    • Indexing involves creating a data structure that maps key values to their corresponding data entries.

    • It helps in speeding up data retrieval operations by reducing the number of disk accesses needed.

    • Examples of indexing include creating indexes on columns in a database table to improve ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Some management questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is easy but work culture is too bad

Interview Questions & Answers

user image Anonymous

posted on 25 Sep 2024

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Duration - 60 minutes
Platform - Wheebox
Topics - Arrays and Strings, SQL query and Essay writing

Round 2 - Technical 

(6 Questions)

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a dedicated and experienced professional with a background in product analysis and customer support.

    • I have a strong analytical mindset and attention to detail.

    • I have excellent communication skills and enjoy working with customers to solve their problems.

    • I am proficient in using various tools and software to analyze product performance and customer feedback.

    • I have experience in conducting market research and identi...

  • Answered by AI
  • Q2. Tell me about your project ?
  • Ans. 

    I led a project to develop a new mobile app for tracking fitness goals and providing personalized workout plans.

    • Researched market trends and user preferences for fitness apps

    • Collaborated with developers to design user-friendly interface

    • Conducted beta testing with focus groups to gather feedback

    • Implemented features such as progress tracking and workout reminders

  • Answered by AI
  • Q3. Resume based questions
  • Q4. Questions related to cloud
  • Q5. Tell me about your family ?
  • Ans. 

    I come from a close-knit family of five, including my parents, older sister, and younger brother.

    • My parents have always been supportive of my career choices and encouraged me to pursue my passions.

    • My older sister is a successful lawyer who I look up to for her dedication and work ethic.

    • My younger brother is currently studying engineering and we enjoy playing sports together in our free time.

  • Answered by AI
  • Q6. Questions related to new technology
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a dedicated and detail-oriented professional with a background in product analysis and customer support.

    • I have a strong analytical mindset and attention to detail, which helps me in analyzing products effectively.

    • I have experience in providing excellent customer support and resolving issues in a timely manner.

    • I am proficient in using various tools and software to gather and analyze data for product improvement.

    • I h...

  • Answered by AI
  • Q2. Tell me about your family background ?
  • Ans. 

    I come from a close-knit family with diverse backgrounds and strong values.

    • My parents are both immigrants, my mother is from Mexico and my father is from India.

    • I have two siblings, an older brother who is a doctor and a younger sister who is studying to be a teacher.

    • Family gatherings are always filled with laughter, delicious food, and lively discussions about our different cultures.

  • Answered by AI
  • Q3. Discussion about role and responsibility

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a practice on the easy and medium questions on platforms like GeeksfoGeeks and LeetCode, it will be easier to crack coding round. Be confident and know what you mentioned in resume.
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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It included aptitude...selenium questions...java mcq questions...and a program to write

Round 2 - Technical 

(3 Questions)

  • Q1. Abstraction related questions
  • Q2. Interface, JIT, inheritance, java architecture
  • Q3. SQL questions...diff between char and varchar.....pk and fk....
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a dedicated Automation Test Engineer with 5 years of experience in creating and executing test cases for software applications.

    • Experienced in writing automated test scripts using tools like Selenium and Appium

    • Proficient in creating test plans and test cases based on requirements

    • Skilled in identifying and reporting software defects

    • Strong knowledge of Agile methodologies and continuous integration/continuous deploym...

  • Answered by AI
  • Q2. Why should I hire you
  • Ans. 

    I have a strong background in automation testing, with experience in various tools and technologies.

    • I have a solid understanding of automation testing principles and best practices

    • I have experience working with tools like Selenium, Appium, and JUnit

    • I have a track record of successfully implementing automated test scripts and improving test efficiency

    • I am a quick learner and can adapt to new technologies and frameworks ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for java

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Mainly sql qns are asked to write

Round 2 - Technical 

(1 Question)

  • Q1. Java basic questions and sql
Round 3 - HR 

(1 Question)

  • Q1. To test our communication skills
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. What is the definition of a data structure?
  • Ans. 

    A data structure is a specialized format for organizing, processing, and storing data efficiently.

    • 1. Types: Common data structures include arrays, linked lists, stacks, queues, trees, and graphs.

    • 2. Purpose: They enable efficient data manipulation and retrieval, optimizing performance for specific tasks.

    • 3. Example: An array stores elements in contiguous memory locations, allowing fast access via indices.

    • 4. Example: A li...

  • Answered by AI
  • Q2. Under what circumstances should you be concerned about race conditions in a program?
  • Ans. 

    Race conditions occur when multiple threads access shared data concurrently, leading to unpredictable results.

    • When multiple threads or processes access shared resources without proper synchronization.

    • In scenarios where the order of execution affects the outcome, such as incrementing a shared counter.

    • When using global variables that can be modified by multiple threads simultaneously.

    • In event-driven programming, where ca...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. About project of previous company
  • Q2. Check palindrome and odd of given number
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Primary on OOPS concept
  • Q2. Standard Template Library

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Temenos?
Ask anonymously on communities.

Temenos Interview FAQs

How many rounds are there in Temenos 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 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 Wealth Management, Recruitment, Core banking, Banking Software and Javascript.
What are the top questions asked in Temenos interview?

Some of the top questions asked at the Temenos interview -

  1. In exception handling how many ways can we throw except...read more
  2. How do you do dynamic memory allocation in C,C++? what is the differen...read more
  3. How to find the string in an array of strings which are arranged in sorted orde...read more
How long is the Temenos interview process?

The duration of Temenos 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

3.9/5

based on 66 interview experiences

Difficulty level

Easy 31%
Moderate 67%
Hard 2%

Duration

Less than 2 weeks 68%
2-4 weeks 24%
4-6 weeks 3%
6-8 weeks 5%
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.7
 • 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
 • 91 Interviews
View all

Temenos Reviews and Ratings

based on 941 reviews

3.1/5

Rating in categories

2.9

Skill development

3.2

Work-life balance

3.1

Salary

2.9

Job security

2.8

Company culture

2.6

Promotions

2.9

Work satisfaction

Explore 941 Reviews and Ratings
Senior Operations Analyst

Chennai

4-9 Yrs

Not Disclosed

Specialist / Sr. Specialist

Chennai

6-8 Yrs

₹ 10-21.1 LPA

.NET Developer

Chennai,

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
849 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Software Engineer
750 salaries
unlock blur

₹3.5 L/yr - ₹15 L/yr

Senior Test Engineer
411 salaries
unlock blur

₹5.8 L/yr - ₹15 L/yr

Test Engineer
370 salaries
unlock blur

₹4.5 L/yr - ₹9.5 L/yr

Associate Product Engineer
326 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