Upload Button Icon Add office photos

Temenos

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

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

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

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

Temenos interview questions for designations

 Software Engineer

 (15)

 Associate Product Engineer

 (6)

 Senior Software Engineer

 (2)

 Principal Software Engineer

 (1)

 Software Engineer Level 1

 (1)

 Software Development Engineer 1

 (1)

 Senior Software Engineer Product Development

 (1)

 Software Developer

 (5)

Interview questions from similar companies

I applied via Company Website and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

TNQT: TCS National Qualifier Test

Round 2 - Technical 

(1 Question)

  • Q1. All technical questions related to your project and basic understanding of any programming language. Basically questions from your resume will be asked.
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best, TCS is not tough to get into. But getting good project is a main cookie to be cracked.

Interview Questionnaire 

3 Questions

  • Q1. Questions from hobbies etc mentioned in cv
  • Q2. Things i learned during my summer training
  • Ans. 

    During my summer training, I learned various programming languages, software development methodologies, and practical application of theoretical concepts.

    • Learned programming languages such as Java, Python, and SQL

    • Gained knowledge of software development methodologies like Agile and Waterfall

    • Applied theoretical concepts in real-world projects, enhancing problem-solving skills

  • Answered by AI
  • Q3. Questions from dbms,c,c++,java

Interview Preparation Tips

Round: Resume Shortlist
Experience: generally the questions were asked from the hobbies which i mentioned in the resume,so be honest
Tips: never over do things write what you are

Round: Test
Duration: 70 min minutes

General Tips: be positive never give up and take one step at a time
Skills: presence of mind, spoken skills specially english, body language
College Name: KIIT UNIVERSITY
Motivation: brand and working environment
Funny Moments: once u r placed every moment is happy and funny...

I was interviewed before May 2016.

Interview Questionnaire 

1 Question

  • Q1. Where do you see yourself in 5 years from now.
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Continuing to enhance my technical skills through ongoing learning and certifications

    • Taking on more leadership responsibilities within the team

    • Contributing to the company's growth and success through my expertise

    • Mentoring junior team members to help them grow in their careers

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was just a basic aptitude test.
Tips: You need to speed up things.
Duration: 1 hour
Total Questions: 120

Round: Email Round
Experience: We just had to write and Email in 5 mins.
Tips: Check your grammar.

Round: Technical + HR Interview
Experience: Just checking the communication skills.
Tips: Just need to be confident.

Skills: Written Communication Skills
College Name: Global Institute of Technology

Interview Questionnaire 

1 Question

  • Q1. I'll be mentioning each and everything in my experience itself

Interview Preparation Tips

Round: Test
Experience: The test was a really basic one. Also the cut off was decided depending upon the performance of those who have appeared for the exam. So a basic knowledge of maths, reasoning and verbal helped me get through the exam. Each section  had a specific time limit and cut off. I was able to complete each section within stipulated time and able to answer most of them correctly. My knowledge of aptitude I had through my coaching also helped me.
Tips: Keep your cool and don't get tensed. the questions are not above the tenth class standard even. You'll have a lot of time to think and answer every question. Don't take a risk of copying. You can surely crack the test. You'll know few questions before you enter the examination centre, as people who already appeared for the test have a habit of debating on these questions. I'm sure the paper is same for all the batches. So there isn't any reason to worry at all.
Duration: around 70 mins minute
Total Questions: 50

Round: HR Interview
Experience: My college is one of the biggest ones in Andhra Pradesh. To handle the entire bunch of comparatively better students in the state, they gave us a privilege of clearing only Test and Interview. We had no group discussion.  Coming to interview, mine was purely on HR. The questions were expected and are common HR questions for most of interviews. He asked me to tell me about myself. I told him everything. Then he had gone through my resume and asked me a few questions on my intern-ships, social activities and about the events in which I participated and organised. I explained him everything. Then he asked  me why software and then why Infosys. I answered these questions too. That's all about the questions. My panellist was a cool guy. He was laughing all through. So I could answer exactly on what I've prepared. In fact I was laughing through the entire process. It was like a small chat with a strange and new friend.
Tips: Be prepared on your resume. Every point counts. The panellists can easily guess which isn't your true achievement and can grill you on that. So be careful while preparing your resume and be prepared to answer any question related to your resume. There were people who had experience Technical round also. So having a knowledge of Basic C language will be helpful. Common HR questions are available on the internet. Most of the interview depends on how we attempt these questions. So be prepared on those questions and finally the most important thing is, don't get tensed, keep a smile on your face and let the words flow even if you feel they are wrong.

General Tips: This is a campus placement and the panellists are surely going to select most of you. A 7 day preparation is more than enough. Prepare well. Don't get tensed. Keep a smile on your face. Your confidence level matters the most for them. So don't regret for few mistakes in the interview process.
College Name: ANDHRA UNIVERSITY COLLEGE OF ENGINEERING
Motivation: This was an On campus drive in my college and I had to surely apply for this company as I had no core company visiting my campus. Many of my seniors are working in this campus and have told me that the training in Infosys is an ultimate one.
Funny Moments: I already knew many of the questions in verbal ability before I appeared for the exam from my friends. Also we could discuss and answer few questions in the test. The interviewer was a funny guy. The entire session was really funny and we had a debate on the company's owner for a while which was more funny

I was interviewed before Sep 2016.

Interview Questionnaire 

3 Questions

  • Q1. Tell about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q2. What is IOT, angular js, give some live examples
  • Q3. Just few hr questions and he asked my interests

Interview Preparation Tips

Round: Test
Experience: English verbal, non verbal, aptitude all were easy.
Duration: 1 hour 30 minutes

Round: Technical Interview
Experience: Very awkward, i got 3 out of 5

Round: HR Interview
Experience: very good hr, very friendly

Skills: Logical Thinking
College Name: Jerusalem college of engineering

Skills evaluated in this interview

I was interviewed in Mar 2017.

Interview Questionnaire 

6 Questions

  • Q1. Explain your final year project
  • Ans. 

    Developed a web-based inventory management system for a retail company

    • Used HTML, CSS, and JavaScript for the frontend

    • Implemented a backend using PHP and MySQL for data storage

    • Designed a user-friendly interface for adding, updating, and deleting products

    • Implemented features like barcode scanning and real-time stock tracking

    • Conducted testing and debugging to ensure system functionality

  • Answered by AI
  • Q2. As a mechanical engineering graduate, where do you see yourself in an IT firm
  • Ans. 

    As a mechanical engineering graduate, I see myself in an IT firm leveraging my problem-solving skills and technical knowledge to contribute to software development and innovation.

    • Applying my analytical and logical thinking skills to develop efficient software solutions

    • Utilizing my understanding of engineering principles to design and optimize software systems

    • Collaborating with cross-functional teams to integrate mechan...

  • Answered by AI
  • Q3. Which is your favourite subject
  • Ans. 

    My favorite subject is computer science.

    • I enjoy studying algorithms and data structures.

    • I find programming languages fascinating.

    • I am interested in software engineering principles and practices.

  • Answered by AI
  • Q4. Tell us your daily routine
  • Ans. 

    My daily routine involves a mix of coding, collaborating with team members, and continuous learning.

    • Start the day by checking emails and responding to any urgent messages

    • Attend daily stand-up meetings to discuss progress and plan the day's tasks

    • Work on coding tasks assigned by the team lead or project manager

    • Collaborate with team members to troubleshoot issues and brainstorm solutions

    • Participate in code reviews to ensu...

  • Answered by AI
  • Q5. How do you plan to be an efficient employee to the company?
  • Ans. 

    I plan to be an efficient employee by continuously improving my skills, being proactive, and collaborating effectively with my team.

    • Continuously improving my skills through self-learning and professional development opportunities

    • Being proactive in identifying and solving problems before they escalate

    • Collaborating effectively with my team by actively participating in meetings, sharing knowledge, and seeking feedback

    • Prio...

  • Answered by AI
  • Q6. Which is the most important gadget in your life without which life will be difficult for you
  • Ans. 

    My smartphone is the most important gadget in my life.

    • My smartphone helps me stay connected with family and friends

    • I use it for work-related communication and tasks

    • It serves as a source of entertainment during leisure time

    • I can access important information and services through it

    • It also serves as a camera for capturing memories

    • Examples: iPhone, Samsung Galaxy, Google Pixel

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Our resumes were shortlisted online and we were called for next round via emails.

Round: Test
Experience: This was a computerized test that was held on the company's official server that they had designed especially for recruitment purpose. We were asked to answer a set of questions within a limited time frame.
Duration: 1 hour 30 minutes
Total Questions: 89

College Name: Vidyavardhini's College of Engg & Tech
Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

INTERVIEWS

Temenos

No Interviews

INTERVIEWS

Flexsin Technologies

No Interviews

INTERVIEWS

Flexsin Technologies

No Interviews

INTERVIEWS

Flexsin Technologies

No Interviews

INTERVIEWS

Flexsin Technologies

5.6k top interview questions

INTERVIEWS

Temenos

No Interviews

INTERVIEWS

Flexsin Technologies

No Interviews

INTERVIEWS

Flexsin Technologies

No Interviews

INTERVIEWS

FANUC

No Interviews

DESIGNATION

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

2.9/5

Rating in categories

2.6

Skill development

2.9

Work-life balance

3.7

Salary

2.6

Job security

3.3

Company culture

3.3

Promotions

2.9

Work satisfaction

Explore 10 Reviews and Ratings
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