je suppose que tu es la parce-que vous souhaitez télécharger une vidéo que votre ami(e) a publié sur Facebook, n’est-ce pas? Vous vous demandez comment faire? Ce n’est pas difficile du tout.Je vais partager quelque astuces sur les services en ligne ainsi que les logiciels...
mardi 9 avril 2013
vendredi 1 mars 2013
3 نصائح أساسية .. لتجنب إختراق حسابك في الفيسبوك مستقبلاً
3 نصائح أساسية .. لتجنب إختراق حسابك في الفيسبوك مستقبلاً
كثيراً منا يملك حساباً على الشبكة الإجتماعية Facebook .. و التي تحوي العديد من معلومات عن حياتنا و صورنا و أصدقائنا و غيرها .. لذلك يعد خسارة حسابنا على Facebook أمراً خطيراً إلى حد ما .. مما قد يسبب مشاكل لنا و لأصدقائنا من ناحية الخصوصية...
lundi 3 décembre 2012
Java Variable Types

In Java, all variables must be declared before they can be used. The basic form of a variable declaration is shown here:
type identifier [ = value][, identifier [= value] ...] ;
The type is one of Java's datatypes. The identifier is the name of the variable. To declare...
dimanche 2 décembre 2012
Java Basic Data Types (L4)

Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in memory.
Based on the data type of a variable, the operating system allocates memory and decides what can be stored in the reserved memory. Therefore, by assigning...
Java Objects and Classes (L3)

Java is an Object Oriented Language. As a language that has the Object Oriented feature Java supports the following fundamental concepts:
Polymorphism
Inheritance
Encapsulation
Abstraction
Classes
Objects
Instance
Method
Message Parsing
In this chapter we will look into the concepts Classes...
Java Basic Syntax (L2)

When we consider a Java program it can be defined as a collection of objects that communicate via invoking each others methods. Let us now briefly look into what do class, object, methods and instant variables mean.
Object - Objects have states and behaviors. Example: A dog has states-color,...