answersLogoWhite

0


Best Answer

You may be reaching for "fraction".

User Avatar

Wiki User

10y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

i have that same question for homework... I'm sorry I can't help, I'm looking it up myself tryna find answers.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

A number that compares part of an object or a set with the whole object set is called a subset. It refers to a partial order on sets.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

even number

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

Whole number

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the number that compares part of an object or set with the whole object or set called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

When is a number called a 'Sunny' number?

A number is said to be 'sunny' when, 1 added to that number, the square root of it becomes a whole number...


Is 2.5 an integer?

No, but 2 and 3 are.No because integers are whole numbers


Why not sending arefrence to copy constructor will cause an infinite loop?

A copy constructor gets called any time an object needs to be copied. Unlike in some of the newer languages like Java, you can chose to pass objects either by reference or by value. When you pass by reference, only the address of the function is copied. However, if you pass by value, the whole object must be copied. In order to copy the object, the copy constructor will get called. If the copy constructor's parameter is not a reference, then the object will get passed by value. When the object gets passed by value, it needs to get copied so it will call the same copy constructor. Because the object is still being passed by value it'll call itself again to create a copy of itself. The copy constructor will continue to call itself until the stack overflows.


How does java pass primitive types and objects?

Java uses only pass by value. Primitive data types are passed purely as pass by value whereas for objects a value which is the reference to the object is passed. Hence the whole object is not passed but its reference gets passed. All modifications to the object in the method would modify the object in the Heap.


What are static objects in java?

There is no separate entity as a static object in java. The static keyword in java is used to signify that the member (either a variable or a method) is not associated to an object instance of the class. It signifies the fact that the member belongs to the class as a whole. The words static and objects are opposites of one another so you cannot have a static object. However, you can declare an object as a class level variable which could be referred to as a static object but it will be referred to as a static or class variable and not a static object.