How Java Works

In Java programming language, all source code is written first in plain text files ending with the .java extension. Those source files are then compiled into .class files by the java compiler. A .class file doesn't contain code that is native to your processor, it instead contains bytecodes. Bytecode is the machine language of Java Virtual Machine(Java VM). The Java launcher tool then runs your program with an instance of the Java Virtual Machine.

C# - Operators and Expressions

Operators are used to process the data. Expressions are created by combining the operators with variables and constants.

For example:

int number1, number2, sum;
number1 = 10;
number2 = 20;
sum = number1 + number2;

 In the last statement, two variables using the + symbol. The + is a operator also there are many operators in c#.

Data Types and Variables

 

A data type specifies whether or not a variable can store a number, a single character or text. Variables are names given to the memory location for storing data. Data Types are used to specify the types of values related to variables.

How To Use TinyURL API In VB.NET

TinyURL Icon Ultimate Programming TutorialsTinyURL is a URL shortening service a web service that provides short URLs for redirection of long URLs. This can be achieved very easily in PHP, I posted a PHP snippet about this you could reach it from here. Last year I created a TinyURL shortener I named it TinyURL Desktop App you can download it from here if you want. I found the source code of TinyURL Desktop App just now that's why I am writing this hehe. I used Devcomponents in my TinyURL Desktop App also I didn't handle exceptions because I was a noob then :0.

Thinkspace Seeks To Launch Software Development To High Schools Worldwide

Thinkspace is an organization created by sixteen year old James Anderson, Thinkspace seeks to "inspire the next generation of app developers" through coding zones worldwide. Thinkspace was formally launched by James Anderson this month(september) with the campuses in Plymouth and Northern Ireland. James Anderson came up with the concept for Thinkspace once he became frustrated with UK's educational system's approach to computer information technology related topics. Instead of plan to change the curriculum(course of study), Anderson wanted to figure around it by making Thinkspaces among schools.

How To Make Awesome Collages

Collagerator helps you to make stunning photograph collages by using your photograph collections. This software comes in handy for those of you that simply cannot stop taking photographs of everything around you. Collagerator can offer you with an easy way to create and produce a collage of them thus you may undoubtedly surprise everyone.

Snippet : Using Regular Expressions in Java

This snippet helps you to use Regular Expression(Regex) in Java.

Snippet : Get ASCII Value For Every Characters

This snippet helps you to get the ASCII value for every characters.

How To Execute Shell Commands and Print Results in Java

Java Command Shell,bash script -eq, bash script -ne, best way to learn java, execute shell commands, execute shell commands java, get runtime, host runtime, java, java learning, oracle sql plsql, print results, tutorial,
There are many ways to execute shell commands and print results in java I guess, the famous and the most used way is Runtime.getRuntime().exec you can find a good explanation for that from here. Coming to the point i am using the same way but little different! I use BufferedReader,InputStreamReader for simplicity and I can't make it much advanced. On the main event I have created a String where you put your command with the second event it executes the command and prints the result before I start I would like to give some credits to luismcosta.