Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cerence Team. If you also belong to the team, you can get access from here

Cerence Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cerence Software Engineer Interview Questions and Answers

Updated 29 Jul 2024

Cerence Software Engineer Interview Experiences

2 interviews found

Software Engineer Interview Questions & Answers

user image Shubham Ganesh Vitore

posted on 29 Jul 2024

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

(4 Questions)

  • Q1. What is the design pattern? Singleton Design patter
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Used when only one instance of a class is needed throughout the system

    • Provides a global access point to the instance

    • Implemented by creating a static method to return the same instance each time it is called

  • Answered by AI
  • Q2. Difference Hashmap and Concurrent Hashmap
  • Ans. 

    HashMap is not thread-safe, while ConcurrentHashMap allows multiple threads to read and write concurrently.

    • HashMap is not synchronized and not thread-safe, while ConcurrentHashMap is synchronized and thread-safe.

    • ConcurrentHashMap allows multiple threads to read and write concurrently without any external synchronization, while HashMap requires external synchronization for concurrent access.

    • ConcurrentHashMap achieves hi...

  • Answered by AI
  • Q3. Collection Framework
  • Q4. Difference between list , set
  • Ans. 

    List is an ordered collection of elements with duplicates allowed, while set is an unordered collection of unique elements.

    • List maintains the order of elements, while set does not guarantee any specific order.

    • List allows duplicate elements, while set does not allow duplicates.

    • Example: List - [1, 2, 3, 1], Set - {1, 2, 3}

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2023.

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

(2 Questions)

  • Q1. Resume based question like what did you do in this project? What was your role and responsibilities? Question related to jenkins like explain jenkins pipeline foow of ur previous project ? How did you impr...
  • Q2. Do you like wfh or wfo? What are benefits of working from wfo ?
Round 3 - HR 

(1 Question)

  • Q1. Grneral HR questions were asked Why do you want to join is? What are your strengths?

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Software Engineer Jobs at Cerence

View all

Interview questions from similar companies

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It was on online objective test consisting of 4 sections: Aptitude, Technical MCQs, Code snippet based MCQs and Coding part.

  • Q1. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

    • Exa...

  • Answered by AI
  • Q2. 

    Palindrome Linked List Problem Statement

    Determine if a given singly linked list of integers is a palindrome. Return true if it is a palindrome, otherwise return false.

    Example:

    Input:
    1 -> 2 -> ...
  • Ans. 

    Check if a given singly linked list of integers is a palindrome.

    • Use two pointers to find the middle of the linked list.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to determine if it is a palindrome.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical and managerial round. The interviewer gave me a situation where I am in testing team and I found that customer requirement was drop down list at a place but developer has used bullet selection, and is not ready to change it. How will you manage? I gave some good replies and he was convinced.

  • Q1. What is a virtual function?
  • Ans. 

    A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function with the same signature in a derived class.

    • Virtual functions allow for dynamic polymorphism in object-oriented programming.

    • They are used to achieve runtime polymorphism by enabling late binding.

    • Virtual functions are declared in a base class and can be overridden in derived classes.

    • Example: v...

  • Answered by AI
  • Q2. Can you explain how to perform a level order traversal of a binary tree in spiral form?
  • Ans. 

    Level order traversal of a binary tree in spiral form involves alternating between left and right while traversing each level.

    • Start by pushing the root node into a queue.

    • While the queue is not empty, pop a node, print its value, and push its children into the queue.

    • For each level, alternate between popping nodes from the queue and printing their values from left to right or right to left.

    • Continue this process until all

  • Answered by AI
  • Q3. What are abstract classes in C++?
  • Ans. 

    Abstract classes in C++ are classes that cannot be instantiated and are designed to be base classes for other classes.

    • Abstract classes may contain pure virtual functions, making them incomplete and unable to be instantiated.

    • Derived classes must implement all pure virtual functions from the abstract class in order to be concrete classes.

    • Abstract classes can have non-virtual functions and member variables like regular cl...

  • Answered by AI
Round 3 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was also a technical round. He asked to optimize the code I wrote in coding round. Then he asked me a few puzzles and questions on OOPS, OS and DBMS.

  • Q1. Can you explain the ACID properties in the context of database management systems?
  • Ans. 

    ACID properties are a set of properties that guarantee the reliability of transactions in database management systems.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none of them are.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that the e...

  • Answered by AI
  • Q2. What is the difference between paging and segmentation in operating systems?
  • Ans. 

    Paging and segmentation are memory management techniques in operating systems.

    • Paging divides physical memory into fixed-size blocks called pages, while segmentation divides logical memory into variable-size segments.

    • Paging allows for efficient memory allocation and management, while segmentation provides protection and sharing of memory.

    • Paging is simpler to implement but can lead to internal fragmentation, while segmen...

  • Answered by AI
  • Q3. What is concurrency control?
  • Ans. 

    Concurrency control is a technique used in databases to manage simultaneous access and modification of data by multiple users or processes.

    • Concurrency control ensures that transactions are executed in a way that maintains data consistency and integrity.

    • Techniques like locking, timestamp ordering, and optimistic concurrency control are used to implement concurrency control.

    • For example, in a banking system, concurrency c...

  • Answered by AI
  • Q4. What is the difference between String Buffer and String Builder in Java?
  • Ans. 

    String Buffer is synchronized and thread-safe, while String Builder is not synchronized and faster.

    • String Buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String Builder is not synchronized, resulting in faster performance but not thread-safe.

    • String Builder is preferred for single-threaded operations, while String Buffer is preferred for multi-threaded operations.

  • Answered by AI
  • Q5. What are smart pointers in C++?
  • Ans. 

    Smart pointers in C++ are objects that act like pointers but provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically managing memory allocation and deallocation.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

    • unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to prevent circular references.

  • Answered by AI
  • Q6. What is the difference between a mutex and a semaphore?
  • Ans. 

    Mutex is used for exclusive access to a resource, while semaphore is used for controlling access to a resource by multiple threads.

    • Mutex is binary and allows only one thread to access the resource at a time.

    • Semaphore can have a count greater than one, allowing multiple threads to access the resource simultaneously.

    • Mutex is typically used for protecting critical sections of code, while semaphore is used for synchronizat...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAYodlee interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Write a program for snake traversal of binary tree
  • Ans. 

    Program for snake traversal of binary tree

    • Use a stack to keep track of nodes to be visited

    • Start with the root node and push it onto the stack

    • While the stack is not empty, pop a node and print its value

    • If the level is even, push the left child first and then the right child onto the stack

    • If the level is odd, push the right child first and then the left child onto the stack

  • Answered by AI
  • Q2. To write code to check linked list is palindrome or not, in a single traversal and without using any other data structure
  • Ans. 

    Code to check if linked list is palindrome without using any other data structure and in a single traversal.

    • Traverse the linked list using two pointers, one slow and one fast

    • Reverse the first half of the linked list while traversing

    • Compare the reversed first half with the second half of the linked list

  • Answered by AI
  • Q3. Asked about OOPS concepts like abstraction, encapsulation, inheritance and polymorphism in detail and how they are implemented while programming

Interview Preparation Tips

Round: Test
Experience: It was on online objective test consisting of 4 sections: Aptitude, Technical MCQs, Code snippet based MCQs and Coding part.
Coding part had questions like balanced parenthesis check, etc.


Round: Technical Interview
Experience: Technical and managerial. Gave me a situation where I am in testing team and I found that customer requirement was drop down list at a place but developer has used bullet selection, and is not ready to change it. How will you manage? I gave some good replies and he was convinced.
Then he asked 25 horses puzzle (-----.php/puzzles/25-horses-3-fastest-5-races-puzzle/). I solved it.
He then asked me to code it. I wrote an algorithm first and then the code. He was very impressed.
He asked about virtual functions, abstract classes, pure virtual functions.


Round: Technical Interview
Experience: He asked to optimize the code I wrote in coding round.
Then he asked me candle puzzle on how to measure 30 min and 45 min.
Then he asked me the chocolate puzzle (-----.html).
What is paging and segmentation?
What are ACID properties in DBMS?
What is transaction and how is concurrency control done?
What is the difference between string builder and string buffer?
What is string pool in java?
What is JVM, JRE, JDK?
Differentiate between mutex and semaphore?
Can you override private and static members?
Contiguous and non-contiguous memory allocation?
What are Smart pointers?


Skills:
College Name: NIT Jalandhar

Skills evaluated in this interview

I applied via Referral

Interview Preparation Tips

Round: Test
Experience: I appeared for Amdocs through Campus Recruitment Process. Section 1,2,3 was not tough, if you have practiced RD Sharma then don't worry about these sections as it was the easiest part of the written test. After that there were two coding questions in which you can choose any language(C/C++/Java) to write your code. The code were easy, I mean it wasn't like Codechef problems. If you have ever made the programming assignments by yourself then you would definitely be able to crack this section. Even if you didn't make it then you can practice coding questions like finding H.C.F, L.C.M, Removing redundant number from array, finding whether the string is palindrome or not, finding whether the number is Armstrong number or not,etc,. Now comes the technical section that was little bit tough for those who haven't studied about UNIX ever. It was consisting of C, DBMS and Unix. C questions can easily be attempt by completing "Test your C Skills by Yashwant Kanedtkar", In DBMS most of the questions were query based, some PL/SQL questions were also there, in Unix most of the questions were from VI editor commands and some linux commands like sed, uniq, fdisk and very few questions were from shell scripting like, what will be the output of echo*. Overall the test was easy, since it is easy for everyone so you need to do lots of practice because out of more than 200 students only 39 cleared the written test in our campus.
Duration: 2:30 minutes
Total Questions: 82

Skills: Implementation Of Code Using OOPS, Coding Skills, Database Management, Ability To Think, Ability To Cope Up With Stress, Ability To Deal Diplomatically, 1)communication
College Name: NIT Sikkim

I applied via Referral and was interviewed before Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About project

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round Apti +Tech is little easy mostly linux commands
2nd round Interview in Company
Just pray you are not last person to be interviewed from your group(if last you are already rejected)

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Personal projects/client projects
  • Q2. Hashmap/hashtable/hashset
  • Q3. Java and Microservices
  • Q4. Rest and soap
  • Q5. Program on array
  • Ans. 

    Program on array

    • Arrays are used to store multiple values in a single variable

    • Arrays can be of any data type

    • Arrays can be accessed using index numbers

    • Arrays can be sorted and searched

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. PLSQL= 1.What is cursor &types 2. Diff btw primay key &unique key. 3.triggers & its type. 4. View &its types. 4.bulk collection. 5.what is dynamic query & how to implement.
  • Ans. 

    Answers to questions related to PL/SQL concepts like cursor, primary key, unique key, triggers, views, bulk collection, and dynamic queries.

    • A cursor is a pointer to a private SQL area that stores information about the processing of a SELECT or DML statement

    • Primary key uniquely identifies each record in a table, while a unique key ensures that all values in a column are distinct

    • Triggers are stored programs that are fire...

  • Answered by AI
  • Q2. Manager round= 1. What is ur goal, 2.any pressure situation u face. 3. What u will do if u have problem with work culture. 4.what u will do if u have any problem with ur team mates. 5.any situation u ha...

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Computer networking, oops, programming
Round 1 - Technical 

(1 Question)

  • Q1. Design Patterns , Solid principal, MVP, MVC

Interview Preparation Tips

Interview preparation tips for other job seekers - Study top interview questions and answers

Cerence Interview FAQs

How many rounds are there in Cerence Software Engineer interview?
Cerence interview process usually has 2 rounds. The most common rounds in the Cerence interview process are Technical, HR and Resume Shortlist.
How to prepare for Cerence 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 Cerence. The most common topics and skills that interviewers at Cerence expect are Automotive, Python, Computer science, Agile and Java.
What are the top questions asked in Cerence Software Engineer interview?

Some of the top questions asked at the Cerence Software Engineer interview -

  1. What is the design pattern? Singleton Design pat...read more
  2. Difference Hashmap and Concurrent Hash...read more
  3. Difference between list , ...read more

Tell us how to improve this page.

Cerence Software Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Cerence Software Engineer Salary
based on 119 salaries
₹5.7 L/yr - ₹18 L/yr
60% more than the average Software Engineer Salary in India
View more details

Cerence Software Engineer Reviews and Ratings

based on 17 reviews

2.8/5

Rating in categories

2.4

Skill development

3.8

Work-life balance

2.8

Salary

2.4

Job security

3.3

Company culture

2.8

Promotions

2.6

Work satisfaction

Explore 17 Reviews and Ratings
Software Engineer

Pune

8-13 Yrs

Not Disclosed

Explore more jobs
Software Engineer
119 salaries
unlock blur

₹5.7 L/yr - ₹18 L/yr

Senior Software Engineer
101 salaries
unlock blur

₹12 L/yr - ₹30 L/yr

Software Quality Assurance Engineer
62 salaries
unlock blur

₹7 L/yr - ₹14.3 L/yr

Associate Software Engineer
27 salaries
unlock blur

₹4.4 L/yr - ₹10 L/yr

Software Developer
23 salaries
unlock blur

₹7.7 L/yr - ₹20 L/yr

Explore more salaries
Compare Cerence with

Amdocs

3.7
Compare

Prime Focus Technologies

3.4
Compare

OnProcess Technology

3.8
Compare

MapmyIndia

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