Skip to main content

Posts

Concept of Object-Oriented Programming Concept

Concept of Object-Oriented Programming Concept Object Oriented Programming is performed by using class and object.  Class is a set of States and behaviors. Class is also known as a blue print of an object. Class is called an Object factory where more than one object is created. The object is used for accessing all the functionality of Class. An example of Class and Object is CAR----> It is a class  Wagon R, Maruti 800, Alto, Seltos, etc are examples of objects. Object-Oriented Principle:- Encapsulation:- It is a process of binding the data and method in a single unit. A general example of encapsulation is Capsules, Bike, Cake, and others where the data is wrapped in a single unit. The Class is also an example of Encapsulation because Class also binds the state and behavior. Abstraction: Abstraction is a process where only essential information is shown for use and unnecessary information about an object is hidden from the user. ATM is an example of Abstraction where users...
Recent posts

Windows RUN Shortcuts Command

Windows RUN  Shortcuts Command ------------------------------------------------------------------------------------------- Control Panel                                     Program Shortcuts control                                                  Control Panel control desktop                                     Display Properties (Personalization) control color                        ...

WHAT IS METAL WHISKERS ??

M E T A L W H I S K E R S   Metal whiskers are tiny hair-like growths that form on metals. When these electrically conductive whiskers appear on electronic assemblies, they can cause shorts or current leakage. The reason for their appearance is still hypothesized, but they are known to form mostly on pure tin or zinc finished surfaces. They can remain undetected, growing slowly out of your connectors until they destroy your cables and harnesses.                                  Metal whiskers may vary in shape and size. Some emerge as straight while others may appear curved, forked, pyramidal, or grooved. Growth time can take anywhere from days to years, and can reach up to 10 mm.                      ...

Learn Programming in UNIX

Q: - Write a program to input two numbers and add them?             gedit add.sh             clear             echo “enter two numbers:”             read a             read b             sum=`expr$a+$b`             echo $sum Syntax for if-else:- (1)          if test condition             then                 ---------                 --...