
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Vineet Nanda has Published 704 Articles

Vineet Nanda
3K+ Views
A common query that keeps running in the mind of every IT aspirant is: do software testers have to write or learn code? In this article, we will be discussing the solution to this question. Software testing can be done manually as well as through automation. We will be discussing ... Read More

Vineet Nanda
2K+ Views
The Basics of CookiesWe'll start by discussing what cookies are and how they operate. When you understand how cookies operate, it will be much easier for you to comprehend the test cases for testing cookies. How can cookies end up on your computer's hard drive? Also, how can we change our ... Read More

Vineet Nanda
3K+ Views
Backend TestingBacked testing is a method or technique that examines the server of database side of web applications or software. The primary motive of performing this test is to test the application layer or database layer to make the software defect-free, and prevent deadlock, data corruption, or data loss. For ... Read More

Vineet Nanda
2K+ Views
Introduction to Requirement Traceability MatrixA traceability matrix is a table-style document that is used to track requirements in the development of software applications. It can be used to trace backwards (from Coding to requirement) as well as forwards (from Requirements to Design or Coding). Requirement Traceability Matrix (RTM) or Cross ... Read More

Vineet Nanda
4K+ Views
Testing in a White BoxWhite Box Testing is a software examining technique that involves testing the product's underlying structure, design, and coding in order to verify input-output flow and improve design, usability, and security. White box testing is also known as Clear box testing, Open box testing, transparent box testing, ... Read More

Vineet Nanda
3K+ Views
Thread testing is client-server-based testing to verify the primary function of an application. It is used to determine whether the application can run a specific task or thread or not.Why Thread Testing is important?Software is split into several threads with each thread running a specific task. When all components of ... Read More

Vineet Nanda
1K+ Views
Recovery testing is system-based testing that ensures the system is capable of recovering from a failure. The process involves testing the system recovery process by voluntarily causing system failure. Besides testing the system fault-tolerance capabilities, the testing engineer also checks whether the system can resume itself within a pre-defined time. ... Read More

Vineet Nanda
939 Views
Most companies, especially the one who develops small-sized applications are still ignorant to parallel testing. However, what these companies don't comprehend is the future is changing dynamically. Nowadays, users want an extensive range of functions in a single application. To cater to users' demands, you are bound to expand your ... Read More

Vineet Nanda
4K+ Views
A software application contains an integration of various modules. Modules are programs written in a specific language consisting of subprograms, subroutines, functions, classes, and procedures. Module testing is a process where you need to test each unit of these modules to ensure they adhered to the best coding standards. Unless ... Read More

Vineet Nanda
9K+ Views
Domain testing is a testing process where the software is tested to ensure it doesn't accept invalid or out-of-range values. The output is tested against a minimum number of inputs to see whether the system is accepting the input within the required range or not. The white box testing is ... Read More