Upload Button Icon Add office photos

Temenos

Compare button icon Compare button icon Compare

Filter interviews by

Temenos Associate Software Engineer Interview Questions, Process, and Tips

Updated 25 Feb 2025

Top Temenos Associate Software Engineer Interview Questions and Answers

  • Q1. In exception handling how many ways can we throw exception
  • Q2. How do you do dynamic memory allocation in C,C++? what is the difference?
  • Q3. How to find the string in an array of strings which are arranged in sorted order in the array?
View all 17 questions

Temenos Associate Software Engineer Interview Experiences

4 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

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

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2023. There were 4 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 - Coding Test 

There was a test with 4 questions and 3 to be answered mandatorily, 1 SQL and 2 Programming on our preferred language and a paragraph writing as 5th question.

Round 3 - Technical 

(2 Questions)

  • Q1. Resume based questions, Basic programming and SQL questions, Types of Cloud services, About Temenos and a few scenario based questions.
  • Q2. Simple Answers can google basic questions on programming for freshers
Round 4 - HR 

(1 Question)

  • Q1. HR Explained job roles and responsibilities
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Coding Test 

Coding of Java and Sql

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic to moderate questions on data structure and algorithms, git and sql
  • Q2. Situation qns

Temenos interview questions for designations

 Software Engineer

 (15)

 Senior Software Engineer

 (2)

 Principal Software Engineer

 (1)

 Associate Product Engineer

 (6)

 Software Engineer Level 1

 (1)

 Software Development Engineer 1

 (1)

 Senior Software Engineer Product Development

 (1)

 Software Developer

 (5)

Interview questions from similar companies

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

I applied via campus placement at K L E S Education College, Hubli and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was conducted online modh

Round 2 - Coding Test 

There were 3 codes given and had to choose 1 and write it down in pen paper mode

Round 3 - Technical 

(2 Questions)

  • Q1. Oops questions like encpuslation, abstraction
  • Q2. Os questions like paging, segmentation
Round 4 - HR 

(2 Questions)

  • Q1. Same basich hr questions introduce ur self
  • Q2. Why Visteon, and what do u know about Visteon
  • Ans. 

    Visteon is a leading global automotive supplier known for innovative technology solutions in the automotive industry.

    • Visteon is a well-established company with a strong reputation in the automotive industry.

    • They are known for their cutting-edge technology solutions for vehicle cockpit electronics.

    • Visteon has a global presence and works with major automotive manufacturers around the world.

    • The company focuses on developi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The company hr are friendly and easy to talk to I was not selected even though clearing all rounds so don't worry it happens.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Rourkela and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Data Structures and Algorithms medium level questions

Round 2 - Technical 

(2 Questions)

  • Q1. I was asked to solve problems from linkedlist and trees. Then he asked about concepts of OOPs and DBMS. Comparatively he asked tough questions from OOPs.
  • Q2. As I had used reactjs, nodejs and MongoDB in my project, interviewer asked FAQs from these topics.
Round 3 - HR 

(2 Questions)

  • Q1. How do you handle pressure.
  • Q2. Toughest problem faced in project.
  • Ans. 

    Implementing a real-time chat feature with message encryption and decryption.

    • Implementing end-to-end encryption to ensure secure communication

    • Handling real-time updates and synchronization across multiple devices

    • Dealing with potential performance issues due to encryption and decryption processes

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

20 Mcqs and 2 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Sort zeroes to end of array
  • Ans. 

    Sort zeroes to end of array

    • Iterate through the array and move all zeroes to the end

    • Use two pointers approach to swap elements

    • Maintain a count of zeroes encountered

  • Answered by AI
  • Q2. Questions on oops

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Find the 2nd largest number in list

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

I applied via campus placement at University of Mumbai, Mumbai and was interviewed in Jan 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Technical test consisted of standard apti questions, core cs questions and 2 coding questions very easy level.

Round 2 - Technical 

(1 Question)

  • Q1. In online technical round, 1st they ask about project, then dbms, data warehouse, sql queries and sdlc lifecycle.
Round 3 - HR 

(1 Question)

  • Q1. This round was conversational round, they ask about personal information like family background and if we are ready to work in rotational shifts (theirs conditions).
Round 4 - Group Discussion 

After few days they called and said you are selected and called us Airoli office for discussion.
In office, they took Introduction round, then made groups for discussion.
In GD, every individual had to come forward and speak on gd topic for minimum 3-4 minutes.
We were not told about this GD round on call. This was surprise. Final candidates were selected on basis of this round.
then after a week results were announced,.

Interview Preparation Tips

Topics to prepare for Teradata Associate Software Engineer interview:
  • dbma
  • SQL
Interview preparation tips for other job seekers - There was no bond, and first 4 months will be training. Interview process was a cake walk, main round was GD(more like speech round).
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions Based on arrays level of medium

Round 2 - Technical 

(1 Question)

  • Q1. 2 questions based on array and linked list
Round 3 - Technical 

(1 Question)

  • Q1. Question based on metrix
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview Preparation Tips

Topics to prepare for ServiceNow Associate Software Engineer interview:
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - Mostly data structures topics are important so you can practicing data structures questions

Temenos Interview FAQs

How many rounds are there in Temenos Associate Software Engineer interview?
Temenos interview process usually has 2-3 rounds. The most common rounds in the Temenos interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Temenos Associate Software 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 C++, Java, Medical Coding, Oracle and SQL.
What are the top questions asked in Temenos Associate Software Engineer interview?

Some of the top questions asked at the Temenos Associate Software Engineer 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

Tell us how to improve this page.

Temenos Associate Software Engineer Interview Process

based on 4 interviews

Interview experience

4.3
  
Good
View more
Temenos Associate Software Engineer Salary
based on 82 salaries
₹5.4 L/yr - ₹9.5 L/yr
22% more than the average Associate Software Engineer Salary in India
View more details

Temenos Associate Software Engineer Reviews and Ratings

based on 9 reviews

3.1/5

Rating in categories

2.5

Skill development

3.1

Work-life balance

3.6

Salary

2.9

Job security

3.4

Company culture

3.3

Promotions

2.7

Work satisfaction

Explore 9 Reviews and Ratings
Senior Software Engineer
856 salaries
unlock blur

₹6 L/yr - ₹17.4 L/yr

Software Engineer
752 salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Senior Test Engineer
433 salaries
unlock blur

₹5.8 L/yr - ₹15 L/yr

Test Engineer
372 salaries
unlock blur

₹4.5 L/yr - ₹9.5 L/yr

Business Analyst
232 salaries
unlock blur

₹5 L/yr - ₹14.9 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