Find Interview Questions for Top Companies
Ques:- Please see if you can answer my questons with real life expreiences.1. Explain me your expreience in customizing with Intercompany Billing?2. give an example of unit testing and integration testing you have performed in your expreience?3. While working with Copy control functionality, what exactly did you do within data transfer routines?
Asked In :-
Right Answer:
1. In my experience with Intercompany Billing, I customized the billing process by configuring the intercompany pricing and ensuring that the billing documents were generated correctly between the two companies. I also set up the necessary accounting entries to reflect the transactions accurately in both company codes.

2. For unit testing, I tested a specific function that calculates discounts on sales orders to ensure it returns the correct values based on various input scenarios. For integration testing, I tested the end-to-end process of creating a sales order, generating a delivery, and creating an invoice to ensure all systems communicated correctly and the data flowed seamlessly.

3. While working with Copy Control functionality, I modified data transfer routines to map fields from the source document to the target document accurately. This included customizing how certain fields were populated based on specific business rules and ensuring that additional data was transferred as needed for accurate billing and reporting.
Ques:- Given the following code, which is true about the minimum number of test cases required for full statement and branch coverage:Read PRead QIF P+Q > 100 THENPrint ?Large?ENDIFIf P > 50 THENPrint ?P Large?ENDIFhow to find statement and branch coverage? Explain in brief?
Asked In :-
Right Answer:
To achieve full statement and branch coverage for the given code, you need a minimum of 3 test cases:

1. **Test Case 1**: P = 51, Q = 50 (covers both branches: P + Q > 100 is false, P > 50 is true)
2. **Test Case 2**: P = 50, Q = 51 (covers both branches: P + Q > 100 is false, P > 50 is false)
3. **Test Case 3**: P = 100, Q = 1 (covers both branches: P + Q > 100 is true, P > 50 is true)

This ensures all statements and branches are executed.
Ques:- Tell me abuot your daily activities as a test engineer.
Asked In :-
Right Answer:
As a test engineer, my daily activities typically include:

1. Reviewing requirements and specifications to understand what needs to be tested.
2. Designing and developing test cases and test scripts based on the requirements.
3. Executing test cases and documenting the results.
4. Identifying, reporting, and tracking defects using a bug tracking tool.
5. Collaborating with developers and other team members to resolve issues.
6. Performing regression testing after fixes or updates.
7. Participating in daily stand-up meetings to discuss progress and challenges.
8. Continuously improving testing processes and methodologies.
Ques:- Write the Test Cases for ATM(Any Time Money)
Asked In :-
Right Answer:
1. **Test Case ID**: TC_ATM_001
**Test Case Description**: Verify ATM card insertion.
**Precondition**: User has a valid ATM card.
**Steps**: Insert the ATM card.
**Expected Result**: ATM accepts the card and displays the welcome screen.

2. **Test Case ID**: TC_ATM_002
**Test Case Description**: Verify PIN entry.
**Precondition**: User has inserted a valid ATM card.
**Steps**: Enter a valid PIN.
**Expected Result**: User is granted access to the account.

3. **Test Case ID**: TC_ATM_003
**Test Case Description**: Verify incorrect PIN entry.
**Precondition**: User has inserted a valid ATM card.
**Steps**: Enter an incorrect PIN three times.
**Expected Result**: ATM locks the card after
Ques:- What are functional and non functional requirement of SRS document..
Asked In :-
Right Answer:
Functional requirements specify what the system should do, including features and functionalities like user interactions, data processing, and business rules. Non-functional requirements define how the system performs under certain conditions, including aspects like performance, security, usability, reliability, and scalability.
Ques:- Which table achieves data from landing table?
Asked In :-
Right Answer:
The staging table achieves data from the landing table.
Ques:- There are 2 clients for a server and that clients can access the data from the server only for 10 days. so how will you test this scenario manually? Can u pls help me?..
Asked In :-
Right Answer:
To test the scenario manually, follow these steps:

1. **Setup**: Ensure the server and clients are properly configured and connected.
2. **Initial Access**: Have both clients access the server and verify they can retrieve data successfully on day 1.
3. **Day Tracking**: Keep track of the days using a simple log or a timer.
4. **Access on Day 10**: On day 10, check if both clients can still access the data. They should be able to access it without issues.
5. **Access on Day 11**: Attempt to access the data on day 11. Both clients should be denied access or receive an appropriate error message indicating the 10-day limit has expired.
6. **Boundary Testing**: Repeat the access tests on day 9 and day 10 to ensure access is granted, and on day 11 to confirm access is denied.
7. **Error Handling**: Verify that the error messages or access restrictions are
Ques:- Hi friends,Is there any difference in testing the web applications which are built on different technologies like .NET,PHP,J2ee etc ?if yes then how the testing differes from one to other?(for me its urgent to know the diff. btn .net and php).can anybody answer soon….!
Asked In :-
Right Answer:
Yes, there are differences in testing web applications built on different technologies like .NET and PHP.

1. **Frameworks and Tools**: Each technology has its own set of testing frameworks and tools. For .NET, tools like NUnit or MSTest are commonly used, while PHP often utilizes PHPUnit.

2. **Environment Setup**: The testing environment setup can differ. .NET applications may require Windows servers and IIS, while PHP applications can run on various platforms, including Linux with Apache or Nginx.

3. **Code Structure**: The architecture and design patterns used in .NET (like MVC) may differ from those in PHP, affecting how tests are structured and executed.

4. **Database Interaction**: The way each technology interacts with databases can vary, influencing how database testing is performed.

5. **Error Handling**: Error handling mechanisms differ between .NET and PHP, which can impact how you test for exceptions and failures.

6. **Security Testing**: Security vulnerabilities may
Ques:- As a tester I found a show stopper(critical defect) this evening whereas the project is going to be delivered to the client tomorrow morning so there is no time left.I reported the same to my test manager but he is not ready to convinced with me moreover he wants to close the matter as it is….in this senario wat will u do???
Ques:- How should the test cases be framed to validate the excel sheet?
Asked In :-
Right Answer:
Test cases to validate an Excel sheet should include the following:

1. **Data Integrity**: Verify that data in cells matches expected values.
2. **Formula Accuracy**: Check that formulas return correct results.
3. **Data Type Validation**: Ensure that data types (e.g., text, numbers, dates) are correct in each cell.
4. **Boundary Conditions**: Test edge cases, such as maximum and minimum values.
5. **Formatting Checks**: Validate that cell formatting (e.g., currency, percentage) is applied correctly.
6. **Sheet Navigation**: Ensure that all sheets can be accessed and navigated properly.
7. **Error Handling**: Test how the sheet handles invalid inputs or errors.
8. **Performance Testing**: Assess the performance with large datasets.
9. **Export/Import Functionality**: Verify that data can be correctly exported and imported from/to other formats.
10. **Security Checks**: Ensure that any password protection or access controls
Ques:- What is Testing in Abnormal environment?a)Stress Testingb)Beta Testingc)Performance Testingd)Security Testing
Asked In :-


The Whitebox Testing section on takluu.com is designed for QA professionals, testers, and developers who want to master the internal testing techniques crucial for delivering high-quality software. Whitebox testing, also known as structural or glass-box testing, involves examining the internal logic, code structure, and workflows to ensure thorough test coverage and bug detection.

This category covers essential concepts such as code coverage metrics (statement, branch, path coverage), control flow testing, data flow testing, unit testing frameworks, and debugging techniques. You’ll also learn about writing effective test cases, identifying edge cases, and using automation tools that support whitebox testing.

Whitebox testing is vital in detecting hidden errors early in the development cycle, improving code quality, and facilitating continuous integration and deployment. This section provides practical interview questions and detailed explanations to help you understand how whitebox testing differs from blackbox testing and when to apply each.

You will also find scenario-based questions frequently asked in QA and software developer interviews that test your understanding of testing methodologies, code instrumentation, and test-driven development (TDD).

Whether you’re preparing for roles such as QA Engineer, Software Tester, or Automation Engineer, this section equips you with the knowledge and skills to perform effective whitebox testing and confidently answer related interview questions.

At Takluu, we focus on practical learning, ensuring you can apply whitebox testing techniques in real projects and succeed in your career journey.

AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users