List Headline Image
Updated by social-3 on Feb 26, 2016
 REPORT
social-3 social-3
Owner
10 items   1 followers   0 votes   49 views

Coding Cabinet | Central Hub for Coders

Coding Cabinet is questions and answers community of a wide range of programming languages such as PHP, .NET, ASP, Java, Ruby on Rails as well as Android and iOS development.

Ask a Questions - Share Your Knowledge | Coding Cabinet

Coding Cabinet is Q&A Community of a wide range of programming languages such as PHP, .NET, ASP, Java, Ruby on Rails as well as Android & iOS development. 

Variable Declaration and Scope in PHP

Local variable which are accessible only with in the function its scope only with in the function brackets. See the Example:

How to Create a Webpage with JavaScript and HTML

The post is about creating a job portal front-end using HTML and JavaScript. Below is complete code that you can use for creating a basic job portal front-end.

How to Use Session in Multiple Languages?

The session is an object which stored the local data, it stores the data for only one session. The data is deleted when the user closes the specific browser tab.

Essentials of Typography

The bad use of typography can destroy a whole nice design. The biggest mistakes that people make, is when they use too many typefaces and styles. Try to limit the parts to two or three different type faces and styles. This means that the body should all be one font and size. Choose one header and stick to it, maybe a subhead as well. Also, if you want to add two or three different font styles, then try to choose the fonts that are very different from each other. Using two similar fonts can look like you made a mistake and accidently chose the wrong font.

C++ Loop and Its Types

Loops are used to repeat a block of code, a loop is a sequence of instructions that is repeated continuously until a final requirement is reached.

Switch Statement in C#

It is a control statement that selects a switch section to execute from the set of statements. The switch statement is contain set of Case statements and each case contain set of Statements.

IF .. Else if..Else Statements in C#

static void Condition()
{
 
int marks = 57;
if (marks < 50)
{
Console.WriteLine("Student is fail");
}
else
{
Console.WriteLine("Student is pass and his/her Result is = ", marks);
}
}

Decision Making / Selection Statements In C#

Statements controls the flow of programming language. These are like instruction in program which controls the program according to the condition (weather the condition is true or false).

C# – Loop and Its Types

A loop is a fundamental idea of programming that is commonly used in writing programs. In computer programming, a loop is a sequence of instructions that is repeated continuously until a final requirement is reached. Usually, the process can be done with different ways such as getting an item of data and change, and then some status is checked whether a status as a counter has reached a certain number. If not, the next instruction in sequence is an instruction to return to the first instruction in the sequence and repeat the sequence. If it has reached to the requirement, then the further statement falls through to the next sequential instruction or branch outside the loop.