Upload Button Icon Add office photos

Filter interviews by

Decision Foundry Interview Questions and Answers

Updated 30 Jun 2023

Decision Foundry Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2023. There were 6 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 - Video Call 

(1 Question)

  • Q1. What do you understand by database, Data Warehousing, data lake, and datamarts? What are the benefits of the use of ELT over ETL? What's your experience with AWS Redshift? What's your experience with the c...
  • Ans. 

    A database is a structured collection of data, Data Warehousing is the process of collecting and managing data from various sources, data lake is a storage repository that holds a vast amount of raw data, and datamarts are subsets of data warehouses.

    • Database is a structured collection of data organized for easy access, retrieval, and management.

    • Data Warehousing involves collecting and managing data from various sources...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Tell me about yourself. some case-based scenario questions. some questions they will pick from your experience. then one online debug task for finding errors in the cloud watch log and solution according t...
Round 4 - Client Interview 

(1 Question)

  • Q1. One SQL coding round. which includes 6 questions which is a pretty medium level of queries. Experience and some questions related to knowledge.
Round 5 - Cloudwatch debug round 

(1 Question)

  • Q1. Here they will ask about cloud watch debug rounds and related questions. It will may not longer than 30 min.
Round 6 - HR 

(1 Question)

  • Q1. Final confirmation and salary discussion round.

Interview Preparation Tips

Topics to prepare for Decision Foundry Database Engineer interview:
  • SQL
  • ETL
  • Datalaks
  • Java/Python
  • Data Warehousing
Interview preparation tips for other job seekers - You should be good at writing SQL.
Good in AWS and your some related experience questions.
they can ask you for some knowledge of Python programming. But they will not focus much on this. It depends if they want to check on this.

Skills evaluated in this interview

Database Engineer Interview Questions asked at other Companies

Q1. What do you understand by database, Data Warehousing, data lake, and datamarts? What are the benefits of the use of ELT over ETL? What's your experience with AWS Redshift? What's your experience with the cloud watch and how do you debug?
View answer (1)

Interview questions from similar companies

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Technical 

(1 Question)

  • Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile
  • Ans. 

    Interview questions for Software Engineer position

    • Project explanation should include details on the project's purpose, scope, and technologies used

    • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

    • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity tes...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. All basic HR questions and salary discussion.

Interview Questionnaire 

3 Questions

  • Q1. OOPS concepts
  • Q2. SQL questions
  • Q3. Write a program..
  • Ans. 

    Program to print the Fibonacci series up to a given number.

    • Take input from user for the limit of the series.

    • Initialize two variables with 0 and 1 respectively.

    • Use a loop to generate the series and print each number.

    • Add the previous two numbers to get the next number in the series.

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. SDLC Model

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

Interview Questionnaire 

1 Question

  • Q1. MVC related, SQL commands, C, C#

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, Think well, If you have confusion in answer Just tell them which and why you feel confused, If you don't understand question, Just try to make it clear,
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 2023. There were 3 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 - Aptitude Test 

Program output prediction,Logical

Round 3 - Coding Test 

3 programs ,any Language you choose. One SQL and 2 programs

Interview Preparation Tips

Topics to prepare for ClaySys Software Engineer interview:
  • Coding skills
  • Logic
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts ?
  • Q2. SQL queries related?
Round 2 - Coding Test 

General coding questions

Round 3 - Assignment 

30days training and project building

Interview Preparation Tips

Topics to prepare for ClaySys Software Engineer interview:
  • Oops concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is easy to solve the Aptitude question and some identifying outputs of program.

Round 2 - HR 

(2 Questions)

  • Q1. What is class?and write a logic for object in a class.
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • A class defines the properties and behaviors of objects.

    • An object is an instance of a class.

    • Example: Class 'Car' can have properties like 'color' and 'model', and behaviors like 'drive' and 'stop'.

  • Answered by AI
  • Q2. 1.swap two numbers without using temp variable 2.Reverse the string.
  • Ans. 

    Swap two numbers without using temp variable and reverse a string without using built-in functions.

    • To swap two numbers without using temp variable, use bitwise XOR operation.

    • To reverse a string without using built-in functions, use two pointers approach.

    • Example for swapping numbers: a = a ^ b; b = a ^ b; a = a ^ b;

    • Example for reversing a string: use two pointers to swap characters from start and end of the string.

  • Answered by AI
Round 3 - Coding Test 

Now, I am preparing for the third round.
So, I don't know the Coding Question.

Interview Preparation Tips

Topics to prepare for ClaySys Software Developer interview:
  • Java, SQL
Interview preparation tips for other job seekers - What you have given in your Resume that will be your Question.
Must Strong in Basics of Java and SQL commands.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person

Decision Foundry Interview FAQs

How many rounds are there in Decision Foundry interview?
Decision Foundry interview process usually has 6 rounds. The most common rounds in the Decision Foundry interview process are Resume Shortlist, Video Call and Technical.
How to prepare for Decision Foundry 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 Decision Foundry. The most common topics and skills that interviewers at Decision Foundry expect are Salesforce, SQL, Web Analytics, Analytics and Python.
What are the top questions asked in Decision Foundry interview?

Some of the top questions asked at the Decision Foundry interview -

  1. What do you understand by database, Data Warehousing, data lake, and datamarts?...read more
  2. one SQL coding round. which includes 6 questions which is a pretty medium level...read more
  3. Here they will ask about cloud watch debug rounds and related questions. It wil...read more

Tell us how to improve this page.

Decision Foundry Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 142 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Monotype Interview Questions
3.7
 • 23 Interviews
Contus Interview Questions
4.2
 • 22 Interviews
View all

Decision Foundry Reviews and Ratings

based on 10 reviews

4.1/5

Rating in categories

3.7

Skill development

4.3

Work-life balance

3.5

Salary

4.0

Job security

4.1

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 10 Reviews and Ratings
Consultant
19 salaries
unlock blur

₹5 L/yr - ₹9.4 L/yr

Senior Consultant
13 salaries
unlock blur

₹9 L/yr - ₹14.2 L/yr

Solution Architect
11 salaries
unlock blur

₹15.3 L/yr - ₹17.6 L/yr

Associate Consultant
4 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Assistant Project Manager
4 salaries
unlock blur

₹10.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Decision Foundry with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Diverse Lynx

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