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

Search In

Method Overloading in Java

Method Overloading Creating a multiple methods with same name and with different argument list is known as method overloading. When we are overloading a method argument, list should be unique i.e, it should be unique with either number of arguments

Implementation of Stack Using Array in C

This is the Implementation of Stack using Array in C. The concept of Stack is to work on LIFO(Last In First Out). The Element can be Pushed into the Stack of Size 5. The Below code shows How the stack works. The Last Element inserted by the user is s

Implementation of Queue Using Array in C

The below example shows the concept of FIFO. The First Inserted Element is shown at first position and if you want to retrieve the element then first inserted element will be retrieved first. #include<stdio.h> #include<conio.h> #include&

Script for email send with multiple attachments using PHP?

We can send mail by Using mail() function.This is a PHP predefined function for sending mail. Also we can send multiple attachment at the same time using php mail function and using php code for multiple files. For sending multiple attachment we

fibonaci series using arrays in Ruby

It is a series of Whole number where we have to find sum of the two preceding numbers. It Begins with 0 and 1, the sequence goes like this 0,1,1, 2, 3, 5, 8, 13, 21, 34, etc. using the formula n = n(-1) + n(-2), where the n(-1) is the the last

Table alias while making joins

While performing joins you need specific columns of the joined tables so for doing that you need to mention the name of the column with their table name.   This task gets tedious because you have to write your table name with every column you

Nudge in API

While writing API services you need to understand what nudge in that actually means if you come across that particular word.   Nudge is nothing but a general message that we sent to another user or group of users.   We can send single n

Use of NULL and zero while writing stored procedures

While writing the stored procedure you always pass the parameters as the input type and the output type according to your need.     So while using these parameters you may notice that if you miss any parameter value during the stored pro

Assign default values to the column

In writing the stored procedure we always need to work with the default value for the proper execution of the programs and the stored procedure we have made for the application.     So for doing it sometimes we have scenarios when we don

How to Create Simple Html File Through PHP Script

This tutorial show's how we can create a simple Html file through PHP script. if($filename == ''){ $filename = 'demo.html'; $writefile = ($filename , 'w'); $content = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http

prev 1 2 156
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: