Archive for the ‘PHP Tutorials’ Category
- In: CSS Tutorials | How to's | HTML Tutorials | HTML5 Tutorials | IoT Tutorials | J2EE Tutorials | J2ME Tutorials | Java Tutorials | JavaScript Tutorials | NetBeans Tutorials | PHP Tutorials | Raspberry Pi Tutorials | Tips & Tricks | Video Tutorials
- Comments Off on How to change editor full screen in NetBeans IDE?
Objectives :
- How to change editor full screen in NetBeans IDE?
NetBeans IDE is having a new and great feature where we can full screen the code editor window.
This small video tutorial shows how to change editor full screen in NetBeans IDE?
Being a trainer, I need to share screen with code and sometime only code nothing else. This is one of the most useful feature for me while teaching Java technologies and UI technologies such as HTML5, CSS, JS, etc. This is why I love NetBeans IDE a lot.
Hope this tutorial is helpful for you as well.
Hello World in different languages
Posted July 6, 2012
on:- In: C Language Source Code | C Language Tutorials | COBOL Source Code | COBOL Tutorials | CPP Source Code | CPP Tutorials | CSS Code | CSS Tutorials | How to's | HTML Code | HTML Tutorials | Java Source Code | Java Tutorials | JavaScript Tutorials | PHP Source Code | PHP Tutorials | Web Design Tutorials
- 4 Comments
Objectives :
* How to write Hello World in Java?
* How to write Hello World in C?
* How to write Hello World in PHP?
* How to write Hello World in C++?
* How to write Hello World in JavaScript?
* How to write Hello World in HTML?
* How to write Hello World in CSS?
* How to write Hello World in COBOL?
Java
class HelloWorld { public static void main(String args[]) { System.out.println(“Hello World!”); } }
C
#include #include void main() { clrscr(); printf(“Hello World!”); getch(); }
C++
#include #include void main() { clrscr(); cout<getch(); }
CSS
body:before { content: “Hello World”; }
COBOL
**************************** IDENTIFICATION DIVISION. PROGRAM-ID. HELLO ENVIRONMENT DIVISION. DATA DIVISION. PROCEDURE DIVISION. MAIN SECTION. DISPLAY “Hello World!” STOP RUN ****************************
HTML
<html> <head> <title>Hello World Example</title> </head> <body> Hello World! </body> </html>
JavaScript
document.write("Hello World");
PHP
<!--?php echo ‘Hello World!’ ?-->
Linux Shell Script
echo "Hello World !"
Enjoy coding!
Posted from WordPress for Android