Test Your Basic C# Knowledge Here

6 Questions | Attempts: 435
Share

SettingsSettingsSettings
Test Your Basic C# Knowledge Here - Quiz

C# online test


Questions and Answers
  • 1. 
    C# è un linguaggio di programmazione di basso livello?
    • A. 

      True

    • B. 

      False

  • 2. 
    All the Interface Members are by default Private and Abstract
    • A. 

      True

    • B. 

      False

  • 3. 
    Can we use Field in Interface
    • A. 

      Yes

    • B. 

      No

  • 4. 
    Static method can Access ____________
    • A. 

      Only non-static variables

    • B. 

      Only static variables

    • C. 

      Both static and non-static variables

    • D. 

      It wont access any variables

    • E. 

      None of the Above

  • 5. 
    When will the constuctor invoked?
    • A. 

      Before the Creation of Object

    • B. 

      After the Creation of Object

    • C. 

      At the time of object Creation

    • D. 

      We need to Call Explicitly by Class Name

    • E. 

      None of the Above

  • 6. 
    Syntax to create an Object
    • A. 

      Classname objectname = new classname

    • B. 

      Classname objectname = new classname()

    • C. 

      Classname = new classname();

    • D. 

      Classname objectname = new classname(objectname)

    • E. 

      Classname objectname = new classname();

Back to Top Back to top