Posts

Showing posts from February, 2026

PRIDE -Dahlia Ravikovitch

Image
PRIDE - Dahlia Ravikovitch  Poet- Dahila Ravikovitch  Dahila Ravikovitch (November 17,1936-August-21,2005) Born in Ramat Gan,Isral;her father yearly death shaped hair feelings of loss and  longing  Her poetry Moves from lyrical themes to political and families ideas ,often using Biblical reference  Studied literature at hebrew University worked as a journalist and teacher. Poem lines *Even rocks crack, I'm telling you,  and not on account of age.  For years they lie on their backs  in the heat and the cold,  so many years, it almost creates the illusion of calm.  They don't move, so the cracks stay hidden.  A kind of pride.  Years pass over them as they wait.  Whoever is going to shatter them  hasn't come yet.  And so the moss flourishes, the seaweed  whips around,  the sea bursts forth and rolls back -- and still they seem motionless.  Till a little seal comes to rub up against the rocks,  co...

Explain packages in Java discuss access protection and importing packages with example.

 Explain packages in Java discuss access protection and importing packages with example.   Packages in Java – Extended Explanation ✅ What is a Package in Java? A package in Java is a collection of related classes, interfaces, and sub-packages grouped together. 👉 Simple meaning: Package = Folder Classes = Files inside folder It helps to: organize code properly avoid name conflicts provide security (access control) reuse code easily --- 🔹 Types of Packages 1. Built-in (Predefined) Packages Already provided by Java. Examples: java.lang java.util java.io java.sql Example: import java.util.Scanner; --- 2. User-Defined Packages Created by programmer. Example: package mypack; --- 🔹 How to Create a Package? Step 1: Write package statement package mypack; Step 2: Create class package mypack; public class Message {     public void show() {         System.out.println("Hello Nami!");     } } Step 3: Compile javac -d . Message.java 👉 -d . crea...