
Search In
Ad hoc Testing
Ad hoc Testing is a software testing process where a Software tester dose testing without any proper planning. In Ad hoc testing is performed without any test case execution. Here testing is done without having any proper understandin
Hello Readers
Here is the example of custom drop down by using Css and HTML.
Here is the HTML
<div class="container">
<div class="customSelect">
<span class="arrow"></span>
<select id="selectVal
Thyroid hormone drugs are natural or synthetic preparations containing tetraiodothyronine (T4, levothyroxine) sodium or triiodothyronine (T3, liothyronine) sodium or both. T4 and T3 are produced in the human thyroid gland by the iodination and coupli
Most of cakephp developer write custom query to join two table of database but cakephp provides best facility to join more than one two table in single query using association .
Let see an Example:-
SELECT *
FROM `messages`
INNER JOIN users ON mess
Welcome to Findnerd. Today we are going to disccus two new features introduces in PHP7 that are closure::call. You can bind the outer function in class. It is also known as temporarily binding an object scope to a closure and invoking it. Please have
#include<stdio.h>
int maxDiff(int a[], int size)
{
int max_diff = a[1] - a[0];
int i, j;
for(i = 0; i < size; i++)
{
for(j = i+1; j < size; j++)
{
if(a[j] - a[i] > max_diff)
max_diff =
In client server model we have one or multiple clients that request for the service.
And the server is used to provide the response for the clients.
Client server model is like a request response relationship between the client and the serv
Test Case Design Techniques
These are the techniques that should be followed while writing the test cases to drive the maximum test coverage.
Following are the Test Case Design Techniques:
Error guessing.
Equivalence partitioning.
Boundary value
Joomla is a Content Management System which is free and open source to design websites easily. To add extra features in Joomla which are not available we need to extend it using extensions. Extensions role is to add some extra functionality to the Jo
Polymorphism:
Polymorphism is one of the OOPs pillars. Polymorphism is the ability of a method to behave differently as per the object. Polymorphism allows programmer to declare a method and use it differently based on the instance.
In Java polymor
