
Search In
Skeleton is a lightweight framework for CSS . It specifically has two CSS files: the popular normalize.css file and the skeleton.css file.
The grid system of Skeleton is used create responsive website hence it's a most important part if Skeleton
What is Honeypots ?
A honey pot is a computer security system which is used to attract people who’s motive is to penetrate the security of someone system . It is a trap to delude Hacker . Honeypot monitor the activity of the Intruder . when multip
Hi All,
If you need to pass data from one ViewContrlloer to other ViewController then first make properties in second ViewController in which you need that data For example:-
In SecondViewController.h
@interface SecondViewController : UIViewContr
There are different ways to create a singleton/shared instance of a class in Objective-C.
Here I have explained two most preferred methods for it and both are thread safe.
1) Using "@synthesize"
#define SINGLETON_FOR_CLASS(yourclassname) \
Architechture of Katana based application:
There are four layers of Katana based applications:
Application layer- Application layer is the client. e.g. your website built in Asp.net MVC , or console
or windows application.
This is used by end use
In jQuery, to select all siblings div after a child we use a function nextAll().
Syntax:
$(element).nextAll();
For example:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="main"&
#include<stdio.h>
int maxDiff(int a[], int n)
{
int maxDiff = -1; // Initialize Result
int maxRight = a[n-1]; // Initialize max element from right side
for (int i = n-2; i >= 0; i--)
{
if (a[i] > maxRight)
Namespace
In C++ two variables with the same name are not possible in the same scope i.e a name given to specific type or function represent one entity in a particluar scope but with namespaces, there is a possibility to create two variables or memb
It’s not wrong to say that HashMap is an implementation of Map interface as it allows value storing in key value pairs. Although unique elements are present in Hashmap, null values and only one null key are allowed.
Hashmap basically works on
Test Scenarios
It is a high level document that consist of all the possible combinations or ways of testing the application.
Generally, test scenarios are written to understand the flow of the application.
Why it is high level document?
As it does
