Hardware data storage device developed by Iomega that functions
like a Standard 1.44" floppy drive. What makes the Iomega zip drive
unique is its capability to hold up to 100 MB of data or 250 MB of data on new
drives. Iomega Zip Drives became very popular in late 1990s, however, became
less popular as users needed larger storage capabilities. This drive was later
replaced by larger and cheaper CD-R and CD-RW drives and discs.
In the picture to the right, is an example of an Iomega Zip diskette. This
diskette is bigger than the standard floppy diskette and is made out of a much
harder plastic.
Object-Oriented Programming Object Oriented programming is a programing model that is based upon data and object. Classes Classes are the blueprint of objects. Now you will think about what actually blueprints are. Blueprints are actually a design or plan to build something. Let's take an example like the map is detail plan of house classes are detail plan in Object-Oriented programming. let's give you an example of a class on java so that you can unferstand. public class Car { int horsePower; String name; String color; String Company; } public class Sample { public static void main(String[] args) { Car car; Car mehran; } } Class name always start with capital letters . It is a good practice to name classes . We will later learn how this is good. So in the above class Car ...

Comments
Post a Comment