
Search In
Hello Reader's if you want to integrate vedio from your own server to your webpage then you can use HTML5.
Now HTML5 offers you to use <vedio> tag. Lets see the example as below to show vedio
<!DOCTYPE html>
<html>
<body>
Usability Testing Approach/Techniques
Planning/Arranging:- During this stage the objectives of usability test are resolved. Having volunteers sit before your application and recording their activities is not an objective. You have to decide basic f
The page life cycle phases are:
Initialization
Instantiation
Restoration and maintenance of the state
Execution of the event handler codes
Page rendering
Page request - When ASP.NET gets a page request, it decides whe
For the cloning of array in ActionScript there are no built in methods. Thus the cloning is done basically using two methods namely clone( ) or slice( ). For the shallow copy of the array these methods are used without any arguments. If in the origin
In c++ we use variables to store the value of a number. The type of the value is needed to be declared first because according to that it will allocate the memory to particular variable.
Every variable is assigned with the unique memory address.
Ther
Finding largest number in an array:
To find largest number in an array first user will enter the length for the array and then the user will input the elements for the array. There is a max variable taken in the program which is assigned 0th index
We know that in JavaScript functions have parameters
function(parameter1, parameter2, parameter3) {
code to be executed
} // here function is the name of the function
Rules for the parameters
We do not specify data types for parameters in
# A Python program returning multiple values from a method using list
# Defining a function which returns a list
def fun():
str = "Demo"
x = 20
return [str, x];
# Driver code to test above function
list = fun() //calling o
#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 =
While writing Stored Procedures sometimes you need to store multiple columns values of select statement into multiple variables.
For doing that you need to write it in the following way
CREATE PROC dbo.uspDemo
@AccessToken VARCHAR(50),
@B
