Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Equivalence partitioning and Boundary value analysis

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

Program to print missing elements that lie in range 0 – 99

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

Razor Engine in .NET for MVC

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

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

Pointers in C++

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. &

What does $(“div[id$='box']”) in jQuery mean?

$(“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"> &

Command line argument in C

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

  • 835
Insertion sort in C

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

Magic Methods in PHP

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 in C

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

1 168 949
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: