Friday, March 27, 2015

Thursday, March 26, 2015

Wednesday, March 25, 2015

Monday, March 9, 2015

Cloud Computing Explained

A Convergence of Technologies Cloud Computing came about with the convergence of technologies. Of course, you need hardware. Relatively inexpensive servers and storage makes data centers possible. Increased availability of high-speed Internet connections means these data centers...

Two-Tier and Three-Tier Architecture

In this article we are going to discuss about the two-tier and three-tier architecture. Two-Tier Architecture: The two-tier architecture is like client server application. The direct communication takes place between client and server. There is no intermediate between client...

Friday, March 6, 2015

Magic code in JavaScript without looping

<html> <head> </head> <body> <script type="text/javascript"> function doFirst(){   document.write(" magic! ");   doSecond(); } function doSecond(){   document.write(" work! ");   doFirst(); }      ...

Thursday, March 5, 2015

Top 10 Jobs in Information Technology

Information technology – often shortened to just IT – is a buzz phrase you’ve probably heard ad nauseum if you happen to work with IT personnel or went to school for anything related to computers. IT workers are highly specialized in their field, which is probably why they’re...

Sunday, March 1, 2015

Embedded Java Server Page(JSP) with HTML

Java Server Page(jsp) typically it is use instate of php  but the functions are same with html, while we developing jsp we have to  have fair knowledge about java and html when we develop jsp page we have to insert java code which is embedded with html, let's try this simple jsp function, how it is work? using html,java basic requirements:  Eclipse Netbeans File...