Game Preview

Elementary Concept of Object and Class (Grade 9)

  •  English    15     Public
    Java - Grade 9
  •   Study   Slideshow
  • The class is a _____________________ for the objects.
    Blueprint /Template
  •  10
  • The __________________ can be refer as object factory.
    Class
  •  10
  • The process of creating an object is known as _______________
    instantiation.
  •  10
  • Class is a _____________ define datatype.
    user
  •  10
  • The ____________ is a real entity having characteristics and behaviour.
    Object
  •  10
  • _____________ is example of primitive data type
    String, int, double,
  •  10
  • ______________ is an example of non-primitive datatype.
    Class
  •  10
  • Write a Java statement to create an object S1 for a class Student.
    Student S1 = new Student();
  •  10
  • Write a Java statement to create an object p1 for a class parking
    parking p1 = new parking ()
  •  10
  • ____________ keyword is used foe dynamic memory allocation.
  •  10
  • ___________ is the other name of data members.
    attribute,characteristics
  •  10
  • The object is also known as ___________ of a class
    instance
  •  10
  • True or False: An object is a blueprint of a class.
    False
  •  10
  • Can a class have more than one object? (Yes/No)
    Yes
  •  10
  • How many objects can be created from a class?
    As many as you want, Infinite
  •  10