Upload Button Icon Add office photos

Filter interviews by

Foundry Software Consultant Interview Questions and Answers

Updated 23 Nov 2024

Foundry Software Consultant Interview Experiences

2 interviews found

Software Consultant Interview Questions & Answers

user image Ganesh Darandale

posted on 23 Nov 2024

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

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

They gave you task so based on that you have to complete it within given time

Round 2 - One-on-one 

(5 Questions)

  • Q1. Whats are oops concept?
  • Ans. 

    OOPs concepts refer to Object-Oriented Programming principles such as inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation det

  • Answered by AI
  • Q2. Tringle pattern question
  • Q3. Class casting question
  • Q4. Spring boot annotations
  • Q5. Mvc architecture
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Assignment 

They will give the assignment and you have to complete it in within given period

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is innerclass?
  • Ans. 

    Innerclass is a class defined within another class in Java.

    • Innerclass can access all members of the outer class, including private members.

    • Innerclass can be static or non-static.

    • Innerclass is useful for grouping related classes together.

    • Example: public class OuterClass { class InnerClass {}}

  • Answered by AI
  • Q2. Tell me spring boot annotations?
  • Ans. 

    Spring Boot annotations are used to simplify the development process by providing shortcuts and configurations.

    • Annotations like @SpringBootApplication, @RestController, @Autowired, @Component are commonly used in Spring Boot applications.

    • These annotations help in defining the application entry point, creating RESTful web services, injecting dependencies, and marking classes as Spring components.

    • For example, @SpringBoot...

  • Answered by AI

Skills evaluated in this interview

Software Consultant Interview Questions Asked at Other Companies

asked in Capita
Q1. Palindrome String Validation Determine if a given string 'S' is a ... read more
asked in Capita
Q2. Reverse Stack with Recursion Reverse a given stack of integers us ... read more
Q3. Factorial Calculation Problem Statement Develop a program to comp ... read more
Q4. Angle Calculation Between Clock Hands Given a specific time in ho ... read more
asked in Knoldus Inc
Q5. What are the different http methods? Explain each one of them!

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. How to use Intent foags?
  • Ans. 

    Intent flags are used to modify the behavior of an Intent.

    • Intent flags can be used to start an activity as a new task, clear the task stack, or exclude components from the task stack.

    • Some commonly used flags include FLAG_ACTIVITY_NEW_TASK, FLAG_ACTIVITY_CLEAR_TASK, and FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS.

    • Flags can be set using the setFlags() method on an Intent object.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good knowledge of basics.
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 

(2 Questions)

  • Q1. What is a pointer to pointer
  • Ans. 

    A pointer to pointer is a variable that stores the memory address of another pointer variable.

    • It is used to create dynamic data structures like linked lists and trees.

    • It allows multiple levels of indirection.

    • It is denoted by ** in C and C++.

    • Example: int **ptr;

    • Example: ptr = &p; where p is a pointer variable.

  • Answered by AI
  • Q2. Class, object, inheritance, polymorphism,dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on pointers,work on ds, study network analysis, learn more about the job and company

Skills evaluated in this interview

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

I appeared for an interview before Mar 2024.

Round 1 - Aptitude Test 

The aptitude test mainly covered logical reasoning, quantitative aptitude, and basic programming concepts. Questions were of moderate difficulty, with some time-based problem-solving challenges. Practicing common aptitude topics like puzzles, numerical ability, and coding fundamentals can help in preparation.

Round 2 - Group Discussion 

The group discussion round focused on general topics related to technology, current affairs, and workplace scenarios. The evaluators were looking for clarity of thought, communication skills, and how well candidates could present their points while engaging with others. Staying confident and actively participating helped in getting selected.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be consistent and work hard
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 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 

(2 Questions)

  • Q1. What are the ways we can pass data from parent components to child components
  • Ans. 

    Data can be passed from parent components to child components in React using props.

    • Props can be passed down from parent to child components

    • State can also be passed down as props

    • Context API can be used to pass data to multiple levels of child components

    • Redux can be used for global state management

  • Answered by AI
  • Q2. What challenges you have faced and overcome

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep calm and give your real experience that have be earned while working previous projects

Skills evaluated in this interview

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

Keep your resume crisp & to-the-

Interview Preparation Tips

Interview preparation tips for other job seekers - writing skills, tactful handling, short, topic research,
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference betweenList Vs tupple
  • Ans. 

    List is mutable and can be changed, while tuple is immutable and cannot be changed.

    • List can be modified using methods like append, remove, and pop.

    • Tuple elements cannot be changed once assigned.

    • Lists are denoted by square brackets [], while tuples are denoted by parentheses ().

  • Answered by AI
  • Q2. What is decorator?
  • Ans. 

    A decorator is a design pattern in object-oriented programming that allows behavior to be added to individual objects, either statically or dynamically, without affecting the behavior of other objects.

    • Decorators are used to modify the behavior of functions or classes without changing their source code.

    • They are often used for adding functionalities like logging, caching, or authentication to existing code.

    • In Python, dec...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude was to the point. Was Easy

Round 2 - Assignment 

Then there was an assignment where have to create a web project.

Round 3 - HR 

(3 Questions)

  • Q1. Are you comfortable with bond
  • Q2. Are you comfortable with relocation
  • Q3. What are your skillsets.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on the assignment thing rest is easy. They shortlist mainly on that no technical round in my case
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. College project details and coding experience
Round 2 - Coding Test 

Good level logical question

Round 3 - HR 

(1 Question)

  • Q1. Next 5 years where you see yourself

Foundry Interview FAQs

How many rounds are there in Foundry Software Consultant interview?
Foundry interview process usually has 2 rounds. The most common rounds in the Foundry interview process are One-on-one Round, Assignment and Coding Test.
What are the top questions asked in Foundry Software Consultant interview?

Some of the top questions asked at the Foundry Software Consultant interview -

  1. Tell me spring boot annotatio...read more
  2. whats are oops conce...read more
  3. What is innercla...read more

Tell us how to improve this page.

Foundry Software Consultant Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Zeus Learning Interview Questions
3.3
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 30 Interviews
ENH iSecure Interview Questions
4.1
 • 29 Interviews
XenonStack Interview Questions
3.2
 • 27 Interviews
Moris Media Interview Questions
4.3
 • 24 Interviews
Big Oh Notation Interview Questions
2.8
 • 23 Interviews
View all
Web Designer
4 salaries
unlock blur

₹3.6 L/yr - ₹6.6 L/yr

Mechanical Engineer
4 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Electrical Maintenance Engineer
4 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Production Supervisor
4 salaries
unlock blur

₹1.1 L/yr - ₹2.5 L/yr

HR Incharge
4 salaries
unlock blur

₹9 L/yr - ₹12 L/yr

Explore more salaries
Compare Foundry with

Northcorp Software

4.3
Compare

Apex CoVantage

3.1
Compare

Appsierra

4.4
Compare

Teleindia Networks

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