AI Programming pinned Β«πWelcome toπ An artificial intelligence free resource channel for students and anyone who wants to learn solve problems. β’ C++ β’ Java β’ PHP β’ Oracle β’ C# β’ @freecodecs πPROGRAMMING πCracked SOFTWARE & APPS πTIPS & TRICKS πPROGRAMMING PROJECT ππjoin the channelβ¦Β»
AI Programming via @like
This media is not supported in your browser
VIEW IN TELEGRAM
How to hack saved WiFi password with cmd
π»size= 1. 1MB
π»Duration= 33: second
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
π»size= 1. 1MB
π»Duration= 33: second
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
What Is java?
Java is a popular programming language, created in 1995.
It is owned by Oracle, and more than 3 billion devices run Java.
ππ It is used for:
Mobile applications (specially Android apps)
Desktop applications
Web applications
Web servers and application servers
Games
,Database connection And much, much more!
π Why Use Java?
Java works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.)
It is one of the most popular programming language in the world
It is easy to learn and simple to use
It is open-source and free
It is secure, fast and powerful
It has a huge community support (tens of millions of developers)
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
Java is a popular programming language, created in 1995.
It is owned by Oracle, and more than 3 billion devices run Java.
ππ It is used for:
Mobile applications (specially Android apps)
Desktop applications
Web applications
Web servers and application servers
Games
,Database connection And much, much more!
π Why Use Java?
Java works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.)
It is one of the most popular programming language in the world
It is easy to learn and simple to use
It is open-source and free
It is secure, fast and powerful
It has a huge community support (tens of millions of developers)
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
Java Quickstart
In Java, every application begins with a class name, and that class must match the filename.
Let's create our first Java file, called MyClass.java, which can be done in any text editor (like Notepad).
The file should contain a "Hello World" message, which is written with the following code:
Example
MyClass.java
public class MyClass {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
output:
Hello world
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
In Java, every application begins with a class name, and that class must match the filename.
Let's create our first Java file, called MyClass.java, which can be done in any text editor (like Notepad).
The file should contain a "Hello World" message, which is written with the following code:
Example
MyClass.java
public class MyClass {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
output:
Hello world
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
β‘ public :- again means that anyone can access it.
β‘ static :- means that you can run this method without creating an instance of Main.
β‘ void :- means that this method doesn't return any value.
β‘ main :- is the name of the method.
β‘ System:- is a pre-defined class that Java provides us and it holds some useful methods and variables.
β‘out :- is a static variable within System that represents the output of your program (stdout).
β‘println :- is a method of out that can be used to print a line.
AI Programming @freecodecs
β‘ static :- means that you can run this method without creating an instance of Main.
β‘ void :- means that this method doesn't return any value.
β‘ main :- is the name of the method.
β‘ System:- is a pre-defined class that Java provides us and it holds some useful methods and variables.
β‘out :- is a static variable within System that represents the output of your program (stdout).
β‘println :- is a method of out that can be used to print a line.
AI Programming @freecodecs
π½Object - Objects have states and behaviors. Example: A dog has states
- color, name, breed as well as behaviors β wagging the tail, barking,
eating. An object is an instance of a class.
π»π»π»π»π»π»π»π»π»
π½ Class - A class can be defined as a template/blueprint that describes the
behavior/state that the object of its type support.
Exampleπππ
public class Dog {
String breed;
int age;
String color;
void barking() {
}
void hungry() {
}
void sleeping() {
}
}
A class can contain any of the following variable types.
π»π»π»π»π»π»π»π»π»π»
π½ Local variables - Variables defined inside methods, constructors or blocks
are called local variables. The variable will be declared and initialized within
the method and the variable will be destroyed when the method has completed.
π»π»π»π»π»π»π»π»π»π»
π½ Instance variables - Instance variables are variables within a class but outside any method.
These variables are initialized when the class is instantiated. Instance variables can be accessed
from inside any method, constructor or blocks of that particular class.
π»π»π»π»π»π»π»π»π»
π½ Class variables - Class variables are variables declared within a class, outside any method, with the static keyword.
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
- color, name, breed as well as behaviors β wagging the tail, barking,
eating. An object is an instance of a class.
π»π»π»π»π»π»π»π»π»
π½ Class - A class can be defined as a template/blueprint that describes the
behavior/state that the object of its type support.
Exampleπππ
public class Dog {
String breed;
int age;
String color;
void barking() {
}
void hungry() {
}
void sleeping() {
}
}
A class can contain any of the following variable types.
π»π»π»π»π»π»π»π»π»π»
π½ Local variables - Variables defined inside methods, constructors or blocks
are called local variables. The variable will be declared and initialized within
the method and the variable will be destroyed when the method has completed.
π»π»π»π»π»π»π»π»π»π»
π½ Instance variables - Instance variables are variables within a class but outside any method.
These variables are initialized when the class is instantiated. Instance variables can be accessed
from inside any method, constructor or blocks of that particular class.
π»π»π»π»π»π»π»π»π»
π½ Class variables - Class variables are variables declared within a class, outside any method, with the static keyword.
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
ππππππππππ
A loop statement allows us to execute a statement or group of
statements multiple times and following is the general form of a
loop statement in most of the programming languages
Loop & Description
1 while loopπ½
Repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body.
2 for loopπ½
Execute a sequence of statements multiple times and abbreviates the code that manages the loop variable.
3 do...while loopπ½
Like a while statement, except that it tests the condition at the end of the loop body.
ππΏππΏππΏππΏππΏLoop Control Statements
Loop control statements change execution from its normal sequence. When execution leaves a scope, all automatic objects that were created in that scope are destroyed.
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
A loop statement allows us to execute a statement or group of
statements multiple times and following is the general form of a
loop statement in most of the programming languages
Loop & Description
1 while loopπ½
Repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body.
2 for loopπ½
Execute a sequence of statements multiple times and abbreviates the code that manages the loop variable.
3 do...while loopπ½
Like a while statement, except that it tests the condition at the end of the loop body.
ππΏππΏππΏππΏππΏLoop Control Statements
Loop control statements change execution from its normal sequence. When execution leaves a scope, all automatic objects that were created in that scope are destroyed.
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
ππππππππππ
Enhanced for loop in Java
Syntax
Following is the syntax of enhanced for loop -
for(declaration : expression) {
// Statements
}
ππΏDeclaration - The newly declared block variable, is of a type compatible
with the elements of the array you are accessing.
ππΏExpression - This evaluates to the array you need to loop through. The
expression can be an array variable or method call that returns an array.
π»Example
public class Test {
public static void main(String args[]) {
int [] numbers = {10, 20, 30, 40, 50};
for(int x : numbers ) {
System.out.print( x );
System.out.print(",");
}
System.out.print("\n");
String [] names = {"Nati", "Elsa", "Dagi", "Yonas"};
for( String name : names ) {
System.out.print( name );
System.out.print(",");
}
}
}
Outputπ»π»π»
10, 20, 30, 40, 50,
Nati, Elsa, Dagi, Yonas,
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
Enhanced for loop in Java
Syntax
Following is the syntax of enhanced for loop -
for(declaration : expression) {
// Statements
}
ππΏDeclaration - The newly declared block variable, is of a type compatible
with the elements of the array you are accessing.
ππΏExpression - This evaluates to the array you need to loop through. The
expression can be an array variable or method call that returns an array.
π»Example
public class Test {
public static void main(String args[]) {
int [] numbers = {10, 20, 30, 40, 50};
for(int x : numbers ) {
System.out.print( x );
System.out.print(",");
}
System.out.print("\n");
String [] names = {"Nati", "Elsa", "Dagi", "Yonas"};
for( String name : names ) {
System.out.print( name );
System.out.print(",");
}
}
}
Outputπ»π»π»
10, 20, 30, 40, 50,
Nati, Elsa, Dagi, Yonas,
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
β―how to edit the source code of any applicationβ―
πSource code is the back-end of an application which interact with the user by means of user interface
πadvantage of source code editing
- modify app name
- modify app icon
-change background image
-remove advertisement
-remove unwanted permission
- change application audio,picture,language
-make an app move to sd card
π in order to do all of this thing u need an app called "apk editor" and sometimes rooting is needed
βοΈπmodify app name
1,πselect target app by clicking on"select apk from app" & then select "apk creator"
2,πthen click at "full edit"
3,πthen click on app name and give it the name that u want
4,πfinally click "save button"
π if u want to see the modified app just uninstall the previous app and install the saved app
βοΈπRemove ad
1,π Select target app by clicking at 'Select Apk from App', then selecting ur desire app, and then click at 'Full Edit'.
2,π Click 'Resource' tab after editable resource shown, and then enter 'layout' folder by clicking at the item. Click 't' and it will show the content of activity_main.xml.
3,π remove the AdActivity in AndroidManifest.xml:
4,πAfter all the modifications, click save button in the upper right corner. After a while, we will be told that the modified apk is in some place.
βοΈπMake an app move to sd card
1,π Select target app by clicking at 'Select Apk from App', then selecting apk creator, and then click at 'Full Edit'.
2,π Click 'Manifest' tab, and then click at the line of manifest (Generally should be line 2)
3,π Click at '+' icon to add a key and value (android:installLocation="auto")
4,π change 'auto' to
'preferExternal') and then click 'OK'; when return to previous dialog, click 'Save'
5,π Click save button in the upper right corner. After a while, we will be told that the modified
apk is in some place.
β³οΈwe uploaded the applications on our channel
βββββ’β’ββββββ’β’βββ
π£βΉshare &Join Us
ππΎππΎππΎ
@freecodecs
@freecodecs
@freecodecs
ββ β’β’β’ β β’β’βββ’β’β’ββββ
πSource code is the back-end of an application which interact with the user by means of user interface
πadvantage of source code editing
- modify app name
- modify app icon
-change background image
-remove advertisement
-remove unwanted permission
- change application audio,picture,language
-make an app move to sd card
π in order to do all of this thing u need an app called "apk editor" and sometimes rooting is needed
βοΈπmodify app name
1,πselect target app by clicking on"select apk from app" & then select "apk creator"
2,πthen click at "full edit"
3,πthen click on app name and give it the name that u want
4,πfinally click "save button"
π if u want to see the modified app just uninstall the previous app and install the saved app
βοΈπRemove ad
1,π Select target app by clicking at 'Select Apk from App', then selecting ur desire app, and then click at 'Full Edit'.
2,π Click 'Resource' tab after editable resource shown, and then enter 'layout' folder by clicking at the item. Click 't' and it will show the content of activity_main.xml.
3,π remove the AdActivity in AndroidManifest.xml:
4,πAfter all the modifications, click save button in the upper right corner. After a while, we will be told that the modified apk is in some place.
βοΈπMake an app move to sd card
1,π Select target app by clicking at 'Select Apk from App', then selecting apk creator, and then click at 'Full Edit'.
2,π Click 'Manifest' tab, and then click at the line of manifest (Generally should be line 2)
3,π Click at '+' icon to add a key and value (android:installLocation="auto")
4,π change 'auto' to
'preferExternal') and then click 'OK'; when return to previous dialog, click 'Save'
5,π Click save button in the upper right corner. After a while, we will be told that the modified
apk is in some place.
β³οΈwe uploaded the applications on our channel
βββββ’β’ββββββ’β’βββ
π£βΉshare &Join Us
ππΎππΎππΎ
@freecodecs
@freecodecs
@freecodecs
ββ β’β’β’ β β’β’βββ’β’β’ββββ
This media is not supported in your browser
VIEW IN TELEGRAM
How to delete shortcut virus and unhide:file using cmd
π»size= 2.9MB
π»Duration= 42: second
AI Programming @freecodecs
As Always :
Have a Lit π₯ Figuring out π€
π»size= 2.9MB
π»Duration= 42: second
AI Programming @freecodecs
As Always :
Have a Lit π₯ Figuring out π€
AI Programming pinned Β«πWelcome toπ An artificial intelligence free resource channel for students and anyone who wants to learn solve problems. β’ C++ β’ Java β’ PHP β’ Oracle β’ C# β’ @freecodecs πPROGRAMMING πCracked SOFTWARE & APPS πTIPS & TRICKS πPROGRAMMING PROJECT ππjoin the channelβ¦Β»
Everything-Setup@freecodecs.exe
1.3 MB
Best search tool for windows
π½AI programming
βββββ’β’ββββββ’β’βββ
π£βΉshare &Join Us
ππΎππΎππΎ
@freecodecs
@freecodecs
ββ β’β’β’ β β’β’βββ’β’β’ββββ
π½AI programming
βββββ’β’ββββββ’β’βββ
π£βΉshare &Join Us
ππΎππΎππΎ
@freecodecs
@freecodecs
ββ β’β’β’ β β’β’βββ’β’β’ββββ