Prepare to Return an Outward Book

Nagasravan Tamma
Updated on 13-Jul-2021 11:40:18

210 Views

Refer to the transactions given below and prepare a return outward book.On June 2 − Received note worth of Rs.800/- from V.On June 9 − Received note worth of Rs. 350/- from S.On June 15 − Received note worth of Rs. 600/- from M.On June 20 − Received note worth of Rs. 1200/- from N.SolutionThe return outward book for the above mentioned data is as follows −Return outward bookDateName of customerDebit noteFolioAmount02/06/2005V80009/06/2005S35015/06/2005M60020/06/2005N1200total2950For V account, the return outward book is as follows −DateParticularsAmountDateParticularsAmount02/06/2005Return outwards800For S account, the return outward book is as follows −DateParticularsAmountDateParticularsAmount09/06/2005Return outwards350For M account, the return outward book ... Read More

10 Best Test Data Generation Tools

Vineet Nanda
Updated on 13-Jul-2021 11:23:33

2K+ Views

It requires a large volume of data to test applications. Manually inserting data is not an affordable and time-friendly option. Therefore, you need some test data generation tools to insert data into the database with ease. These tools help testers with load, performance and stress testing. You can use these data in other databases too. Apart from storing data, a test data generation tool also helps in securing your existing data. It can be done by replacing confidential data with dummies.10 Best Test Data Generation ToolsDTM Data GeneratorDTM data generator is a reliable tool for delivering high-quality and realistic test ... Read More

Difference Between Globalization Testing and Localization Testing

Vineet Nanda
Updated on 13-Jul-2021 11:22:28

1K+ Views

Globalization testing and localization testing are conducted to test the linguistic and cultural aspects of the software. It is mostly used to identify the product’s appeal to global and local audiences. With proper testing, organizations can introduce their software products worldwide.Globalization and localization testing allow the testing team to measure the performance, function, quality, and other essential fundamentals of the software. In the world of globalization, companies need to accommodate the needs of the end-users, in which these testing play a significant role.What is Globalization Testing?Globalization testing is used to test the software for multiple languages. This testing ensures that ... Read More

Write Test Cases

Vineet Nanda
Updated on 13-Jul-2021 11:14:23

1K+ Views

What is a Test Case?A test case is a set of criteria that a tester uses to verify whether or not a software application is meeting the customer's requirements. Preconditions, case name, input conditions, and intended result are all included in the test case design. A test case is a basic activity that is derived from test scenarios.It is a comprehensive document that comprises all possible inputs (both positive and negative) as well as navigation instructions for the test execution process. Writing test cases is a one-time effort that can be reused for regression testing in the future.The test case ... Read More

Perform Regression Testing

Vineet Nanda
Updated on 13-Jul-2021 10:50:13

865 Views

In this article, we will learn what is regression testing, how to do it, when it is required and its types.What is Regression Testing?Regression testing is also known as black box testing. It is used to verify that a software code modification does not affect the product's existing functionality. Regression testing ensures that a product's new functionality, issue patches, or other changes to an existing feature work properlyRegression testing is a sort of software analysis. Test cases are re-run to ensure that the application's previous functionality is still operational and that the new changes haven't introduced any defects.When there is ... Read More

What is Sandwich Testing? Definition, Types & Examples

Vineet Nanda
Updated on 13-Jul-2021 10:46:35

3K+ Views

Integration testing is a specific phase in software testing where testers combine and test all standalone modules into one entity. In this phase, testers test each module of the interface and communication. These tests are conducted using two approaches- top-down and bottom-up integration testing. Sandwich Testing, aka Hybrid integration testing, comprises both the bottom-up and top-down testing approach. In short, in sandwich testing, testers gain the advantages of both of these approaches, making the process more precise and result-oriented.Features of Sandwich TestingBelow are the features of sandwich or hybrid testing −It comes with three layers − the main target layer, ... Read More

Testing Documentation in Software Testing

Vineet Nanda
Updated on 13-Jul-2021 08:36:30

2K+ Views

The documentation of objects written before or during software testing is known as test documentation. It aids the research team in decreasing commitment to testing, test coverage, resource monitoring, and implementation development, among other things. It's a comprehensive set of documents that lets you define and track test preparation, test design, test implementation, and test results resulting from testing activities. It is a comprehensive set of documents that allows you to define and document test planning, test design, test execution, and test results.The importance of procedures for the consumer, the individual, and the business is reflected in documentation. Projects that ... Read More

What is a Test Scenario

Vineet Nanda
Updated on 13-Jul-2021 08:30:34

955 Views

Any capability that may be tested is defined as a TEST SCENARIO. It's also known as Test Possibility or Test Condition. As a tester, you should put yourself in the shoes of the end user and determine the Application Under Test's real-world scenarios and use cases.In liner statements, a test scenario is a complete list containing test cases that cover end-to-end functionality of a software program. A scenario is defined as a liner statement. The test scenario is a classification of testable requirements at a high level. These criteria are categorized according to a module's functionality and derived from use ... Read More

Defect Density Formula with Example

Vineet Nanda
Updated on 13-Jul-2021 08:23:17

10K+ Views

Software is tested based on its quality, scalability, features, security, and performance, including other essential elements. It's common to detect defects and errors in a software testing process. However, developers must ensure they are taken care of before launching it to the end-users. This is because fixing an error at an early stage will cost significantly less than rectifying it at a later stage.The process of defect detection ensures developers that the end product comprises all the standards and demands of the client. To ensure the perfection of software, software engineers follow the defect density formula to determine the quality ... Read More

Get Input from Tkinter Text Widget

Dev Prakash Sharma
Updated on 13-Jul-2021 08:01:56

12K+ Views

In tkinter, we can create text widgets using Text attributes using packages. However, while creating a GUI application, sometimes we need to capture the input from a text widget.We can get the input from the user in a text widget using the .get() method. We need to specify the input range which will be initially from 1.0 to END that shows the characters starting and ending till the END.Example#Import tkinter library from tkinter import * #Create an instance of tkinter window or frame win=Tk() win.geometry("700x300") def get_input():    value=my_text_box.get("1.0", "end-1c")    print(value) #Creating a text box widget ... Read More

Advertisements