Nashorn: JavaScript Engine for Java SE 8

In java 8, a new scripting engine was introduced that was developed by Oracle and named Nashorn. It allows the programmer to code in JavaScript rather than java using the dynamic coding capabilities that language support. It is completely new engine and it replaces the old Rhino engine.

Nashorn: JavaScript Engine for Java SE 8

Android Newbie: Quick Solution for Fragments API

Google updates its android sdk very often. They include many things and fragment api is one of them. It is very interesting and helpful api which will let you create dynamic things. But if you are new to android you might be confused with it...Read more...

Android Newbie: Quick Solution for Fragments API

Loops Control Statements

It is a short article on the control statements that can be used with loops. Basically there are two keywords that can be used with loops for special behavior.

Loops Control Statements

Loop Types and their Usage

As you know the code within braces is known as block of code and there will be times when you want your block of code to be repeated multiple time. In general the code executes only once and sequentially so if you want it execute multiple times then either you have to write it multiple times or use the idea of Loops.

Loop Types and their Usage

Operator and Expressions

In your programming you are going to need or build expressions which will help you in your calculation. For example you calculate average of some number, for that purpose you are going to build expression. Expressions are built with operators and operands. Operators are symbols or functions that tells compiler to perform specific mathematical or logical operations and operands are something on which operators work.

Operator and Expressions

Decision Making: Switch Statements and tertiary Operator

Switch statements are another way of handling decision making in your program. Switch statements work just like if-else statements. The reason when they are used is when you have a bunch of if else if statements and it becomes difficult to read then you it change your code to use Switch statements.

Decision Making: Switch Statements and tertiary Operator

Descision making: if else statements

Conditions are something that is inescapable. Whenever you create a program, you are very likely to make decisions in it or let your users make some decisions.

Descision making: if else statements

Validating form using Jquery

HTML form can be validated with different methods like using simple JavaScript If Else statements or Ajax and if using any server side language like PHP it can be validated with PHP but if the simplest method where you don not have to write a lot of statements and still can use a lot of options is using JQuery Validation Plugin...Continue reading

Validating form using Jquery

Constants, Literals and Enumerations in C#

In this tutorial we are going to understand the importance of constants, literals and enums. Const and enums are C# constructs which are used to make code more readable and easy to maintain...Continue reading

Constants, Literals and Enumerations in C#

How to export SQL table in csv with PHP

In this post we will see how to export SQL table in csv format with PHP in simplest way. First connect to your server and database as usual and write down following code to export your desired table in csv format...Continue reading

How to export SQL table in csv with PHP

Page 1 of 4