Upload Button Icon Add office photos

Chronus

Compare button icon Compare button icon Compare

Filter interviews by

Chronus Interview Questions and Answers

Updated 24 Feb 2025
Popular Designations

Chronus Interview Experiences

2 interviews found

Interview Questionnaire 

2 Questions

  • Q1.  Questions on hashing,  quick sort etc.write a code to efficiently search for an element in an array  where the rows and columns are sorted
  • Q2. Write a code to detect loop in linked list and remove  it 

Interview Preparation Tips

Round: Test
Experience:  Questions on very simple Aptitude, simple technical aptitude and three coding questions. 

Skills:
College Name: Anna University Chennai

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. What are the non functional requirements that you will think about while designing a feature
  • Ans. 

    Non-functional requirements ensure a product's quality, usability, and performance beyond its core functionalities.

    • Performance: Ensure the feature loads within 2 seconds for optimal user experience.

    • Scalability: Design to handle 10,000 concurrent users without degradation.

    • Security: Implement encryption for sensitive data to protect user privacy.

    • Usability: Ensure the feature is intuitive, requiring no more than 3 clicks ...

  • Answered by AI
Round 2 - Design 

(1 Question)

  • Q1. Designer gave an example product of a recruitment site and asked for the improvements that could be made

Interview Preparation Tips

Interview preparation tips for other job seekers - How do you ensure that customers retain with the product?

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Chronus?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed in Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic Logical questions from String, Arrays, Collections, Java Oops and Selenium.
  • Q2. See few puzzles from google.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with basics...

Interview Questionnaire 

1 Question

  • Q1. Stge concepts, vSAN, RAID, basic testing, OS concepts, NVMe, SATA, SAS

I applied via Company Website and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What's your role and responsibilities
  • Ans. 

    As a Business Analyst, I bridge the gap between stakeholders and IT, ensuring project requirements align with business goals.

    • Gather and analyze business requirements through stakeholder interviews and workshops.

    • Create detailed documentation, including business requirement documents (BRDs) and functional specifications.

    • Facilitate communication between technical teams and business stakeholders to ensure clarity and align...

  • Answered by AI
  • Q2. Current processes your organization follows
  • Ans. 

    Our organization follows a combination of manual and automated processes to streamline operations.

    • We use project management tools like Jira to track tasks and progress

    • Regular team meetings are held to discuss project updates and address any issues

    • Automated testing is used to ensure software quality and reduce manual errors

  • Answered by AI
  • Q3. How do you contribute to your organization (citizenship activities)
  • Q4. What's IRD, IDD and BRD
  • Ans. 

    IRD stands for Interface Requirements Document, IDD stands for Interface Design Document, and BRD stands for Business Requirements Document.

    • IRD is a document that outlines the requirements for the interface between different systems or components.

    • IDD is a document that describes the design of the interface, including the data formats, protocols, and communication methods.

    • BRD is a document that captures the business req...

  • Answered by AI
  • Q5. Microsoft Visio usage
  • Q6. What are Use case diagrams
  • Ans. 

    Use case diagrams are visual representations of the interactions between users and a system.

    • They depict the system's functionality from the user's perspective.

    • They show the different actors and their roles in the system.

    • They illustrate the various use cases and their relationships.

    • They help in identifying the requirements of the system.

    • They aid in communication between stakeholders.

    • Example: A use case diagram for an on...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and honest in what you jave achieved till now.

I applied via Naukri.com and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. IOS Basics , iPhone programming

Interview Preparation Tips

Interview preparation tips for other job seekers - When you tried a lot to get good company if you have no option then go for it ,Make this to last of your joining preferences.You will be deadlocked in the bond think twice before Join.

I appeared for an interview before May 2021.

Round 1 - Coding Test 

Round duration - 120 Minutes
Round difficulty - Medium

Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Insertion Sort in a Linked List

    Given a singly linked list with 'N' nodes containing integer values, your task is to sort the list using insertion sort and output the sorted list.

    Insertion Sort is an al...

  • Ans. 

    Implement insertion sort algorithm on a singly linked list with integer values.

    • Traverse the linked list and for each node, find its correct position in the sorted list.

    • Remove the node from the original list and insert it at the correct position in the sorted list.

    • Repeat this process until all nodes are sorted.

    • Ensure the implementation is in-place, without using extra space.

    • Handle edge cases like empty list or single no...

  • Answered by AI
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

    • Create a class named Stack with getSize, isEmpty, push, pop, and getTop methods.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure each operation runs in O(1) time complexity.

    • Handle cases where the stack is empty appropriately.

    • Implement the logic for each query type as specified in the input and output sections.

  • Answered by AI
  • Q3. 

    Prime Numbers within a Range

    Given an integer N, determine and print all the prime numbers between 2 and N, inclusive.

    Input:

    Integer N

    Output:

    Prime numbers printed on separate lines

    Example:

    Input...
  • Ans. 

    Generate and print all prime numbers between 2 and N, inclusive.

    • Iterate from 2 to N and check if each number is prime

    • Use a helper function to determine if a number is prime

    • Print each prime number on a new line

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round was based on oops concepts and their applications and about STLs.

  • Q1. 

    Rectangular Numbers Pattern

    Given a number N, generate a pattern where the outer rectangle is filled with the number N, and the inner rectangles contain decreasing numbers down to 1.

    Input:

    The input be...
  • Ans. 

    Generate a rectangular pattern with outer rectangle filled with N and inner rectangles containing decreasing numbers.

    • Create a 2-D array with dimensions based on input N

    • Fill the outer rectangle with N and inner rectangles with decreasing numbers down to 1

    • Adjust the values in the inner rectangles based on the layer number

    • Return the generated pattern as a 2-D list/array

  • Answered by AI
Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This around was basically to judge my communication and behavioral skills.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BangaloreEligibility criteria7 CGPAQualcomm interview preparation:Topics to prepare for the interview - Standard template libraries, Data Structures, Algorithm, Pointers, Dynamic ProgrammingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Basics should be very clear related to DSA.
Tip 2 : Good knowledge of OS will be plus for Qualcomm
Tip 3 : One should revise the college project thoroughly before interview.

Application resume tips for other job seekers

Tip 1 : Be brief while writing resume.
Tip 2 : Mention atleast 2 projects.

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Basic questions related to skillset

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and share your technical knowledge

Analyst Interview Questions & Answers

FIS user image Anonymous

posted on 17 Jul 2021

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Be confident

Chronus Interview FAQs

How many rounds are there in Chronus interview?
Chronus interview process usually has 2 rounds. The most common rounds in the Chronus interview process are Technical.
What are the top questions asked in Chronus interview?

Some of the top questions asked at the Chronus interview -

  1. What are the non functional requirements that you will think about while design...read more
  2. write a code to detect loop in linked list and remove  i...read more
  3.  Questions on hashing,  quick sort etc.write a code to efficiently s...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 2k Interviews
Nagarro Interview Questions
3.9
 • 807 Interviews
FIS Interview Questions
3.9
 • 504 Interviews
Dell Interview Questions
3.9
 • 407 Interviews
Quest Global Interview Questions
3.5
 • 331 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Qualcomm Interview Questions
3.8
 • 273 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
FactSet Interview Questions
3.8
 • 218 Interviews
View all

Chronus Reviews and Ratings

based on 5 reviews

3.3/5

Rating in categories

2.6

Skill development

2.9

Work-life balance

3.0

Salary

2.7

Job security

3.0

Company culture

2.7

Promotions

2.6

Work satisfaction

Explore 5 Reviews and Ratings
Software Development Engineer II
4 salaries
unlock blur

₹24 L/yr - ₹34.5 L/yr

Customer Success Manager
4 salaries
unlock blur

₹13 L/yr - ₹23 L/yr

Software Developer
3 salaries
unlock blur

₹10 L/yr - ₹28.2 L/yr

Cyber Security Engineer
3 salaries
unlock blur

₹6.5 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Chronus with

Teleperformance

3.9
Compare

Optum Global Solutions

4.0
Compare

FIS

3.9
Compare

Nagarro

3.9
Compare
write
Share an Interview