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 Associate Software Engineer Interview Questions and Answers

Updated 11 May 2024

Credera Associate Software Engineer Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

4 coding questions. medium to hard level.
I solved 2.5 questions to get into the next round.

Round 2 - Technical 

(1 Question)

  • Q1. A very basic technical interview. Questions regarding c++, projects, oops. We were told to be well prepared with our projects.
Round 3 - HR 

(1 Question)

  • Q1. Basic HR. Nothing very hefty.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics. Confidence is what they're looking for.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

4 questions related arrays,strings.

Round 2 - Aptitude Test 

60 questions have to be solved from 60 minutes.

Round 3 - Technical 

(1 Question)

  • Q1. Asked about React.js which I mentioned in my resume and given a pattern related question.
Round 4 - HR 

(1 Question)

  • Q1. Basic questions were asked

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
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

I applied via Apna Jobs and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Easy to score in coding test. 3 questions of easy medium and hard level

Round 2 - Aptitude Test 

English and aptitude test

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview on college project and basic ds and algo questions. Asked binary search and some questions on C++
  • Ans. I explained in detail about my college project. Starting questions were in that.
  • Answered Anonymously
Round 4 - HR 

(1 Question)

  • Q1. Nothing much just a very informal conversation about college.
  • Ans. A very casual conversation and nothing technical.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Credera Associate Software Engineer interview:
  • Ds and algo
  • C++
  • Java
Interview preparation tips for other job seekers - Just be confident and prepare your college project thoroughly.

Credera interview questions for designations

 Software Engineer

 (5)

 Software Engineer Trainee

 (6)

 Senior Software Engineer

 (2)

 Associate Engineer

 (1)

 Senior Software

 (1)

 Senior Software Developer

 (1)

 Principal Engineer

 (1)

 Softwaretest Engineer

 (1)

Interview questions from similar companies

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

I applied via Walk-in and was interviewed before Mar 2023. There were 5 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Basic knowing about our communication skills
Round 2 - Technical 

(1 Question)

  • Q1. Technical related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Primary skill technical related questions
Round 4 - Behavioral 

(1 Question)

  • Q1. Challenging questions and games for understanding our time management and responsibilities
Round 5 - Client Interview 

(1 Question)

  • Q1. Basics question for your technical skill

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to join sofftek very friendly culture

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1. What is topic present in C.
  • Ans. 

    C language has various topics including data types, control structures, functions, arrays, pointers, structures, and file handling.

    • Data types - int, float, char, double, etc.

    • Control structures - if-else, switch-case, loops, etc.

    • Functions - user-defined functions, library functions, etc.

    • Arrays - one-dimensional, multi-dimensional, etc.

    • Pointers - pointer variables, pointer arithmetic, etc.

    • Structures - user-defined data t...

  • Answered by AI
  • Q2. 2.What is type qualifier volatile and const
  • Ans. 

    The type qualifier volatile is used to indicate that a variable's value may change unexpectedly.

    • The volatile qualifier is used when a variable can be modified by external factors that are beyond the control of the program.

    • It is commonly used when accessing hardware registers or shared memory in multi-threaded environments.

    • The const qualifier is used to indicate that a variable's value cannot be modified once it is assi...

  • Answered by AI
  • Q3. 3.What is storage classes.
  • Ans. 

    Storage classes are keywords in C programming that define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a function and have a default value of garbage.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and...

  • Answered by AI
  • Q4. 4.write code to reverse word in string
  • Ans. 

    Code to reverse words in a string

    • Split the string into an array of words

    • Loop through the array and reverse each word

    • Join the reversed words back into a string

  • Answered by AI
  • Q5. 5. How computer is starting
  • Ans. 

    The computer starts by executing the BIOS, which initializes hardware and loads the operating system.

    • When the power button is pressed, the computer sends a signal to the power supply to turn on.

    • The BIOS (Basic Input/Output System) is then executed, which performs a Power-On Self Test (POST) to check hardware components.

    • The BIOS then loads the boot loader from the hard drive or other bootable device.

    • The boot loader then...

  • Answered by AI
  • Q6. What is process and thread
  • Ans. 

    A process is an instance of a program while a thread is a lightweight process that can run concurrently with other threads.

    • A process is a program in execution

    • A process has its own memory space and system resources

    • A thread is a subset of a process

    • A thread shares the same memory space and system resources as its parent process

    • Multiple threads can run concurrently within a single process

  • Answered by AI
  • Q7. What is system call.
  • Ans. 

    System call is a request made by a program to the operating system for a service or resource.

    • System calls provide an interface between a program and the operating system.

    • They allow programs to perform tasks such as reading and writing files, creating new processes, and managing memory.

    • Examples of system calls include open(), read(), write(), fork(), and exec().

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please study well and get your dream job.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Dec 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. So they asked totally from my resume and they finally asked three coding questions which were simple and you should answer genuinely
  • Q2. 1. write a code to check whether entered input is a palindrome or not 2. wap to print the reverse of an array 3. find the second highest in the array
  • Ans. 

    Answer to coding questions for Associate Software Engineer interview

    • To check for palindrome, compare the input string with its reverse

    • To print the reverse of an array, loop through the array in reverse order and print each element

    • To find the second highest in an array, loop through the array and keep track of the highest and second highest values

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - resume should be genuine, be prepared beforehand and be strong on basics and always put a smile in the interview

Interview Questionnaire 

1 Question

  • Q1. Low level design, high level design, algorithm upto tree. Dynamic programming a bit.

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

Interview Questionnaire 

1 Question

  • Q1. Interviewer asked me 20 technical questions and five programs with optimisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be elaborate, clear and try to recall from your experience

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java Basics,Cloud Basics,simple level codes,API related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basics clear, OOPS DS concepts,REST API Concepts will help

Credera Interview FAQs

How many rounds are there in Credera Associate Software Engineer interview?
Credera interview process usually has 3-4 rounds. The most common rounds in the Credera interview process are Coding Test, HR and Aptitude Test.
What are the top questions asked in Credera Associate Software Engineer interview?

Some of the top questions asked at the Credera Associate Software Engineer interview -

  1. Technical interview on college project and basic ds and algo questions. Asked b...read more
  2. Asked about React.js which I mentioned in my resume and given a pattern related...read more
  3. A very basic technical interview. Questions regarding c++, projects, oops. We w...read more

Tell us how to improve this page.

Credera Associate Software Engineer Interview Process

based on 3 interviews

2 Interview rounds

  • Coding Test Round
  • HR Round
View more
Credera Associate Software Engineer Salary
based on 83 salaries
₹3.4 L/yr - ₹6.2 L/yr
9% less than the average Associate Software Engineer Salary in India
View more details

Credera Associate Software Engineer Reviews and Ratings

based on 21 reviews

2.1/5

Rating in categories

2.5

Skill development

2.6

Work-life balance

2.2

Salary

1.9

Job security

2.4

Company culture

1.7

Promotions

1.8

Work satisfaction

Explore 21 Reviews and Ratings
Senior Software Engineer
198 salaries
unlock blur

₹4.1 L/yr - ₹22.8 L/yr

Software Engineer
190 salaries
unlock blur

₹3 L/yr - ₹12.1 L/yr

Principal Software Engineer
92 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
61 salaries
unlock blur

₹13.1 L/yr - ₹43 L/yr

Explore more salaries
Compare Credera with

Apisero

4.3
Compare

Actalent Services

3.5
Compare

Cyber Infrastructure

3.5
Compare

TestingXperts

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