Upload Button Icon Add office photos

Filter interviews by

Foundry Interview Questions and Answers

Updated 23 Nov 2024

Foundry Interview Experiences

Popular Designations

3 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

Software Consultant Interview Questions asked at other Companies

Q1. Check If The String Is A PalindromeYou are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols and whitespaces. Note : String... read more
View answer (3)
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

Q1. Check If The String Is A PalindromeYou are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols and whitespaces. Note : String... read more
View answer (3)
Round 1 - One-on-one 

(1 Question)

  • Q1. Mathematics caluculation speed
  • Ans. Timely manage man power and field work quickly
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company dcm engineering products
Experience is important for any jobs so pls join any company in india

Shift Incharge Interview Questions asked at other Companies

Q1. Tell me about power factor and how to keep always .80?
View answer (5)

Jobs at Foundry

View all

Interview questions from similar companies

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

I applied via Shine and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(22 Questions)

  • Q1. What is SDLC and STLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is the process of developing software from planning to deployment. STLC stands for Software Testing Life Cycle, which is the process of testing software to ensure quality.

    • SDLC involves phases like planning, analysis, design, implementation, and maintenance.

    • STLC involves phases like test planning, test design, test execution, and test closure.

    • SDLC focuses on the ove...

  • Answered by AI
  • Q2. Defect Life Cycle
  • Q3. What are the Testing types?
  • Ans. 

    Testing types refer to different approaches and techniques used to validate software functionality.

    • Functional Testing - testing the functionality of the software

    • Non-Functional Testing - testing aspects like performance, usability, etc.

    • Manual Testing - testing done manually by testers

    • Automated Testing - testing done using automation tools

    • Regression Testing - testing to ensure new code changes do not affect existing func...

  • Answered by AI
  • Q4. How will you tackle if you found any issues just before the release?
  • Ans. 

    I will prioritize and address critical issues first, communicate with stakeholders, and work with the team to resolve the issues efficiently.

    • Prioritize critical issues that could potentially block the release

    • Communicate with stakeholders about the issues and potential impact on the release timeline

    • Work closely with the development team to quickly identify and resolve the issues

    • Perform thorough testing and validation po

  • Answered by AI
  • Q5. Agile model and water fall model?
  • Q6. Smoke testing, Unity Testing, White box testing and Black box testing?
  • Q7. Retesting and Regression testing difference?
  • Ans. 

    Retesting is testing the same functionality again to ensure the defect has been fixed, while regression testing is testing the entire application to ensure new changes have not affected existing functionality.

    • Retesting focuses on verifying that a specific defect has been fixed.

    • Regression testing focuses on ensuring that new changes have not affected existing functionality.

    • Retesting is usually done by the QA analyst who...

  • Answered by AI
  • Q8. Challenges for the QA lead during testing?
  • Ans. 

    Challenges for QA lead include managing resources, prioritizing tasks, communication with stakeholders, and ensuring thorough testing.

    • Managing resources effectively to meet deadlines

    • Prioritizing tasks based on criticality and impact on project

    • Communicating effectively with stakeholders to align expectations

    • Ensuring thorough testing coverage across all functionalities

    • Coordinating with development team for timely bug fix

  • Answered by AI
  • Q9. Selenium 4 new things?
  • Ans. 

    Selenium 4 introduces new features like Relative Locators, Chrome DevTools Protocol, and improved W3C WebDriver support.

    • Relative Locators allow testers to locate elements based on their relationship with other elements.

    • Chrome DevTools Protocol integration enables better debugging capabilities.

    • Improved W3C WebDriver support ensures better compatibility with modern browsers.

    • New APIs for better handling of browser windows...

  • Answered by AI
  • Q10. Found x path for element on flipkart web app
  • Ans. 

    To find x path for element on Flipkart web app, use browser developer tools

    • Open Flipkart web app in browser

    • Right click on the element you want to find x path for

    • Select 'Inspect' to open developer tools

    • Locate the element in the HTML code

    • Right click on the element in the HTML code

    • Select 'Copy' -> 'Copy XPath' to get the x path

  • Answered by AI
  • Q11. Mouse operation in selenium , syntax
  • Ans. 

    Mouse operations in Selenium involve actions like click, double click, right click, drag and drop, etc.

    • Mouse click: driver.findElement(By.xpath("//elementXPath")).click();

    • Double click: Actions action = new Actions(driver); action.doubleClick(element).perform();

    • Right click: Actions action = new Actions(driver); action.contextClick(element).perform();

    • Drag and drop: Actions action = new Actions(driver); action.dragAndDrop

  • Answered by AI
  • Q12. New locators in selenium 4 ?
  • Ans. 

    Selenium 4 introduces new locators for more efficient web element identification.

    • Selenium 4 introduces Relative Locators for finding elements based on their relationship with other elements.

    • The 'findElement' method now supports 'withTagName', 'above', 'below', 'toLeftOf', 'toRightOf', and 'near' methods.

    • Relative locators help in writing more robust and readable test scripts.

    • Example: driver.findElement(withTagName("inpu

  • Answered by AI
  • Q13. How to get data from excel file in selenium?
  • Ans. 

    Data from Excel file can be retrieved in Selenium using Apache POI library.

    • Use Apache POI library to read data from Excel files in Selenium

    • Create a FileInputStream object to read the Excel file

    • Create a Workbook object using the FileInputStream

    • Get the desired sheet from the Workbook

    • Iterate through rows and cells to retrieve data

    • Close the Workbook and FileInputStream after use

  • Answered by AI
  • Q14. How to upload file in selenium?
  • Ans. 

    To upload a file in Selenium, you can use the sendKeys() method on the file input element.

    • Locate the file input element on the webpage using appropriate locator strategies

    • Use the sendKeys() method to send the file path to the file input element

    • Ensure the file path is correct and accessible by the browser

  • Answered by AI
  • Q15. How to get iFrame in web page?
  • Ans. 

    To get an iFrame in a web page, you can use the <iframe> tag in HTML.

    • Use the <iframe> tag in HTML to embed another webpage within the current webpage

    • Specify the source URL of the webpage to be displayed in the iFrame using the 'src' attribute

    • Adjust the height and width of the iFrame using the 'height' and 'width' attributes

    • Add a border around the iFrame using the 'frameborder' attribute

  • Answered by AI
  • Q16. How to switch iFrame one to another?
  • Ans. 

    To switch iFrame one to another, you can use the switchTo() method in Selenium WebDriver.

    • Locate the iFrame using its locator

    • Switch to the iFrame using switchTo() method

    • Perform actions within the iFrame

    • Switch back to the default content when done

  • Answered by AI
  • Q17. Return type of iFrames in web page ?
  • Ans. 

    iFrames in web pages have a return type of HTML elements.

    • iFrames are used to embed another document within the current HTML document.

    • They are represented as HTML elements with a src attribute pointing to the URL of the embedded document.

    • iFrames can be manipulated using JavaScript to interact with the embedded content.

  • Answered by AI
  • Q18. How to automate mobile app without having a mobile device?
  • Ans. 

    Use emulators or cloud-based testing services to automate mobile app testing without physical devices.

    • Utilize emulators such as Android Studio's emulator or Genymotion for Android apps

    • Leverage cloud-based testing services like AWS Device Farm or BrowserStack for testing on various devices and OS versions

    • Implement Appium or Selenium for cross-platform mobile app automation

  • Answered by AI
  • Q19. Java coding questions like change date format 12 hours to 24 hours without using time and date from selenium?
  • Q20. TestNG annotations and It's sequences?
  • Ans. 

    TestNG annotations are used to control the flow of test methods and define the sequence in which they should be executed.

    • Annotations like @BeforeSuite, @BeforeTest, @BeforeClass, @BeforeMethod are used to set up preconditions before executing test methods.

    • Annotations like @Test are used to define test methods.

    • Annotations like @AfterMethod, @AfterClass, @AfterTest, @AfterSuite are used to clean up after executing test m...

  • Answered by AI
  • Q21. How to copy data from one tab and paste it another tab where both tab are already opened?
  • Ans. 

    To copy data from one tab and paste it in another tab, use keyboard shortcuts or right-click options.

    • Use Ctrl + C to copy data from the source tab

    • Switch to the target tab

    • Use Ctrl + V to paste the copied data in the target tab

    • Alternatively, right-click on the selected data and choose 'Copy', then right-click in the target tab and choose 'Paste'

  • Answered by AI
  • Q22. How to drag any object one place to another place using actions class?
  • Ans. 

    Use Actions class in Selenium to drag an object from one place to another.

    • Create an instance of Actions class

    • Use dragAndDrop() method to drag the object to the desired location

    • Perform() method to execute the action

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nirvana Solutions Lead QA Analyst interview:
  • Manual Tesitng
  • Automation Testing
  • Testng
  • JIRA
  • Testing Methodology
  • Selenium
  • Core Java
  • API
Interview preparation tips for other job seekers - Please be ready for the interview.
You should be have good knowledge in Manual testing and Automation testing.
Ready for write the java code.
Ready for found the x path , drag and drop object, fetch the data from excel file, upload file via selenium code etc.
Prepare basic questions related to the Manual testing.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. How would you utilize AWS or Azure services to create scalable web applications
  • Ans. 

    Utilize AWS or Azure services for scalable web applications

    • Use AWS Elastic Beanstalk or Azure App Service for easy deployment and scaling

    • Leverage AWS Lambda or Azure Functions for serverless computing

    • Utilize AWS Auto Scaling or Azure Autoscale to automatically adjust resources based on traffic

    • Store data in AWS RDS or Azure SQL Database for scalable database solutions

    • Use AWS CloudFront or Azure CDN for content delivery

  • Answered by AI
  • Q2. How would you tackle memory leaks if the system your working on was experiencing this issue?
  • Ans. 

    I would use memory profiling tools to identify the source of the leaks and then fix them by properly managing memory allocation and deallocation.

    • Use memory profiling tools like Valgrind or Instruments to identify the source of the leaks

    • Review the code to ensure proper memory allocation and deallocation practices are being followed

    • Implement smart pointers or garbage collection to automatically manage memory

    • Use static co...

  • Answered by AI
  • Q3. Have you worked on legacy systems?
  • Ans. 

    Yes, I have experience working on legacy systems.

    • I have successfully maintained and upgraded legacy systems to meet current business needs.

    • I have refactored legacy code to improve performance and scalability.

    • I have integrated new technologies with legacy systems to enhance functionality.

    • I have experience troubleshooting and debugging issues in legacy systems.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Are you capable to work with cross functional teams and handle disputes effectively
  • Ans. 

    Yes, I have experience working with cross functional teams and resolving disputes effectively.

    • I have successfully collaborated with team members from different departments to achieve project goals.

    • I am skilled at mediating conflicts and finding mutually beneficial solutions.

    • I prioritize open communication and actively listen to all team members' perspectives.

    • I have experience using conflict resolution techniques such a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and on to point without deviations, they respect straight forwardness
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant

Round 1 - One-on-one 

(4 Questions)

  • Q1. Talk about your work experience. Detailed questions about projects that I worked on.
  • Q2. Why are you interested in switching.
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic field.

    • Interested in leveraging my skills and experience in a new environment

    • Excited about the potential to work on innovative products

    • Looking for opportunities to expand my knowledge and expertise

  • Answered by AI
  • Q3. Do you use any food delivery apps frequently? What would you improve in Swiggy?
  • Ans. 

    Yes, I frequently use food delivery apps like Swiggy.

    • I use Swiggy at least a few times a week for ordering food.

    • I appreciate the wide variety of restaurants and cuisines available on Swiggy.

    • Improvement suggestion: Enhance the user interface for a smoother ordering experience.

    • Improvement suggestion: Implement a more accurate delivery time estimation system.

    • Improvement suggestion: Offer more personalized recommendations

  • Answered by AI
  • Q4. What is northstar metric, what would be northstar metric for Swiggy
  • Ans. 

    Northstar metric is the key metric that drives the core value of a product. For Swiggy, the northstar metric could be Daily Active Users (DAU) or Orders per User.

    • Northstar metric is the single metric that best captures the core value that your product delivers to customers.

    • For Swiggy, the northstar metric could be Daily Active Users (DAU) as it represents the number of unique users who engage with the platform on a dai...

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

(2 Questions)

  • Q1. Explain what you worked on, how did you grow the adoption of the feature.
  • Ans. 

    I worked on improving the adoption of a new feature by conducting user research, implementing user feedback, and creating targeted marketing campaigns.

    • Conducted user research to understand user needs and preferences

    • Implemented user feedback to make necessary improvements to the feature

    • Created targeted marketing campaigns to promote the feature to the right audience

  • Answered by AI
  • Q2. Design product to manage risks during an event. Sub-question- How would this change if the target market is tier 3 cities in India

Interview Preparation Tips

Topics to prepare for Keka HR Payroll Software Product Manager interview:
  • Product growth
  • Hr tech
Interview experience
1
Bad
Difficulty level
-
Process Duration
4-6 weeks
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Virtual Interview 

(1 Question)

  • Q1. No qualifications were discussed, more personal details were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - I had interview call with CEO Sameer. Firstly, he will drag it for long time unnecessarily
Second, don't fall for unrealistic offer he states

He asks inappropriate questions like:
1. Where do you want to go with me if we have to travel
2. What do you prefer if I have to buy you something
3. Do you go to parties, drink alcohol, what kind of dresses you wear, do you have friends, do you have a boyfriend
4. He literally stated clearly that he expects more of relationship, physical intimacy kindoff as part of job and he thinks it is fun

WTH was that. This organisation should be closed down for doing such fraudulent activities.

They have:
Fake reviews
Fake linkedin associated people
Inflated social numbers

And none of their leadership team's profiles are authentic on LinkedIn

They already have a strong base, it is fraudulent though which they can convert it into healthy structure where they can deliver real services, real jobs and do real job and generate some revenue

Anyways, this guy sameer definitely needs heavy brain detoxification to cleanse his thoughts and get to some positive terms

Jobseekers- STAY AWAY FROM THIS COMPANY. DO NOT WASTE YOUR TIME
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between a list and a tuple in python?
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List is mutable, meaning its elements can be changed after creation.

    • Tuple is immutable, meaning its elements cannot be changed after creation.

    • List is defined using square brackets [], tuple using parentheses ().

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q2. List : Mutable (can be modified) defined using []. Ex - my_list = [1, 2, 3] Tuple : Immutable (cannot be modified) defined using(). Ex - my_tuple = (1, 2, 3).
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is react why it's used?
Round 2 - Technical 

(1 Question)

  • Q1. What is virtual DOM in react?
Round 3 - Assignment 

Filter and shot the filter block based on title using redux?

Foundry Interview FAQs

How many rounds are there in Foundry interview?
Foundry interview process usually has 1-2 rounds. The most common rounds in the Foundry interview process are One-on-one Round, Assignment and Coding Test.
How to prepare for 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 Foundry. The most common topics and skills that interviewers at Foundry expect are Agile, Blasting, Case, Cfo and Data Analysis.
What are the top questions asked in Foundry interview?

Some of the top questions asked at the Foundry 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.

People are getting interviews through

based on 2 Foundry interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 787 Interviews
View all

Foundry Reviews and Ratings

based on 19 reviews

3.7/5

Rating in categories

4.0

Skill development

3.9

Work-Life balance

3.7

Salary & Benefits

3.3

Job Security

3.9

Company culture

3.5

Promotions/Appraisal

4.0

Work Satisfaction

Explore 19 Reviews and Ratings
Product Manager III (5-10 years) Pool Blocks

Bangalore / Bengaluru

6-9 Yrs

Not Disclosed

Explore more jobs
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

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview