OriginCodeAcademy / Cohort10

Projects, code tests and resources for the 10th cohort of Origin Code Academy
4 stars 2 forks source link

17-VehicleManager-Backend #121

Open sabrinasimeroth opened 7 years ago

sabrinasimeroth commented 7 years ago
  1. Where can I find your repository? (Paste the url of your repository below) https://github.com/sabrinasimeroth/vehiclemanager-backend/tree/master/VehicleManager/VehicleManager.API
  2. Describe the difference between "Code First" and "Database First" in relation to Entity Framework. With code first your hand coded models become your database. The exact files that you're building are what generate the database design.
  3. Describe the difference between Static and Dynamic polymorphism in relation to C#. In static polymorphism, the response to a function is determined at the compile time. In dynamic polymorphism, it is decided at run-time
  4. Describe the difference between a Class and an Object in C#. An object is basically a block of memory that has been allocated and configured according to the blueprint. A program may create many objects of the same class. A class is a construct that lets you define the behavior and data or a type.