Upload Button Icon Add office photos

Filter interviews by

Credence Analytics Interview Questions, Process, and Tips

Updated 14 Oct 2024

Top Credence Analytics Interview Questions and Answers

Credence Analytics Interview Experiences

Popular Designations

10 interviews found

I applied via Other

Interview Questionnaire 

3 Questions

  • Q1. What is a promise?
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations such as fetching data from an API.

    • They have three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() and .catch() methods.

    • They help avoid callback hell and make code more readable and maintainable.

  • Answered by AI
  • Q2. What is a closure?
  • Ans. 

    A closure is a function that has access to variables in its outer scope, even after the outer function has returned.

    • A closure is created when a function returns another function that references variables in its outer scope.

    • Closures can be used to create private variables and methods in JavaScript.

    • Closures can also be used to create functions with pre-set arguments.

    • Closures can cause memory leaks if not used properly.

  • Answered by AI
  • Q3. Questions based on syntax of Vue directives

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on javascript, especially ES6.

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Multidimensional Array in Java
  • Ans. 

    Multidimensional arrays in Java are arrays of arrays, allowing for multiple dimensions of data storage.

    • Declare a multidimensional array using the syntax: String[][] arrayName = new String[rowSize][columnSize];

    • Access elements in a multidimensional array using arrayName[rowIndex][columnIndex];

    • Initialize a multidimensional array with values: String[][] arrayName = { {"value1", "value2"}, {"value3", "value4"} };

  • Answered by AI
  • Q2. Scenario based question

Skills evaluated in this interview

Software Consultant Interview Questions asked at other Companies

Q1. Palindrome String Validation Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols. Note: The string 'S' should be evaluated in a case-insensitive manner. Example: Input: "... read more
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and detail-oriented Implementation Support Engineer with a strong background in troubleshooting and customer service.

    • Experienced in providing technical support to customers

    • Proficient in troubleshooting software and hardware issues

    • Strong communication skills for effectively resolving customer concerns

    • Ability to work well under pressure and meet deadlines

    • Familiar with various operating systems and networ

  • Answered by AI
  • Q2. Basic to advance SQL questions (primary key, foreign key, joins, sub queries, DDL, DML, cursor, triggers ect...)
  • Q3. Basic javascript questions (explain functions, data types, etc...)
  • Q4. Explain about your projects
  • Ans. 

    I have worked on various projects involving implementation and support of software solutions for clients.

    • Implemented and configured software solutions based on client requirements

    • Provided technical support and troubleshooting for clients

    • Collaborated with cross-functional teams to ensure successful project delivery

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Only join the company if you are desperately in need of job
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL query you to do
  • Q2. Financial knowledge required
Round 2 - Assignment 

FIxed income securities

Interview Preparation Tips

Interview preparation tips for other job seekers - I was excellent , their no more youo can expect

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Credence Analytics interview questions for popular designations

 Front end Developer

 (2)

 Software Consultant

 (1)

 Business Analyst

 (1)

 Intern

 (1)

 Regional Sales Manager

 (1)

 Implementation Support Engineer

 (1)

 Implementation Consultant

 (1)

 Associate Software Engineer

 (1)

Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2023

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

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Resume orientated as well as technical
Round 3 - HR 

(1 Question)

  • Q1. Normal HR questions
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is primary key?
  • Ans. 

    Primary key is a unique identifier for each record in a database table.

    • Primary key ensures each record in a table is unique

    • It can be a single column or a combination of columns

    • Primary key values cannot be null

    • Example: 'id' column in a 'users' table

  • Answered by AI
  • Q2. What is foriegn kay
  • Ans. 

    A foreign key is a column or a set of columns in a table that uniquely identifies a row in another table.

    • Foreign keys establish a relationship between two tables in a database.

    • They ensure referential integrity by enforcing a link between the data in the two tables.

    • For example, in a database of students and courses, the student ID in the courses table would be a foreign key linking back to the student table.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly ask question's on SQL and Javascript

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

Jobs at Credence Analytics

View all

Intern Interview Questions & Answers

user image Anonymous

posted on 10 Oct 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. HR asks about you and your family background
  • Q2. HR asks about experience passion and other stuff
Round 3 - Assignment 

Make an api in this round, in your known language

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your concepts of oops, learn node, react, js, Java, and python

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

I applied via Approached by Company

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 

(1 Question)

  • Q1. Basic Finance Questions and SQL.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company for new learners. Profile and role is good but management is not good. My New manager abused me was not understandable. So I have to left this org.

Implementation Consultant Interview Questions asked at other Companies

Q1. In a factory as per govt rule how much leave is applicable
View answer (1)

I was interviewed in Aug 2021.

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

Build movies website where the user can search any movie worldwide and can see details and rating of this movie too.

Round 3 - HR 

(1 Question)

  • Q1. Small things to test your skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident all the time. Skill is the key to the confidence so work on it and go with your interest then it will be more easier.

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

I applied via Referral

Interview Questionnaire 

11 Questions

  • Q1. About Myself
  • Q2. Work Experience
  • Q3. Spirituality
  • Q4. Impromptu Question
  • Q5. Human relation Scenarios
  • Q6. Share market
  • Q7. Decision making question like how you identify a share to purchase
  • Q8. Interest
  • Q9. Why you want to join Credence
  • Ans. 

    I am excited about the opportunity to work for a company with a strong reputation and a commitment to excellence.

    • Credence has a great reputation in the industry and I want to be a part of that

    • I am impressed with the company's commitment to excellence and innovation

    • I believe that my skills and experience would be a good fit for the company

    • I am excited about the potential for growth and development within the company

    • I am...

  • Answered by AI
  • Q10. On Sales
  • Q11. General Personality related

Interview Preparation Tips

Round: Resume Shortlist
Experience: Easily shortlistec
Tips: Make good CV
Have good content to write.
Whatever little you write present it well

Round: HR Interview
Experience: Was confident. These questions were simple to comprehend
Tips: Be honest to reply. The questions are simple. The objective of keeping question simple is not to test what you dont know
but to let you present what you know in the best possible mannner

Round: Stress Interview
Experience: It was more about knowing myself more then any
Tips: Be confident, tactful, polite and thoughful

Round: Other Interview
Tips: Prepare for such questions in advance

General Tips: Read website, understand job role, prepare for expected HR questions
Skills: Stability, Ability To Convince, 1)communication, Interpersonal Skills
College Name: KJ Somaiya Institute Of Management Studies And Research
Motivation: Good early exposure
Funny Moments: Sharing with them that I am engaged and will be married in 5 months gave them the confidence about stability in my life.

Regional Sales Manager Interview Questions asked at other Companies

Q1. If there are 1500 shops that need to be visited twice a month, how many executives you need?
View answer (14)

Credence Analytics Interview FAQs

How many rounds are there in Credence Analytics interview?
Credence Analytics interview process usually has 2-3 rounds. The most common rounds in the Credence Analytics interview process are Resume Shortlist, Technical and Assignment.
How to prepare for Credence Analytics 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 Credence Analytics. The most common topics and skills that interviewers at Credence Analytics expect are Javascript, SQL, HTML, Node.Js and Oracle.
What are the top questions asked in Credence Analytics interview?

Some of the top questions asked at the Credence Analytics interview -

  1. What is primary k...read more
  2. What is a closu...read more
  3. What is a promi...read more

Tell us how to improve this page.

Credence Analytics Interview Process

based on 4 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
KPIT Technologies Interview Questions
3.4
 • 281 Interviews
View all

Credence Analytics Reviews and Ratings

based on 82 reviews

3.5/5

Rating in categories

3.6

Skill development

3.3

Work-life balance

2.9

Salary

3.1

Job security

3.5

Company culture

2.6

Promotions

3.4

Work satisfaction

Explore 82 Reviews and Ratings
Senior Talent Acquisition Specialist

Mumbai

2-4 Yrs

₹ 3-5.5 LPA

Technical Support Engineer

Mumbai

2-4 Yrs

₹ 3.5-5.5 LPA

Explore more jobs
Software Consultant
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Software Consultant
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Backend Developer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Credence Analytics 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