C++ syllabus for test on 22nd Sept.

  • Variables
  • Datatypes
  • Operators
  • Loops
  • Conditional Statements
  • Functions
  • Pointers
  • const
  • Arrays (single dimensional, multi-dimensional)
  • Access specifiers
  • Scope of a variable
  • OOPS
    • Advantages of OOPS
    • Classes
    • Objects
    • Constructors and Destructors
    • Inheritance
    • Polymorphism
      • Overloading
      • Overridng
    • Abstraction
    • Encapsulation

VB .NET Portion for class test on 19/9/2016

The test will be taken from the following topics:

  • Introduction to the .NET Framework
  • Variables and Data types
  • Operators
    • Precedence of Operators
  • Casting
    • Automatic (Narrowing and Widening)
    • Explicit Casting
  • Control Flow
    • If Else
    • Looping
      • For
      • For Each
      • Do While
      • Do Unitl
      • While
    • Select Case
    • GOTO (no exception handling with GOTO)
    • With
    • Exit
    • Continue
    • Return
  • Scope of a variable
    • Block Scope
    • Procedure Scope
    • Module Level scope
    • Class Scope
    • Namespaces
  • Access Modifiers
    • Public
    • Private
    • Protected
    • Friend
    • Protected Friend
  • Exception Handling
    • Try-Catch-Finally
    • Try-Catch-Catch (Multiple Catch statements)
    • Throw
    • Custom Exceptions
  • OOPS
    • Constructors and Destructors (Finalize, Dispose)
    • Shared members
    • Stuctures
    • Modules
    • Encapsulation
      • Properties
      • Getters and Setters
    • Inheritance
      • Types of Inheritance
    • Interfaces
    • NotInheritable, MustInherit
    • Polymorphism
      • Overloading
      • Overriding (Overridable, Overrides keywords).