Upload Button Icon Add office photos
Engaged Employer

i

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

Credera Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Credera Interview Questions, Process, and Tips

Updated 24 Feb 2025

Top Credera Interview Questions and Answers

View all 13 questions

Credera Interview Experiences

Popular Designations

40 interviews found

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

(1 Question)

  • Q1. Tell me about your self,python coding questions,etc

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

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 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 - Technical 

(5 Questions)

  • Q1. Explain about MVC Routing?
  • Ans. 

    MVC Routing is a mechanism to map incoming requests to specific controller actions.

    • Routing is used to define URL patterns and map them to specific actions in the controller.

    • It helps to create clean and SEO-friendly URLs.

    • Routing can also be used to pass parameters to the controller action.

    • MVC Routing is a part of the ASP.NET framework.

    • Example: RouteConfig.cs file in ASP.NET MVC application defines the routing rules.

  • Answered by AI
  • Q2. What are Solid Principle?
  • Ans. 

    SOLID principles are a set of five design principles for writing maintainable and scalable software.

    • S - Single Responsibility Principle

    • O - Open/Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

  • Answered by AI
  • Q3. Explain each concept with real life example?
  • Ans. 

    Explanation of concepts with real-life examples

    • Abstraction: Using a TV remote without knowing the internal circuitry

    • Encapsulation: A car driver only needs to know how to drive, not how the engine works

    • Inheritance: A child inheriting traits from their parents

    • Polymorphism: A shape can take on different forms, such as a square or a triangle

  • Answered by AI
  • Q4. Polymorphism real life example
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. A real-life example is a vehicle.

    • Polymorphism allows a vehicle object to take on different forms such as car, truck, or motorcycle

    • Each form has its own unique properties and methods, but they all share common characteristics such as having wheels and an engine

    • Polymorphism allows for more efficient and flexible code as it allows for the use of a single clas

  • Answered by AI
  • Q5. Difference between Sync and Async?
  • Ans. 

    Sync is blocking, while Async is non-blocking.

    • Sync operations block the execution of the program until the operation is completed.

    • Async operations allow the program to continue executing while the operation is being completed in the background.

    • Sync operations are simpler to implement and reason about, but can lead to performance issues.

    • Async operations require more complex code, but can improve performance and responsi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Credera Senior Software interview:
  • Dot Net
Interview preparation tips for other job seekers - be prepared with the real life example and Question will not be staright forward it will be on your experience basis so do not show that you have learned the answers.

Skills evaluated in this interview

Senior Software Interview Questions asked at other Companies

Q1. Design bookmyshow like application. how will you handle the scenario if two people try to book the same seat at the same time?
View answer (1)

I applied via Naukri.com and was interviewed in Jun 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Total 35 questions, with 5 sections and time duration 35 minutes.

Round 2 - Technical 

(1 Question)

  • Q1. What all the methods we have in API?
  • Ans. 

    The question is too broad to provide a specific answer.

    • APIs can have various methods such as GET, POST, PUT, DELETE, etc.

    • The methods in an API depend on the specific API being referred to.

    • Examples of API methods include 'getUser', 'createOrder', 'updateProfile', etc.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What problems you have faced during testing?
  • Ans. 

    I have faced issues with compatibility, performance, and user acceptance testing.

    • Compatibility issues with different browsers and operating systems

    • Performance issues with large datasets and high traffic

    • User acceptance testing revealed unexpected user behavior

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on your skills and worked experience.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic and mid level aptitude questions

Round 2 - Coding Test 

2 coding question which are difficult not found in internet

Round 3 - One-on-one 

(1 Question)

  • Q1. Java interview questions
Round 4 - HR 

(1 Question)

  • Q1. Normal hr questions

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

Credera interview questions for popular designations

 Software Engineer Trainee

 (6)

 Software Engineer

 (5)

 Associate Software Engineer

 (4)

 Data Analyst

 (3)

 Senior Software Engineer

 (2)

 Analyst

 (1)

 Associate Engineer

 (1)

 Financial Analyst

 (1)

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

I applied via Job Fair and was interviewed before Mar 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. What is join in SQL
  • Ans. 

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

    • Join is used to retrieve data from multiple tables in a single query

    • Types of joins include inner join, left join, right join, and full outer join

    • Join conditions are specified using the ON keyword and a related column between the tables

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. A project you coded yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare a good project for your tech interview because that encompasses most of the technical round.

Skills evaluated in this interview

Technology Intern Interview Questions asked at other Companies

Q1. what is ros1 and difference between ros1 and ros2?
View answer (1)

Get interview-ready with Top Credera Interview Questions

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

I applied via campus placement at Gokaraju Rangaraju Institute of Engineering and Technology, Hyderabad and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java OOPS concepts, Algorithms, Exception Handling

Interview Preparation Tips

Topics to prepare for Credera Senior Software Developer interview:
  • Java
Interview preparation tips for other job seekers - Good company

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked ListYou are given two Singly Linked List of integers, which are merging at some node of a third linked list. Your task is to find the data of the node at which merging starts. If there is no merging, return -1. For ex... read more
View answer (4)

Jobs at Credera

View all

Associate Analyst - Content Interview Questions & Answers

user image Anonymous

posted on 9 Oct 2021

I applied via Naukri.com and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Suppose you are allocated into two projects in one day, and ETA for both is same, how would you complete them at the given deadline?
  • Q2. Rate your language proficiency at the scale of 1 to 5? and give the reason why?
  • Q3. If you could not able to deliver the project at the given time, how would you handle your client?
  • Q4. Why do you want to switch your job?

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a great interview experience at TA Digital, all the interviewers were very nice & supportive. My advice to all the jobseekers out there is "Be confident & honest while answering the questions, when it comes to answering behavioral questions you should try to relate your answers with real life experience it will leave a very positive impact on interviewers and lastly treat the interview as a conversation between two people not as a exam and you will certainly ace it".
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is system testing
  • Ans. 

    System testing is the process of testing the complete and integrated software system to evaluate its compliance with specified requirements.

    • System testing is performed on the entire software system as a whole.

    • It is conducted after integration testing and before acceptance testing.

    • The main goal of system testing is to ensure that the software meets the specified requirements and functions correctly in the intended envir...

  • Answered by AI

Skills evaluated in this interview

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

Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Feb 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

Coding Questions on one of the preffered programming language. Most importantly Data Structures and algorithms.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Well

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2022. There were 4 interview rounds.

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

(2 Questions)

  • Q1. General BA questions like requirement elicitation techniques, BRD, User story, INVEST
  • Q2. About Adobe content management experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Similar to round1 questions
Round 4 - HR 

(1 Question)

  • Q1. General HR questions like why change, tell me about yourself

Senior Business Analyst Interview Questions asked at other Companies

Q1. Difference between annuity and pension, types of annuity and pension, actions done on a policy, policy flow, RI insurance and it’s types and difference between them. Coinsurance, what are the charges when u cancel policy in 1st year vs 3rd ... read more
View answer (1)

Credera Interview FAQs

How many rounds are there in Credera interview?
Credera interview process usually has 2-3 rounds. The most common rounds in the Credera interview process are Technical, HR and Coding Test.
How to prepare for Credera 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 Credera. The most common topics and skills that interviewers at Credera expect are Javascript, JQuery, HTML, Ajax and Java.
What are the top questions asked in Credera interview?

Some of the top questions asked at the Credera interview -

  1. Suppose you are allocated into two projects in one day, and ETA for both is sam...read more
  2. Explain each concept with real life examp...read more
  3. What all the methods we have in A...read more
How long is the Credera interview process?

The duration of Credera interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Credera Interview Process

based on 34 interviews

Interview experience

4.3
  
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
Apisero Interview Questions
4.3
 • 72 Interviews
View all

Credera Reviews and Ratings

based on 211 reviews

3.8/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.6

Salary

3.5

Job security

3.7

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 211 Reviews and Ratings
Open Position - Tosca Automation

Hyderabad / Secunderabad,

Gurgaon / Gurugram

+1

6-11 Yrs

Not Disclosed

Senior AWS DevOps Engineer

Hyderabad / Secunderabad,

Gurgaon / Gurugram

+1

6-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
193 salaries
unlock blur

₹3 L/yr - ₹11.9 L/yr

Senior Software Engineer
186 salaries
unlock blur

₹8.1 L/yr - ₹26.5 L/yr

Principal Software Engineer
117 salaries
unlock blur

₹8.7 L/yr - ₹28 L/yr

Associate Software Engineer
83 salaries
unlock blur

₹3.3 L/yr - ₹6.2 L/yr

Technical Lead
62 salaries
unlock blur

₹13.1 L/yr - ₹43 L/yr

Explore more salaries
Compare Credera with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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