this is the continue of ch3
download it now
http://www.box.net/shared/jrf4dy4yo2
with my best wishes
Sunday, November 25, 2007
Wednesday, November 21, 2007
Ch3: Op-Amp (2 nd Year)
This is the 1st lecture of OP-AMP
download from this link
http://www.box.net/shared/rij3c1ju9t
with my best wishes
download from this link
http://www.box.net/shared/rij3c1ju9t
with my best wishes
Monday, November 19, 2007
JAVA LECTURE 1 (SL110)
I will introduce the java programming language SL 110 for who are interested with java
download this link
http://www.box.net/shared/o3k8mxv3q7
with my best wishes
download this link
http://www.box.net/shared/o3k8mxv3q7
with my best wishes
Wednesday, November 14, 2007
Cont.CH2:Introduction to Microprocessor-Based Control
the lecture 2 of ch:2 Introduction to Microprocessor-Based Control is prepared and ready to
down load
go to this link and download it now
http://www.box.net/shared/yprpxdk0vd
with my best wishes
down load
go to this link and download it now
http://www.box.net/shared/yprpxdk0vd
with my best wishes
Sunday, November 11, 2007
Cont.CH4 :Resistive Displacement Measurement
lecture 2 of ch4 is done
download it now from this link
http://www.box.net/shared/2mnh5ghkeg
with my best wishes
download it now from this link
http://www.box.net/shared/2mnh5ghkeg
with my best wishes
Friday, November 9, 2007
CH2:Introduction to Microprocessor-Based Control
this is the 2nd chapter for the 2 year of computer and control system in subject(اجهزة قياس ومستشعرات)
download from this link:
http://www.box.net/shared/44bnz9muyy
with my best wishes
download from this link:
http://www.box.net/shared/44bnz9muyy
with my best wishes
Monday, November 5, 2007
Introduction for the 1st meaning of networking
for who are interesting in networks
this is the 1st video file for teaching networks in Arabic language
download this file
http://www.box.net/shared/pk1qpyg83c
with my best wishes
this is the 1st video file for teaching networks in Arabic language
download this file
http://www.box.net/shared/pk1qpyg83c
with my best wishes
Sunday, November 4, 2007
Learning Flash MX
For all interesting with Flash MX i found this book that is the first step to learn flash
(Beginner book )
Download this book for m this link to start!
http://www.box.net/shared/y1nx9f0rv3
(Beginner book )
Download this book for m this link to start!
http://www.box.net/shared/y1nx9f0rv3
Tuesday, October 30, 2007
CH4 :Resistive Displacement Measurement
this Chapter for 3rd year of (Computer & Control System)
go to this link to download this chapter
http://www.box.net/shared/4uisx8rz9t
with my best wishes
go to this link to download this chapter
http://www.box.net/shared/4uisx8rz9t
with my best wishes
Friday, October 26, 2007
Introduction to Control Systems
The 1st Chapter in (اجهزة قياس ومستشعرات) for 2nd year of (Computer & Control System)
go to this link to download this chapter
http://www.box.net/shared/z4hq3t0vet
with my best wishes
go to this link to download this chapter
http://www.box.net/shared/z4hq3t0vet
with my best wishes
Sunday, September 9, 2007
SoftWare Engineering Community
Hi guys
We are prepared for introducing the first Communinty that can help every engineer by teaching courses in IT(information Technology) such as
1- J2SE(JAVA STANDARD EDITION)
2-J2EE(JAVA ENTERPRISE EDITION)
3-ORACLE DEVELOPER
4-ORACLE ADMINISTRATION
5-LINUX
6-C#
7-SISCO(CCNA,CCNP)
8-VISIUAL BASIC
The instructor that teaching this courses are certified in these fields , we didnt care with money but we care with porjects that can we are to do in the end of these cousres (this is our target);
We have three goals:
1-Real Applications(Projects)
2-Excellent Students of these Courses we will work with us and we can help them to find jobs.
3-Less Money
We have alse discount in these courses ;
Note: the group that will take course and didnt make projects
this group must forget us because we didnt care with them, & they cant take any course with us again.
we will inform about this Community soooooooooooooooooooooon;
Signature:
SEC(SoftWare Engineering Community )
BYE.
We are prepared for introducing the first Communinty that can help every engineer by teaching courses in IT(information Technology) such as
1- J2SE(JAVA STANDARD EDITION)
2-J2EE(JAVA ENTERPRISE EDITION)
3-ORACLE DEVELOPER
4-ORACLE ADMINISTRATION
5-LINUX
6-C#
7-SISCO(CCNA,CCNP)
8-VISIUAL BASIC
The instructor that teaching this courses are certified in these fields , we didnt care with money but we care with porjects that can we are to do in the end of these cousres (this is our target);
We have three goals:
1-Real Applications(Projects)
2-Excellent Students of these Courses we will work with us and we can help them to find jobs.
3-Less Money
We have alse discount in these courses ;
Note: the group that will take course and didnt make projects
this group must forget us because we didnt care with them, & they cant take any course with us again.
we will inform about this Community soooooooooooooooooooooon;
Signature:
SEC(SoftWare Engineering Community )
BYE.
Thursday, June 21, 2007
Object Oriented Progamming
This is my 2nd Session for JAVA
This time we will talk about the most imporatant thing for all programming language
is(OOP) Object Oriented Progamming
The OOP approach acheive 3 concepts
1-Encapslution
2-Inheritance
3-Polymorphism
we will explain each one , we begin by the 1St
1-Encapslution:
the Data is capsluted in one thing called Object and acheive two things are
*Modularity(قائم بذاتة)
the data is collecting in one capsolue (each object has its own properties )
ex: class Demo{
public String name;
float cost;
}
*Data hiding :
(prevent some one from using some properties) & this is done by make some
of ur properties is Private and this is useful for more secure
ex: class Demo{
private String name;
}
2- Inheritance:
the benefits of inheritance *reduce code *data generalization
there are two class one is called Super class(parent) and other is called Sub class (child)
the parent class contain all common properties
the inheritance make by extends keyword
ex: class Parent{
String title;
String name;
}
class Child extends Parent{
int id;
}
3-Polymorphism:
(تعدد الاشكال لشئ واحد)(صلصال)
used with inheritance
ex: OverRide
This time we will talk about the most imporatant thing for all programming language
is(OOP) Object Oriented Progamming
The OOP approach acheive 3 concepts
1-Encapslution
2-Inheritance
3-Polymorphism
we will explain each one , we begin by the 1St
1-Encapslution:
the Data is capsluted in one thing called Object and acheive two things are
*Modularity(قائم بذاتة)
the data is collecting in one capsolue (each object has its own properties )
ex: class Demo{
public String name;
float cost;
}
*Data hiding :
(prevent some one from using some properties) & this is done by make some
of ur properties is Private and this is useful for more secure
ex: class Demo{
private String name;
}
2- Inheritance:
the benefits of inheritance *reduce code *data generalization
there are two class one is called Super class(parent) and other is called Sub class (child)
the parent class contain all common properties
the inheritance make by extends keyword
ex: class Parent{
String title;
String name;
}
class Child extends Parent{
int id;
}
3-Polymorphism:
(تعدد الاشكال لشئ واحد)(صلصال)
used with inheritance
ex: OverRide
Saturday, June 16, 2007
I will introduced the first session of J2SE
Sections
*SoftWare Language
*Interpreter VS Compiler
* Java as platform independent
Sections
*SoftWare Language
*Interpreter VS Compiler
* Java as platform independent
SoftWare Language
the programming language divided into 5 Generation langauge related to appraoch of computer system & human related
1st GL: like bianry code (1,0)
2nd GL: like Assembly
3rd GL:high level language like Java,C#
4th GL: quary language like SQL
5th GL: Artificial language like prolog
*Interprter:(المترجم) like in some conferences each one of the audience has one like interpreter to interprete the words
in other words : the interpreter interprte each instruction (instruction by instruction)
Compiler : convert to machine laguage that the computer can inderstood it
C or Java ----->compiler --------> low level(machine language)
for whole the unit of the program
*what is the meaning of platform ?
platform:is combination of the H.W + S.W(Processor + O.S)
like X86 + windowsxp or
java is platform independent the meaning of this is not depend on the platform
the C is plat form dependent to introduce that
code C ---->compiler ------>file .exe -----> interprter
the java
------>windows+X86
code Java ---->compiler ---->Byte Code ---->JVM ------>solaris+SPARK
Byte Code: like machine code
JVM : java virtual machine (convert byte code to any platform)
so the java is platform independent beacuse of JVM
To talk about JVM we must introduce the knowledge about JDK , JRE
JDK:Java development kit
Consists of
1-JRE
2- compiler
JRE: Java runtime Enviroment
consists of
1-JVM
2-interpreter
API(Application Programming Interface)
it is library contains alot of classes & interfaces
like GUI(grafical user Interface)
Thursday, June 14, 2007
Subscribe to:
Posts (Atom)


