ar
Feedback
EvoNext

EvoNext

الذهاب إلى القناة على Telegram
1 777
المشتركون
-124 ساعات
-177 أيام
-3330 أيام
أرشيف المشاركات
EvoNext
1 777
✍🏻✍🏻......🍃🍃🍃......✍🏻✍🏻 Q: Identify the corrected definition of a package.
Anonymous voting

EvoNext
1 777
😍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 the engaged feel free to inbox us. He prepared member channels for simplifying amount post in this channel so,you can use one of the 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"

EvoNext
1 777
Q!!: Which among the following best describes encapsulation?
Anonymous voting

EvoNext
1 777
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 */
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_learntocode join: »https://t.me/PROGRAMINGLANGUAGES1

EvoNext
1 777
+1
6th_Ed_Thomas_M_Connolly,_Carolyn_E_Begg_Database_Systems_A_Practical.pdf41.28 MB

EvoNext
1 777
MATERIAL: for Both Fundamental and Advanced database🔱⚜️

EvoNext
1 777
🎁🎁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
share for your friend
https://t.me/exbost https://t.me/exbost join learn to code https://t.me/exbost SHARE FOR YOUR FRIENDS!〽️

EvoNext
1 777
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

EvoNext
1 777
1.Object o = new Object(); 2. Object obj = o; »>In the cases given above, identify their difference?
Anonymous voting

EvoNext
1 777
Q10: which one is not true about instance variable?
Anonymous voting

EvoNext
1 777
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 //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. Deserialization it 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

EvoNext
1 777
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 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();
   
  }
  
    
    
    
      
  }


» share for your programmer friends: https://t.me/PROGRAMINGLANGUAGES1

EvoNext
1 777
sticker.webp0.99 KB

EvoNext
1 777
sticker.webp0.63 KB

EvoNext
1 777
Q3: Choose the correct Answer: for the above correct question
Anonymous voting

EvoNext
1 777
The following code will not compile or run. WHY?
The following code will not compile or run. WHY?

EvoNext
1 777
Q2:Which of the following is true about Java’s enhanced for statement? Choose one.
Anonymous voting

EvoNext
1 777
Q1: Which of the following is the correct syntax for writing a methode with parameters?
Anonymous voting

EvoNext
1 777
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: ArrayList<Integer> myNumbers = new ArrayList<Integer>(); // Valid 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
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

EvoNext
1 777
Short notes for Java. @more lessons for java @Learn_to_Code