
Search In
Equivalence partitioning
Equivalence partitioning is one of the most commonly used specification-based black-box technique. It is a test design technique that can be used in black-box testing as in system testing. The concept of this technique is to
The logic of the program is to use a boolean array named presentseen of size 100, the size is defined by macro LIMIT. The boolean array is used to keep track of array elements that lie in range 0 to 99, which is initially initialized t
While writing codes in MVC you need to understand that we will have HTML here but we dont have the ASPX
engine
For MVC we will have Razor engine for writing HTML
Simple HTML page looks like this
<!DOCTYPE html>
<html lang="en">
<
Covariant Return Type in Java
This feature of Java allows overridden methods to have different return types. Before Java 5.0, overriding a method a concept used in inheritance in which subclass can have same method as provided in superclas
A pointer is variable whose value is address of another variable You must declare it before using it in your program.
C++ performed task more easily with pointers, such as dynamic memory allocation, cannot be performed without them.
&
$(“div[id$='box']”) in jQuery
The above expression mean selecting all div elements whose id attribute end with box like firstbox, secondbox etc.
Program to demonstrate above expression:
<html lang="en">
&
You can pass command line argument in C programming.
The command line argument is handled by the program main function where argc[] is total number of arguments passed, and argv[] is a array which points number of parameters passed in
Sorting in C is mainly done to arrange elements either in ascending or in descending order.
Sorting in done in programming by various ways
We are about to discuss insertion sort that will take element wise comparison for performing
PHP does not provide any specific definitions of the magic methods or functions. It is the programmer who actually writes the code to the functions that defines which states what the magic functions will do. But, magic functions are not directly call
Selection sort as the name suggests, first select the least element from the entire list in every iteration and swap it with the position for which iteration is being performed.
In the given figure it is seen that in the first iteration the
