answersLogoWhite

0


Best Answer

Class Variable is a subset of Variables.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In oops what is the difference between class variable and variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Inner class oops?

Inner class oops is a program. This program is smaller class within a bigger class.


What is an anonymous class in oops?

class is defined in the class


Difference between conventional programming and object oriented programming?

diff between oops and conventional programming


What is class in oops?

class is a user defind datatype


What is difference between c and oops?

C is a programming language, oops is what you say when you realize you were wrong in something. Note: Some programming languages are known as object-orient languages, C is not one of them, but some derivatives of it (C++, C#, Java) are.


What is data type of class in oops?

user defined


Describe about storage allocation and scope of global extern static local and register variables?

Global Varible: The variable which is declared as "Global" one : having the preveleges to use and access that variable in any class and object( means any where in the program) just like PUBLIC keyword in OOPS concepts. Static Variable : If we declare a variable as Static , then it wont have the permission to access that variable through out the program and u have to use it inside the class or object which u declared itself. All the Best Annapurna


Main deffrent between c and cpp?

The main difference between c and c++ is the concept of 'Object Oriented Programming' (OOPS). Thus c does not have the benefits of oops like: 1. abstraction 2. encapsulation 3. inheritance 4. polymorphism etc.


What is single inheritance in oops?

Single Inheritance is the concept of deriving a class properties from a single base class


What is actual meaning of class in oops?

Class in oops is a thing that hava no physical existence, it is just a property of any object.object is recognised by a class. we can understand it by this way that "animal" is a class but "tiger" is an object "animal" have not any physical existence but "tiger" is physically exist but recognised by the word "animal".


Can you create a class for black oops online?

yes, but you have to earn trophies first


What is object in oops?

An instance of a class that holds state. Operations defined by it's class (or superclasses) can be performed on it. Now you may wonder what a class is :).