be blogger Danish Zehen, who recently participated in Vikas Gupta's Ace of Space, passed away in a car accident today morning. He was also a lifestyle blogger and was quite a hit on social media having close to 855k followers on his Instgram page. This news has not just disturbed his fans but also shook the host of his show Vikas Gupta. After learning about the horrific car accident, Vikas posted a heartfelt note for him. Reportedly, Danish was returning to Mumbai after attending a wedding when his car crashed near Vashi. Danish had a few days back shot for Ace of Space as wild card contestant. Vikas Gupta mourned the contestant's death and shared a picture of Danish. "Danish tu humesha Zehen main Rahega, how do I tell the other houseguests that you aren't coming back. You are the coloured hair king of AceOfSpace #Coolestbadboi You looked like a baby as I saw you lying down, thinking you could wake up anytime. You have long gone but you shall remain always in my ...

C is a computer programming language. That means that you can use C to create lists of instructions for a computer to follow. C is one of thousands of programming languages currently
in use. C has been around for several decades and has won widespread acceptance because it gives programmers maximum control and efficiency. C is an easy language to learn. It is a bit more cryptic in its style than some other languages, but you get beyond that fairly quickly.
C is what is called a compiled language. This means that once you write your C program, you must run it through a C compiler to turn your program into an executable that the computer can run (execute). The C program is the human-readable form, while the executable that comes
Read This:- What is Java Programming Language ?
out of the compiler is the machine-readable and executable form. What this means is that to write and run a C program, you must have access to a C compiler. If you are using a UNIX machine (for example, if you are writing CGI scripts in C on your host's UNIX computer, or if you are a student working on a lab's UNIX machine), the C compiler is available for free. It is called either "cc" or "gcc" and is available on the command line. If you are a student, then the school will likely provide you with a compiler -- find out what the school is using and learn about it. If you are working at home on a Windows machine, you are going to need to download a free C compiler or purchase a commercial compiler. A widely used commercial compiler is Microsoft's Visual C++ environment (it compiles both C and C++ programs). Unfortunately, this program costs several hundred dollars. If you do not have hundreds of dollars to spend on a commercial compiler, then you can use one of the free compilers available on the Web. See http://delorie.com/djgpp/ as a starting point in your search.
You need to first a Compiler You can Download free
Turbo C++ Compiler for Windows Click Here Link.
Download Here
Related:- 1.8 Heart failer India Hackers You Should Know
2. How to Fix Copy of Windows not genuine Problem in Windows 7,8,8.10 in One Click
3. What is Operating System (OS) & Types of Operating System
4.How To Hack WPA/WPA2 Wi-Fi With Kali Linux & Aircrack-ng 2018
5. The 20 Most Expensive Keywords in Google AdWords Advertising 2018 [Hindi]
6. Microsoft Office & Word shortcut keys
Related:- 1.8 Heart failer India Hackers You Should Know
2. How to Fix Copy of Windows not genuine Problem in Windows 7,8,8.10 in One Click
3. What is Operating System (OS) & Types of Operating System
4.How To Hack WPA/WPA2 Wi-Fi With Kali Linux & Aircrack-ng 2018
5. The 20 Most Expensive Keywords in Google AdWords Advertising 2018 [Hindi]
6. Microsoft Office & Word shortcut keys
What is Java
Java is a programming language and a platform.
Java is a high level, robust, secured and object-oriented programming language.
Platform: Any hardware or software environment in which a program runs, is known as a platform. Since Java has its own runtime environment (JRE) and API, it is called platform.
Java Platforms / Editions
There are 4 platforms or editions of Java:
1) Java SE (Java Standard Edition)
It is a java programming platform. It includes Java programming APIs such as java.lang, java.io, java.net, java.util, java.sql, java.math etc. It includes core topics like OOPs, String, Regex, Exception, Inner classes, Multithreading, I/O Stream, Networking, AWT, Swing, Reflection, Collection etc.
2) Java EE (Java Enterprise Edition)
It is an enterprise platform which is mainly used to develop web and enterprise applications. It is built on the top of Java SE platform. It includes topics like Servlet, JSP, Web Services, EJB, JPA etc.
3) Java ME (Java Micro Edition)
It is a micro platform which is mainly used to develop mobile applications.
4) JavaFx
It is used to develop rich internet applications. It uses light-weight user interface API.
Prerequisite
To learn Java, you must have the basic knowledge of C/C++ programming language.
Audience
Our Java programming tutorial is designed to help beginners and professionals.
Problem
We assure that you will not find any problem in this Java tutorial. But if there is any mistake, please post the problem in contact form.
Related:-
7. tricks and hacks to speed up Android in Just Minutes
8.What are the F1 through F12 keys? how to use
9. Unix and Linux shortcut keys
10. how to Activate Windows 7,8,8.1,10 or Microsoft Office in one Minute Without Product Keys
11. z-shadow Easily Hack Facebook Account in Few steps and Minutes
12. Keyboard shortcuts in Windows
8.What are the F1 through F12 keys? how to use
9. Unix and Linux shortcut keys
10. how to Activate Windows 7,8,8.1,10 or Microsoft Office in one Minute Without Product Keys
11. z-shadow Easily Hack Facebook Account in Few steps and Minutes
12. Keyboard shortcuts in Windows
Java Example
Let's have a quick look at java programming example. A detailed description of hello Java example is given in next page.
1. class Simple{
2. public static void main(String args[]){
3. System.out.println("Hello Java");
4. }
5. }
Where it is used
According to Sun, 3 billion devices run java. There are many devices where Java is currently used. Some of them are as follows:
1. Desktop Applications such as acrobat reader, media player, antivirus etc.
2. Web Applications such as irctc.co.in, javatpoint.com etc.
3. Enterprise Applications such as banking applications.
4. Mobile
5. Embedded System
6. Smart Card
7. Robotics
Types of Java Applications
There are mainly 4 types of applications that can be created using java programming:
1) Standalone Application
Standalone applications are also known as desktop applications or window-based applications. These are traditional software that we need to install on every machine. Example of standalone applications are: Media player, antivirus etc. AWT and Swing are used in java for creating standalone applications.
2) Web Application
An application that runs on the server side and creates dynamic page, is called web application. Currently, servlet, jsp, struts, spring, hibernate, jsf etc. technologies are used for creating web applications in java.
3) Enterprise Application
An application that is distributed in nature, such as banking applications etc. is called enterprise application. It has the advantage of high level security, load balancing and clustering. In java, EJB is used for creating enterprise applications.
4) Mobile Application
An application that is created for mobile devices. Currently Android and Java ME are used for creating mobile applications.
Comments
Post a Comment