Upload Button Icon Add office photos

Temenos

Compare button icon Compare button icon Compare

Filter interviews by

Temenos Interview Questions, Process, and Tips

Updated 8 Mar 2025

Top Temenos Interview Questions and Answers

View all 54 questions

Temenos Interview Experiences

Popular Designations

83 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 Questions & Answers

user image Anonymous

posted on 15 May 2015

Interview Preparation Tips

Round: Test
Experience: I attended a written test held by Temenos India Private Ltd on August 1 of 2009. A total of 1500 candidates attended the written test and I am one among them.
The candidates were asked to come to the venue at 11 AM. The test was arranged in the company's test hall at Perungudi. They sent a call letter to me through e-mail and they asked me to take a copy of the mail along with photo identity card and resume.
I along with my five friends went to the test venue. We joined the queue for registration for the interview. During registration they verified me by checking the photo identity card and the call letter. After verifying they told me the seat number for me to write the exam.
After the end of the procedure we went to the test hall in the company's building. They were around 25 invigilators who guide to me take my seat in the hall. After seating they collected our resume along with a photograph of me.
They distributed the answers sheets and asked us to fill up the forms. When the scheduled test time reached they distributed the question papers to the candidates.
The question paper was somewhat tough and it is divided into two section such as aptitude and programming test.
For programming test was given 30 minutes for two questions and aptitude section was given 45 minutes for 45 questions.
These are the concept of the two programs for which they asked to write coding in any of the language.
1. read and print a series of string from a ASCII file and print the output in the format specified.
2. Parse a XML code and print the data based upon the XML code.
The aptitude questions contained test of Logical reasoning, aptitude and test of vocabulary.
After the test is completed they collected the question and answer sheet. They told that the result will be announced after a week.

College Name: NA
Temenos Interview Questions and Answers for Freshers
illustration image

Interview Preparation Tips

Round: Test
Experience: The selections process started with a presentation by the company where they introduced you to the environment of the company. It was followed by a written subjective test which basically tested your programming skills. Questions were based on arrays, classes and OOP concepts. Last part of the paper was an essay asking about the city you live. Total 3 questions were asked which had to answered in 25 minutes time. Total no. of students appeared for the test was around 30.

Round: Technical Interview
Experience: After the test only 5 students were shortlisted for interview. Interview for each candidate began with a technical round where they asked us to pick one programming language we are comfortable with. I picked C++. They asked me very basic concepts example Function overloading, Operator overloading, 2-D array concepts other OOP concepts.

Round: HR Interview
Experience: It went very smooth for me. They asked me what I know about the company. Though i couldn't remembered much I told them two points and then smiled. Then they asked me to tell me about myself and our NITK campus. I answered that aptly. Then they started asking serious questions i.e. if I want to go for higher studies, why am I not joining ARMY (I told them my father is in armed forces). Then they asked me if I want to work in Chennai or Bangalore, I told them Bangalore and also the reason behind it. After that, it was a casual interaction and I became quite sure about my selection.

General Tips: I think one thing which matters the most is your self-confidence. Hard-work and dedication are very important of-course but it is your confidence that separates you from other individuals. Also for most of the interviews they do not ask very big concepts, they will assess you on basic concepts, how much you know about the subject. So, be it any language, have your basic concept clear first and while giving interviews speak confidently.
This was my first campus interview I got selected and I cleared it. So yes, I was in a little shock and surprise to clear the interview.
Also one thing I forgot to mention was that the pointer cut-off for this company was 7.5 while I had only 7.11. Still I got selected. It does not matters much how much pointer you have. What matters at last is how much thorough you are with the subject. Well till morning I was not even sure if I am sitting for this company and by I got placed.
Skill Tips: Though there are huge resources of materials lying online and market, don’t run in all directions. Choose one book and an online source and start preparing it.
In my case I studied Sumita Arora for C++ and it proved to be quite beneficial for me. Also solve aptitude questions for programming available online like indiabix.com. It provides a lot of help in understanding and applying your concepts and also for time limit.
For aptitude question the best book available is "Quantitative aptitude by Arun Sharma".
For C++ language focus mainly on OOPS concepts, its features and basic building blocks like arrays, pointers etc.

Skills:
College Name: NIT Surathkal

Top Temenos Software Engineer Interview Questions and Answers

Q1. What are features of C language ?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

Jobs at Temenos

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

JOBS

Kiprosh

No Jobs

JOBS

Amazon

No Jobs

SALARIES

Adobe

INTERVIEWS

Weblytic Labs

No Interviews

SALARIES

Temenos

JOBS

Granite River Labs

No Jobs

COMPANY BENEFITS

Temenos

No Benefits

INTERVIEWS

Temenos

No Interviews

SALARIES

Tech Mahindra

SALARIES

VHS Consulting

Tell us how to improve this page.

Temenos Interview Process

based on 58 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 828 reviews

3.2/5

Rating in categories

3.0

Skill development

3.2

Work-life balance

3.2

Salary

3.1

Job security

2.9

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 828 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
859 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
753 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
436 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Engineer
372 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

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