EvoNext
1.79K subscribers
272 photos
16 videos
266 files
484 links
Download Telegram
πŸ‘1
ppt for java. @AAUπŸ”–πŸ’»πŸ’»πŸ€³
EvoNext pinned Β«ppt for java. @AAUπŸ”–πŸ’»πŸ’»πŸ€³Β»
βœ‹Hello , dear members of our channel how are doing? As many of you requested us ,we have finished the preparation to start lecture notes and lessons on java for beginners 😱only.
What about seniors.? 😷Idk
🎀 The lessons will be given as easy to understand and help to get basic concepts of java therefore please help you loved one to join this channel and flourish programming basics.

πŸ’»The lessons are given by 😎CS students and if you have any points to include leave #on_the comment site.

The lessons will be started from the coming Monday.πŸ“†

#let`s code together'🎲


This link is very importantπŸ˜πŸ˜€πŸ˜‚
https://t.me/PROGRAMINGLANGUAGES1
EvoNext pinned Β«βœ‹Hello , dear members of our channel how are doing? As many of you requested us ,we have finished the preparation to start lecture notes and lessons on java for beginners 😱only. What about seniors.? 😷Idk 🎀 The lessons will be given as easy to understand…»
πŸ˜‚πŸ˜‚the number of members of this channel is growing even faster than Chinese economy

That`s highly motivating!!!! Thank you very much
πŸ‘1
Learn to code @java terminologies.pdf
431.8 KB
this pdf gives you short cut to cover necessary terminologies about java.

πŸ‘ŒπŸ’»πŸ’»βœοΈπŸ”–

size: 432kb;
prepared by: Ltc
why this: helps to be familiar with the terminologies of java
πŸ’»LESSON 1✍️
INTRODUCTION TO JAVA
Java is one of the most popular and widely used programming languages.

Java has been one of the most popular programming languages for many years.
Java is Object Oriented. However, it is not considered as pure object-oriented as it provides support for primitive data types (like int, char, etc)
The Java codes are first compiled into byte code (machine-independent code). Then the byte code runs on Java Virtual Machine (JVM) regardless of the underlying architecture.
Java syntax is similar to C/C++.πŸ‘‰πŸΏ But Java does not provide low-level programming functionalities like pointers. Also, Java codes are always written in the form of classes and objects.
Java is used in all kinds of applications like🀳 Mobile Applications (Android is Java-based), desktop applications, web applications, client-server applications, enterprise applications, and many more.
πŸ€”When compared with C++, Java codes are generally more maintainable because Java does not allow many things which may lead to bad/inefficient programming if used incorrectly. πŸ”–For example, non-primitives are always references in Java. So we cannot pass large objects (like we can do in C++) to functions, we always pass references in Java. One more example, since there are no pointers, bad memory access is also not possible.
When compared with Python, Java kind of fits between C++ and Python. The programs are written in Java typically run faster than corresponding Python programs and slower than C++. Like C++, Java does static type checking, but Python does not.

#code1
//a java program to print "learn to code"
public class LTC {
public static void main(String args[])
{
System.out.println("Learn To Code");
}
}


https://t.me/PROGRAMINGLANGUAGES1
πŸ‘1πŸ”₯1
πŸ’»LESSON2πŸ”–βœοΈ
#Compiling a Program

Compiling converts the source files that you write into bytecode that can be executed by a
Java Virtual Machine. The source file has a #.java extension. It also defines a public class of the same name. For example, the class, 'SayHello', must be saved in a file called SayHello.java.


To compile the SayHello source code, perform the following steps:
πŸ‘‰πŸΏ1. Go to the directory where the source code files are stored.
πŸ–‡2. Enter the following command for each .java file that you want to compile (Note that the
.java extension is required.):
Example: javac SayHello.java
After the compilation has finished, and assuming no compilation errors have occurred, you
should have a new file called <classname>.class in your directory for each source code
file that you compiled.
Example: SayHello.class


REMARK:πŸ§ πŸ‘

A Java program can output data in many ways. Here are some
examples:
β€’ To a file or database
β€’ To the console
β€’ To a webpage or other user interface
[we'll see how? ...]
....CONTINUES..



https://t.me/PROGRAMINGLANGUAGES1
πŸ‘1