EvoNext
LESSON 7: LOOPS AND NESTED LOOPS β³οΈLooping in java helps by facilitating the execution of of a set of instructions repeatedly while some condition evaluates to true. 1. While-loops: allows the code to be executed repeatedly based onβ¦
LESSON 8: WRAPPER CLASSES IN JAVA
β Wrapper classes provide a way to use primitive data types (int, boolean, etc..) as objects.
β³οΈSometimes you must use wrapper classes, for example when working with Collection objects, such as ArrayList, where primitive types cannot be used (the list can only store objects):
example:
Creating Wrapper Objects
To create a wrapper object, use the wrapper class instead of the primitive type. To get the value, you can just print the object:
Example
https://t.me/PROGRAMINGLANGUAGES1
β Wrapper classes provide a way to use primitive data types (int, boolean, etc..) as objects.
β³οΈSometimes you must use wrapper classes, for example when working with Collection objects, such as ArrayList, where primitive types cannot be used (the list can only store objects):
example:
ArrayList<Integer> myNumbers = new ArrayList<Integer>(); // ValidCreating Wrapper Objects
To create a wrapper object, use the wrapper class instead of the primitive type. To get the value, you can just print the object:
Example
public class Main {
public static void main(String[] args) {
Integer myInt = 5;
Double myDouble = 5.99;
Character myChar = 'A';
System.out.println(myInt);
System.out.println(myDouble);
System.out.println(myChar);
}
}
//
Share for programmer friends!>https://t.me/PROGRAMINGLANGUAGES1
π1
Q1: Which of the following is the correct syntax for writing a methode with parameters?
Anonymous Quiz
13%
public static void example(x:int, y:int) {...}
16%
public static void example(x , y) {...}
60%
public static void example( int x , int y) {...}
11%
public static void example( int x, y) { ...}
π1
Q2:Which of the following is true about Javaβs enhanced for statement? Choose one.
Anonymous Quiz
28%
the loop can iterate directly over java.util.*;
30%
the loop does not provide access to the index of the current element
16%
the loop supports deletion of the current element during execution of the loop
26%
Early termination of the loop via a break statement is prohibited.
π₯°1
EvoNext
The following code will not compile or run. WHY?
Q3: Choose the correct Answer: for the above correct question
Anonymous Quiz
10%
Missing curly brackets
15%
Constructors have wrong name( s)
73%
Can not create two identical constructors
3%
Pay rate should be float
π5
EvoNext
LESSON 8: WRAPPER CLASSES IN JAVA β
Wrapper classes provide a way to use primitive data types (int, boolean, etc..) as objects. β³οΈSometimes you must use wrapper classes, for example when working with Collection objects, such as ArrayList, where primitiveβ¦
LESSON 9: CONSTRUCTORS in Java
β³οΈ A constructor in Java isa special method that is used to initialize objects. The constructor is called when an object of a class is created. It can be used to set initial values for object attributes.
How Constructors are Different From Methods in Java?
β€οΈ Constructors must have the same name as the class within which it is defined while it is not necessary for the method in Java.
β€οΈConstructors do not return any type while method(s) have the return type or void if does not return any value.
β€οΈConstructors are called only once at the time of Object creation while method(s) can be called any number of times.
Example: look the sample code having two constructors;
share for your programmer friends:
https://t.me/PROGRAMINGLANGUAGES1
β³οΈ A constructor in Java is
How Constructors are Different From Methods in Java?
β€οΈ Constructors must have the same name as the class within which it is defined while it is not necessary for the method in Java.
β€οΈConstructors do not return any type while method(s) have the return type or void if does not return any value.
β€οΈConstructors are called only once at the time of Object creation while method(s) can be called any number of times.
Example: look the sample code having two constructors;
package ubJapro1;Β»
//import java.util.*;
public class Firsta {
public static void main(String[] args) {
Firsta2 firs = new Firsta2("ashe",34,76.4);// constructor 1
Firsta2 firs2 = new Firsta2("asegid",32,70.4);// constructor 2
System.out.println(firs.name+" is your name.");
firs2.home();
}
}
EvoNext
LESSON 9: CONSTRUCTORS in Java β³οΈ A constructor in Java is a special method that is used to initialize objects. The constructor is called when an object of a class is created. It can be used to set initial values for object attributes. How Constructorsβ¦
LESSON 10: Creating objects in java
β³οΈAn object is a basic unit of Object-Oriented Programming and represents the real life entities. It consists of:-
βοΈState means the attributes.
βοΈBehavior means the methods of an object.
βοΈIdentity means the unique name to an object.
the four ways of creating objects in java
1. using new key word
//
/
it is is technique of reading an object from the saved state in a file.
β example using the first way:
https://t.me/PROGRAMINGLANGUAGES1: thanks
β³οΈAn object is a basic unit of Object-Oriented Programming and represents the real life entities. It consists of:-
βοΈState means the attributes.
βοΈBehavior means the methods of an object.
βοΈIdentity means the unique name to an object.
the four ways of creating objects in java
1. using new key word
//
Test t = new Test();
2. Using Class.forName( String className) method; Test obj = (Test)Class.forName("com.p1.Test").newInstance();
3. using clone() method/
Test t = new Test();
Test t2 = (Test)t1.clone();
4. Deserializationit is is technique of reading an object from the saved state in a file.
β example using the first way:
class Animal {}
class Dog extends Animal {}
class Cat extends Animal {}
public class Test
{
// using Dog object
Animal obj = new Dog();
// using Cat object
obj = new Cat();
}
SUPPORT US BY JOINING AND SHARING;https://t.me/PROGRAMINGLANGUAGES1: thanks
π4
Q10: which one is not true about instance variable?
Anonymous Quiz
28%
there is exactly one copy of the this variable in extistnce
25%
their value is unique to each instance class
23%
they should not be declared with the static key word
14%
they have no default value before the first use
9%
NONE
π4
1.Object o = new Object(); 2. Object obj = o; Β»>In the cases given above, identify their difference?
Anonymous Quiz
16%
"o" and "obj" are Objects
39%
"o" is an Object, but "obj" is object variable.
31%
both "o" and "obj" are object variables
14%
NONE
π4π₯1
LEARNtoCODE@javaQuestionsP1.pdf
47.3 KB
Description: Theory_part practice for java
file size: 47.3 kb only
Prepared by: Learn to code();
πJava lessons continue on our channel..
Join and share : https://t.me/PROGRAMINGLANGUAGES1
file size: 47.3 kb only
Prepared by: Learn to code();
πJava lessons continue on our channel..
Join and share : https://t.me/PROGRAMINGLANGUAGES1
π1
ππGREAT OFFERπππ
ARE YOU FRESHMAN STUDENTβοΈ
Are you looking for freshman reading materials?
then look at this gift for π―% free:
- modules
- exams[ mid, final] of different universities
- reference books
- and different materials in voice and videos
.... are some of them.
first semister courses:-
β General physics
β mathematics for natural
β mathematics for social
β logic and critical thinking
β communicative english
β Psychology
β Geography
second semister courses:
β Emerging
β general biology
β applied mathematics
β programming I
β civcs and moral education
β economics
β anthropology
β communicative english II
....much more!
https://t.me/exbost
https://t.me/exbost
https://t.me/exbost
join learn to code
https://t.me/exbost
SHARE FOR YOUR FRIENDS!γ½οΈ
ARE YOU FRESHMAN STUDENTβοΈ
Are you looking for freshman reading materials?
then look at this gift for π―% free:
- modules
- exams[ mid, final] of different universities
- reference books
- and different materials in voice and videos
.... are some of them.
first semister courses:-
β General physics
β mathematics for natural
β mathematics for social
β logic and critical thinking
β communicative english
β Psychology
β Geography
second semister courses:
β Emerging
β general biology
β applied mathematics
β programming I
β civcs and moral education
β economics
β anthropology
β communicative english II
....much more!
https://t.me/exbost
https://t.me/exbost
share for your friendhttps://t.me/exbost
https://t.me/exbost
join learn to code
https://t.me/exbost
SHARE FOR YOUR FRIENDS!γ½οΈ
β€2π1
EvoNext
LESSON 10: Creating objects in java β³οΈAn object is a basic unit of Object-Oriented Programming and represents the real life entities. It consists of:- βοΈState means the attributes. βοΈBehaviorβ¦
LESSON 11: ENCAPSULATION
β Encapsulation is defined as the wrapping up of data under a single unit. It is the mechanism that binds together code and the data it manipulates.
Another way to think about encapsulation is, it is a protective shield that prevents the data from being accessed by the code outside this shield.
Following is an example that demonsrates how to achieve encapsualtion in java:
/* File name : EncapTest.java */
join: Β»https://t.me/PROGRAMINGLANGUAGES1
β Encapsulation is defined as the wrapping up of data under a single unit. It is the mechanism that binds together code and the data it manipulates.
Another way to think about encapsulation is, it is a protective shield that prevents the data from being accessed by the code outside this shield.
Following is an example that demonsrates how to achieve encapsualtion in java:
/* File name : EncapTest.java */
public class EncapTest {
private String name;
private String idNum;
private int age;
public int getAge() {
return age;
}
public String getName() {
return name;
}
public String getIdNum() {
return idNum;
}
public void setAge( int newAge) {
age = newAge;
}
public void setName(String newName) {
name = newName;
}
public void setIdNum( String newId) {
idNum = newId;
}
}
// more organized source codes at: https://t.me/java_learntocodejoin: Β»https://t.me/PROGRAMINGLANGUAGES1
Telegram
Front End Development
Front End Development tutorials
https://t.me/PROGRAMINGLANGUAGES1
yt >https://youtu.be/TssMp7T0Ur4
https://t.me/PROGRAMINGLANGUAGES1
yt >https://youtu.be/TssMp7T0Ur4
π2
Q!!: Which among the following best describes encapsulation?
Anonymous Quiz
13%
a way of combining various data members into a single unit
18%
a way of combining various member functions into a single unit
51%
a way of combining various data members and member functions into a single unit
18%
NONE
πDear members our channel, How are you doing? π
i hope , you all doing well.π
Our CEO π€ has great intention to help you all in all. He's doing his best to help our family, members of this channel. If any of you have intention to work for shared futureπͺ and have good inclination in the staff we engaged in feel free to inbox us.
He prepared member channels for simplifying amount of posts in this channel so,you can use one of them as important:
For Java Β» https://t.me/java_learntocode
For html Β» https://t.me/learncodea
For SQL Β» https://t.me/SQL_learn_to_code {coming soon}
and Meet skilled programmers here >π http://t.me/learntocodecpp
" Thanks for your support"
i hope , you all doing well.π
Our CEO π€ has great intention to help you all in all. He's doing his best to help our family, members of this channel. If any of you have intention to work for shared futureπͺ and have good inclination in the staff we engaged in feel free to inbox us.
He prepared member channels for simplifying amount of posts in this channel so,you can use one of them as important:
For Java Β» https://t.me/java_learntocode
For html Β» https://t.me/learncodea
For SQL Β» https://t.me/SQL_learn_to_code {coming soon}
and Meet skilled programmers here >π http://t.me/learntocodecpp
" Thanks for your support"
π1
βπ»βπ»......πππ......βπ»βπ»
Q: Identify the corrected definition of a package.
Q: Identify the corrected definition of a package.
Anonymous Quiz
29%
a collection of classes
11%
a collection of tools
52%
a collection of classes and interfaces
8%
a collection of interfaces
think-python-2nd.pdf
4.2 MB
Description: material for Python for those only , asking python booksβΌοΈ
Size: 4.2 MB
credit: Mohammedππ
πhttps://t.me/PROGRAMINGLANGUAGES1
Size: 4.2 MB
credit: Mohammedππ
πhttps://t.me/PROGRAMINGLANGUAGES1