๐ฝ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
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
How to know Facebook Password easily(like places in internet cafe)
1๏ธโฃ. goto internet cafe
2๏ธโฃ. use a public computer
3๏ธโฃ. Open Chrome goto setting>advanced>Password and forms>manage saved passwords and then u can see usrname and password
On Firefox goto facebook.com then u will see a lock icon up there on the website text, click on that then u will see
www.facebook.com >
Tracking Protection and
Permissions
and there is and arrow(> sign) click on that>more information> view saved passwords> search for www.facebook.com and u will see saved passwords
For Biadu and Yandex refer to Chrome setting
For safari
Go to your Safari menu bar, click Safari > Preferences then select the Autofill tab. Click the Edit buttton to the right of User names and passwords to see stored User names. In the Keychain Access window select Passwords on the left.
Share To Help Us
โโโโโขโขโโโโโโขโขโโโ
๐ฃโนshare &Join Us
๐๐พ๐๐พ๐๐พ
@freecodecs
@freecodecs
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
1๏ธโฃ. goto internet cafe
2๏ธโฃ. use a public computer
3๏ธโฃ. Open Chrome goto setting>advanced>Password and forms>manage saved passwords and then u can see usrname and password
On Firefox goto facebook.com then u will see a lock icon up there on the website text, click on that then u will see
www.facebook.com >
Tracking Protection and
Permissions
and there is and arrow(> sign) click on that>more information> view saved passwords> search for www.facebook.com and u will see saved passwords
For Biadu and Yandex refer to Chrome setting
For safari
Go to your Safari menu bar, click Safari > Preferences then select the Autofill tab. Click the Edit buttton to the right of User names and passwords to see stored User names. In the Keychain Access window select Passwords on the left.
Share To Help Us
โโโโโขโขโโโโโโขโขโโโ
๐ฃโนshare &Join Us
๐๐พ๐๐พ๐๐พ
@freecodecs
@freecodecs
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
TeraCopy_Pro_v3.2_Activated_@freecodecs.zip
4.6 MB
TeraCopy is a freemium file transfer utility designed as an alternative for the built-in Windows Explorer file transfer feature. Its focus is data integrity, file transfer reliability and the ability to pause or resume file transfers
๐ฎ activated
๐ฝ size 4.6 mb
Share To Help Us
โโโโโขโขโโโโโโขโขโโโ
๐ฃโนshare &Join Us
๐๐พ๐๐พ๐๐พ
@freecodecs
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
๐ฎ activated
๐ฝ size 4.6 mb
Share To Help Us
โโโโโขโขโโโโโโขโขโโโ
๐ฃโนshare &Join Us
๐๐พ๐๐พ๐๐พ
@freecodecs
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
duplicate-file-finder@freecodecs.exe
10.7 MB
Duplicate File Finder is a powerful tool to find duplicate files and quickly get rid of useless iterative data on your pc. It helps you to find all the duplicate files and folders and, as a result, you can recover gigabytes of disk space and organize your files cleanly
๐ฎ activated
๐ฝ size 10.7 mb
Share To Help Us
โโโโโขโขโโโโโโขโขโโโ
๐ฃโนshare &Join Us
๐๐พ๐๐พ๐๐พ
@freecodecs
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
๐ฎ activated
๐ฝ size 10.7 mb
Share To Help Us
โโโโโขโขโโโโโโขโขโโโ
๐ฃโนshare &Join Us
๐๐พ๐๐พ๐๐พ
@freecodecs
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
KMSAuto net@freecodecs.zip
5.5 MB
KMS for Windows 7/8/10 is a great activator tool that will use to activate your Windows or Office activation. So, you must activate to unlock these premium features which are available. KMSauto can help you to activate your OS and Office. It can make the premium version of Windows or Office.
๐ฎ activated
๐ฝ size 5.5 mb
Share To Help Us
โโโโโขโขโโโโโโขโขโโโ
๐ฃโนshare &Join Us
๐๐พ๐๐พ๐๐พ
@freecodecs
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
๐ฎ activated
๐ฝ size 5.5 mb
Share To Help Us
โโโโโขโขโโโโโโขโขโโโ
๐ฃโนshare &Join Us
๐๐พ๐๐พ๐๐พ
@freecodecs
โโ โขโขโข โ โขโขโโโขโขโขโโโโ
bigstock-Programming-Web-Banner-Best-P-258081862.jpg
302.5 KB
A programming language is a computer language engineered to create a standard form of commands. These commands can be interpreted into a code understood by a machine. Programs are created through programming languages to control the behavior and output of a machine through accurate algorithms, similar to the human communication process.
A programming language is also known as a programming system, computer language or computer system.
AI Programming @freecodecs
For this time:
Have a Lit ๐ฅ Figuring out ๐ค
A programming language is also known as a programming system, computer language or computer system.
AI Programming @freecodecs
For this time:
Have a Lit ๐ฅ Figuring out ๐ค