|
Given Number |
8 |
3 |
5 |
4 |
7 |
2 |
6 |
|
Ascending order |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
Hence, there is one such digit.
|
Given Number |
8 |
3 |
5 |
4 |
7 |
2 |
6 |
|
Ascending order |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
Hence, there is one such digit.
No discussions yet. Be the first to start!
You must be logged in to participate in the discussion.
login Login to DiscussWhich dialog box opens using the F12 key in Ms Word?
The correct answer is the save as.
Key Points
Additional Information
Void pointer: It is a specific pointer type – void * – a pointer that points to some data location in storage, which doesn’t have any specific type. Void refers to the type.
Other Important Points
Dangling pointer: A pointer pointing to a memory location that has been deleted (or freed) is called dangling pointer.
Uninitialized pointer : An uninitialized pointer stores an undefined value. A null pointer stores a defined value, but one that is defined by the environment to not be a valid address for any member or object.
NULL Pointer : NULL Pointer is a pointer which is pointing to nothing. In case, if we don’t have address to be assigned to a pointer
Match the following
|
Scientist |
Contribution |
|
I. Charles Robert |
1. Origin of life on Earth |
|
II. Gregor Johann |
2. Theory of evolution |
|
III. J.B.S. Haldane |
3. Law of inheritance |
|
Scientist |
Contribution |
|
I. Charles Robert |
2. Theory of evolution |
|
II. Gregor Johann |
3. Law of inheritance |
|
III. J.B.S. Haldane |
1.Origin of life on Earth |
The correct answer is Virus.
Concept:
Classes in java are the collection of objects which has some similar properties. A class in java contains fields, methods, constructors, blocks, interfaces.
Explanation:
Everything is associated with classes and objects. An object is an instance of the class which has some state and behavior.
An object class(java.lang.object) is the parent class of all the java classes. It can be used when we do not know about the type of the object. By having the object as the super class , without knowing the type we can pass around objects using the object declaration.