Upload Button Icon Add office photos

Filter interviews by

Chronus Application Developer Interview Questions and Answers

Updated 24 Nov 2015

Chronus Application Developer Interview Experiences

1 interview 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 
  • Ans. 

    Code to detect and remove loop in a linked list.

    • Use Floyd's cycle detection algorithm to detect the loop

    • Once the loop is detected, use two pointers to find the start of the loop

    • Remove the loop by setting the next pointer of the last node in the loop to null

  • Answered by AI

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 questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About yourself and Recent project
  • Q2. Why you are shifting
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. MVC related questions
Round 2 - HR 

(2 Questions)

  • Q1. Managerial questions
  • Q2. About expectations
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is sql and plsql?
  • Ans. 

    SQL is a language used for managing and querying databases, while PL/SQL is an extension of SQL used for procedural programming.

    • SQL stands for Structured Query Language and is used for managing and querying relational databases.

    • PL/SQL stands for Procedural Language/SQL and is an extension of SQL that adds procedural programming capabilities.

    • SQL is used to retrieve and manipulate data in databases using queries like SEL...

  • Answered by AI
  • Q2. Sql plsql data strucntire and differences
  • Ans. 

    SQL is a language used to manage and query databases, PL/SQL is an extension that adds procedural programming capabilities.

    • SQL is used for querying and manipulating data in databases.

    • PL/SQL is a procedural language extension for SQL, allowing for more complex logic and programming capabilities.

    • Data structures in SQL refer to the way data is organized and stored in tables.

    • PL/SQL allows for the creation of custom data st...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Difference beyween fporms and reports
  • Ans. 

    Forms are used to input data while reports are used to display data.

    • Forms are used to collect and input data into a system.

    • Reports are used to display and present data in a structured format.

    • Forms are interactive and allow users to input data, while reports are static and provide information based on the data entered.

    • Examples: A registration form on a website vs. a sales report generated from a database.

  • Answered by AI
  • Q2. Oracle forms, rice components. workflows and all

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Coding Test two questions asked in an interview

Interview Preparation Tips

Topics to prepare for Fujitsu Application Developer interview:
  • DSA
  • Java
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate Application Developer with 5 years of experience in developing web and mobile applications.

    • Experienced in programming languages such as Java, JavaScript, and Swift

    • Proficient in using frameworks like React, Angular, and Node.js

    • Skilled in database management with SQL and NoSQL databases

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly Fujitsu would not rehire. I have went through all rounds and paperwork. At last they came back saying HRBP did not approve rehire.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

The first stage of the aptitude test was a written examination. it consisted of multiple-choice questions and problem-solving exercises, the question covered a wide range of topics such as logical reasoning, numerical ability, and verbal comprehension. the time limit was challenging, but I completed most of the questions.

Round 3 - Coding Test 

In summary, the coding round was a challenging yet rewarding experience. it tested my programming abilities, problem-solving skills,
and ability to deliver efficient and error-free code within a time constraint. with adequate round preparation, focus, and practice, I navigated the coding round confidently and showcased my technical capabilities.

Round 4 - Technical 

(5 Questions)

  • Q1. Create a regular expression accepting 10-digit numeric characters starting with 1, 2, or 3.
  • Ans. 

    Regular expression for 10-digit numeric characters starting with 1, 2, or 3.

    • Use the pattern ^[1-3]\d{9}$ to match the criteria

    • The ^ symbol denotes the start of the string

    • The [1-3] specifies that the first digit must be 1, 2, or 3

    • \d{9} matches exactly 9 numeric digits

    • $ indicates the end of the string

  • Answered by AI
  • Q2. What do you mean by OOPS?
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data in the form of fields (attributes) and code in the form of procedures (methods).

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Encapsulation refers to the bundling of data and methods that operate on the data into a single unit (obje...

  • Answered by AI
  • Q3. What are the basic SQL skills?
  • Ans. 

    Basic SQL skills include querying databases, manipulating data, and understanding database structures.

    • Writing basic SQL queries to retrieve data from databases

    • Understanding and using SQL functions and operators

    • Creating and modifying database tables and relationships

    • Using SQL to filter, sort, and group data

    • Understanding basic SQL syntax and commands

  • Answered by AI
  • Q4. What is a join in SQL? What are the types of joins?
  • Ans. 

    A join in SQL is used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left tabl...

  • Answered by AI
  • Q5. Convert Hours into Seconds.
  • Ans. 

    To convert hours into seconds, multiply the number of hours by 3600.

    • Multiply the number of hours by 3600 to get the equivalent seconds.

    • For example, 2 hours = 2 * 3600 = 7200 seconds.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Interviewer asked me about my technical part and checked my japanese proficiency
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic introduction
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2023. There were 5 interview rounds.

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 - One-on-one 

(1 Question)

  • Q1. Related to current my project roles and responsibilities and basic OOPS, .net framework, Abstract and interface, MVC, jQuery, SQL Server
Round 3 - One-on-one 

(1 Question)

  • Q1. Advance concepts in .net, MVC, Scenario based questions, c#, jquery and SQL Server
Round 4 - Documentation 

(1 Question)

  • Q1. Submit all the docs in portal
Round 5 - HR 

(1 Question)

  • Q1. Tell me about my self, Expectation, When you can join.

Chronus Interview FAQs

What are the top questions asked in Chronus Application Developer interview?

Some of the top questions asked at the Chronus Application Developer interview -

  1. write a code to detect loop in linked list and remove  i...read more
  2.  Questions on hashing,  quick sort etc.write a code to efficiently s...read more

Tell us how to improve this page.

Fast track your campus placements

View all
Software Development Engineer
4 salaries
unlock blur

₹17 L/yr - ₹24 L/yr

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 Engineer
3 salaries
unlock blur

₹18 L/yr - ₹21 L/yr

Cyber Security Engineer
3 salaries
unlock blur

₹6.5 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Chronus with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview