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

Search In

How to play a vedio from your own server to your web page

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?

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

Life Cycle

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

Cloning of array in ActionScript3

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

variable in c++

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

Program to find largest of N numbers in an array

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

Function parameters in javascript

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

Returning Multiple Values in Python using list?

# 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

Difference between two elements so that larger element appears after the smaller number in C?

#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 =

Assigning mutiple values of multiple column in Single Select Statement

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

1 24 76
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: