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

Intern Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2022

I applied via campus placement at Sri Krishna College of Engineering and Technology, Coimbatore and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Coding Test 

1 mysql question and 3 other question in which two were below medium questions and one where above medium question. In which one are given password and input password same or not and another one was one scenario type of question which is solved using by using switch case or class (input atm pin was same as given pin then the next step is deposit/withdrawal/balance enquiry/others and after that we have to ask one more time to user if they want we have enter same process) and third question i don't remember but it is easy and last one mysql question i didn't solve this question and my friend told me it is below medium question only.

Round 2 - Technical 

(1 Question)

  • Q1. They asked which language i know i told java and mysql basics, and they asked fully OOPs concepts 4 types and inheritance types and about interfaces and overriding and overloading and different between fin...
Round 3 - HR 

(1 Question)

  • Q1. Easy only, self intro about myself and my family and things i like and about my short & long term goal and we discussed about the things i liked.that's it

Interview Preparation Tips

Interview preparation tips for other job seekers - This one for on campus drive -Study on oops concepts & threading concepts & learn about classes & overriding, overloading and for coding easy questions only in leetcode or important questions in every data structure concepts & strings and hacker rank my sql course.

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is synchronisation
  • 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.

  • Answered by AI
  • Q2. What is use of restful api
  • 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 architectu

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to design 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 application

  • Answered by AI
  • Q2. Advantages of REST over SOAP
  • Ans. 

    REST is lightweight, scalable, and easier to use compared to SOAP.

    • REST uses standard HTTP methods like GET, POST, PUT, DELETE for communication, making it simpler to implement and understand.

    • REST is stateless, meaning each request from a client to the server must contain all the information necessary to understand the request, making it more scalable.

    • REST allows for multiple data formats like JSON, XML, plain text, whi...

  • Answered by AI

Skills evaluated in this interview

Top Temenos Software Developer Interview Questions and Answers

Q1. what is the difference between http and https
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed in Jun 2022. There were 3 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 

Basic coding level and sql questions in paper pen format

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your recent projects
  • Q2. Technologies learned and implemented
  • Ans. 

    I have experience with various technologies including Java, Python, and SQL.

    • Proficient in Java programming language and have implemented it in various projects

    • Experience with Python and its libraries such as NumPy and Pandas for data analysis

    • Familiarity with SQL and database management systems such as MySQL and Oracle

    • Knowledge of web development technologies such as HTML, CSS, and JavaScript

    • Experience with version cont

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Temenos Software Developer interview:
  • SQL
  • arrays
  • Python
Interview preparation tips for other job seekers - Be good in basics and interviewer is friendly.
1.prime

Top Temenos Software Developer Interview Questions and Answers

Q1. what is the difference between http and https
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic java question were asked on inheritance etc

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)

 Senior Test Engineer

 (3)

 Test Engineer

 (3)

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

For On campus
2 sql questions
2 coding question
1 question (to write a paragraph)

Round 2 - Technical 

(4 Questions)

  • Q1. Technical interview Asked question based on the things mentioned in resume
  • Q2. Difference between lists and tuple in python
  • Ans. 

    Lists are mutable, ordered collections of items while tuples are immutable, ordered collections of items in Python.

    • Lists are defined using square brackets [] while tuples are defined using parentheses ().

    • Lists can be modified (add, remove, change elements) while tuples cannot be modified once created.

    • Lists are typically used for collections of similar items while tuples are used for fixed collections of items.

    • Example: ...

  • Answered by AI
  • Q3. Some basic questions on sql queries
  • Q4. Asked to write a simple program in java/python

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearing interview will be easy if you have knowledge about things mentioned in resume. Dont add things you dont know clearly in resume.

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)

Get interview-ready with Top Temenos Interview Questions

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

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

The interview involved coding questions based on java (easy).

Round 2 - One-on-one 

(2 Questions)

  • Q1. How would you create a movie theatre booking system.
  • Ans. 

    A movie theatre booking system can be created by designing a user-friendly interface for customers to browse movies, select showtimes, choose seats, and make payments.

    • Design a database to store movie information, showtimes, seating availability, and customer bookings.

    • Develop a front-end interface for customers to browse movies, select showtimes, and choose seats.

    • Implement a back-end system to handle seat reservations, ...

  • Answered by AI
  • Q2. What new innovative implementation will you do to the existing system.
  • Ans. 

    I would implement a machine learning algorithm to optimize the system's performance and efficiency.

    • Implementing a recommendation system to suggest personalized content to users based on their preferences and behavior.

    • Integrating natural language processing to improve the system's ability to understand and respond to user queries.

    • Utilizing predictive analytics to forecast future trends and make data-driven decisions for...

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself.
  • Q2. Where do you see yourself in 5 years.
  • Q3. Questions on knowledge check on latest IT technologies like cloud and blockchain

Skills evaluated in this interview

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 (169)

Jobs at Temenos

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Basic DSA with DBMS and cloud Architecture and Microservices is extra bonus

Round 3 - Case Study 

Advanced DSA with Case Study and Behavioral rounds as well

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for DSA and DBMS, Microservices and cloud is additional bonus

Senior Product Engineer Interview Questions asked at other Companies

Q1. Imagine an attack and guide through all steps involved to determine a Risk value. What is Feasibility ? What is impact and how risk is related to these factors ?
View answer (1)
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Testing domain stock market primary
Round 3 - Technical 

(1 Question)

  • Q1. Stock market capital market
Round 4 - HR 

(1 Question)

  • Q1. Salary location timings

Interview Preparation Tips

Interview preparation tips for other job seekers - very talended
and
suppotive helpul and he is very

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> 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)

I applied via Campus Placement and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

4 coding questions, 1 SQL coding question

Round 3 - Technical 

(2 Questions)

  • Q1. Basic concepts of OOPs. Core Java questions. Method overloading, overriding. Hashmap implementation in Java.
  • Q2. Primary key, Foreign key difference.
  • Ans. 

    Primary key uniquely identifies a record, foreign key refers to a field in another table.

    • Primary key is used to ensure uniqueness of a record in a table

    • Foreign key is used to establish a relationship between two tables

    • Primary key cannot be null, foreign key can be null

    • Primary key is used as a reference in foreign key

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Interest in banking industry
  • Ans. 

    I have a strong interest in the banking industry.

    • I have studied finance and economics in college.

    • I have completed internships at banks and financial institutions.

    • I enjoy following the stock market and analyzing financial data.

    • I am excited about the potential for technology to revolutionize banking.

    • I believe that the banking industry plays a crucial role in the global economy.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic Java concepts. Multi threading, OOPS, GC
SQL concepts
Easy to medium DSA

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 (169)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

General programming questions and SQL

Round 2 - Technical 

(1 Question)

  • Q1. Questions on java and SQL
Round 3 - HR 

(1 Question)

  • Q1. Personal details

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have fine understanding on fundamental concepts of computer science like database, data structures, OOPs.

Product Engineer Interview Questions asked at other Companies

Q1. Left View Of Binary TreeGiven a binary tree. Print the Left View of the Tree. Example : If the input tree is as depicted in the picture: The Left View of the tree will be: 2 35 2 Input format : Elements in the level order form. The input... read more
View answer (3)

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.

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.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
View all

Temenos Reviews and Ratings

based on 808 reviews

3.3/5

Rating in categories

3.0

Skill development

3.3

Work-life balance

3.1

Salary

3.2

Job security

3.0

Company culture

2.8

Promotions

3.0

Work satisfaction

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