
Search In
Software Errors and Bugs:
An error is a variance from perfection or correctness. A bug is an error or fault in a product which leads to the incorrect or unexpected result.
So, the following can be concluded:
Error is a di
In the below example I have created simple demo app used with volley library. First I have added volley support library in build.gradle file, Then I have added Button and Listview in activity_main.xml. I have created a new list_view.xml layout and he
//============= A simple program to demonstrate the use of "const" keyword with pointers==================
/*
* By => Bipin Gosain
* Date => 17/4/2016
*/
#include <iostream>
int main(){
using std:: endl;
using std::
ASP.NET MVC Filters
ASP.NET MVC provide filters to execute code logic before and after controller action execution. Pre-action and post-action behaviour are added to controller action method by filters. Custom filters creation depends on&nbs
Under Static Testing code is not performed/executed. Maybe it manually verifys the code, necessity documents, and design documents to discover errors. Consequently, the name "static".
Mail goal of this testing is to enhance the nature of finding the
ASP.NET MVC provides a simple way to inject the pre-processing and post-processing logic for an action. This is achieved by adorning the controllers/
actions with ASP.NET MVC attributes.
For example in the below piece of code we have adorned the met

Cakephp: URL rewriting is not properly configured on your server error. How to resolve it on Ubuntu 14.04?
I am posting this blog which will help you to resolve the issue (URL rewriting is not properly configured on your server) while installing cak
Introduction
In this section we will talk about three things: what to profile, why we need profiler and how can we profile our code. So we will discuss this one by one.
Profiling collect the information about an application, that helps you to dete
In PHP there is a feature which allows to write code in a different file and call it where ever there is a need for executing the code. this can be done by using the include and require functions.
with the help of the these two functions we can perf
Test Cases:
A test case is a kind of document, which includes the test data, preconditions, expected & actual results, etc. It is based on the test scenarios to check the results and compares it with the requirement. Test case has been created o
