Upload Button Icon Add office photos

Temenos

Compare button icon Compare button icon Compare

Filter interviews by

Temenos Interview Questions, Process, and Tips

Updated 25 Feb 2025

Top Temenos Interview Questions and Answers

View all 54 questions

Temenos Interview Experiences

Popular Designations

82 interviews found

Interview Questionnaire 

23 Questions

  • Q1. In exception handling how many ways can we throw exception
  • Ans. 

    There are two ways to throw an exception in exception handling.

    • Exceptions can be thrown using the throw keyword.

    • Exceptions can also be thrown implicitly by the runtime system.

    • Examples of explicit throwing include throw new Exception() and throw new IOException().

    • Examples of implicit throwing include division by zero or null pointer dereference.

  • Answered by AI
  • 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; }
  • Q21. About searching techniques? some question?
  • Q22. Which search is best?
  • 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

Top Temenos Associate Software Engineer Interview Questions and Answers

Q1. In exception handling how many ways can we throw exception
View answer (2)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed 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

Top Temenos Associate Software Engineer Interview Questions and Answers

Q1. In exception handling how many ways can we throw exception
View answer (2)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Temenos Interview Questions and Answers for Freshers
illustration image

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
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

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

Temenos interview questions for popular designations

 Software Engineer

 (15)

 Business Analyst

 (7)

 Associate Product Engineer

 (6)

 Software Developer

 (5)

 Associate Software Engineer

 (4)

 Product Engineer

 (3)

 Test Engineer

 (3)

 Senior Test Engineer

 (3)

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

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Get interview-ready with Top Temenos Interview Questions

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

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Jobs at Temenos

View all
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

Associate Product Engineer Interview Questions asked at other Companies

Q1. Do you know SQL? Can you write a query for selecting some rows in a db table?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

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

Principal Software Engineer Interview Questions asked at other Companies

Q1. Codng question:For the given stream of integers, calculate the avg,print top 10 elements and bottom 10 elements. It was not clearly mentioned on the problem. After poking more on the problem only provided the details.
View answer (1)
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

Associate Product Engineer Interview Questions asked at other Companies

Q1. Do you know SQL? Can you write a query for selecting some rows in a db table?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. About testing process
  • Q2. Bugs I found in last project
  • Ans. 

    I found and reported 15 critical bugs in the last project, including issues with data validation and UI functionality.

    • Identified 5 bugs related to data validation errors

    • Discovered 7 UI functionality bugs affecting user experience

    • Reported 3 critical bugs impacting system performance

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Framework of test automation
  • Ans. 

    Framework of test automation refers to the structure and guidelines for implementing automated testing.

    • Framework provides a set of rules and guidelines for creating and organizing automated tests.

    • It includes tools, libraries, coding standards, and best practices for test automation.

    • Common types of test automation frameworks include data-driven, keyword-driven, and hybrid frameworks.

    • Frameworks help in improving test eff...

  • Answered by AI

Skills evaluated in this interview

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -&gt; Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Capital market related questions
  • Q2. Mutual Funds, Bonds, Equity , Derivatives

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

INTERVIEWS

Flexsin Technologies

No Interviews

SALARIES

Granite River Labs

SALARIES

Granite River Labs

INTERVIEWS

Temenos

No Interviews

SALARIES

Flexsin Technologies

INTERVIEWS

Mallow Technologies

No Interviews

JOBS

Mallow Technologies

No Jobs

JOBS

Mallow Technologies

No Jobs

JOBS

Mallow Technologies

No Jobs

Tell us how to improve this page.

Temenos Interview Process

based on 56 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
View all

Temenos Reviews and Ratings

based on 816 reviews

3.2/5

Rating in categories

3.0

Skill development

3.3

Work-life balance

3.1

Salary

3.2

Job security

2.9

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 816 Reviews and Ratings
Senior Support Engineer

Chennai,

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Analyst - Product Support

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Analyst - Product Support

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
819 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
750 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
433 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Engineer
372 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
232 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Temenos with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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