Microtek Learning Logo

10975: Introduction to Programming Training

4.5
(4.5)

10975: Introduction to Programming Training is aimed at professionals to help them develop a better understanding of the foundations of computer programming using MS Visual Studio.

  • Accredited By :
  • Category : Visual Studio

Course Price : $2595 Per Participant

Course Description

Note: This course has been retired by Microsoft. The replacement course is 55337: Introduction to Programming Training

10975: Introduction to Programming Training is aimed at professionals to help them develop a better understanding of the foundations of computer programming using MS Visual Studio.

The focus of this technical course is on the core programming concepts such as data types, decision structures, computer storage, and repetition by utilizing loops.

Our enterprise training program is best for companies and organizations. It introduces object-oriented programming, which covers encapsulation, classes, and polymorphism.

This training program is suitable for individuals who have just stepped into the software development industry and want to learn more about programming fundamentals.

After finishing this course, professionals will know how to elaborate on the core computer data structures and build and utilize classes in a computer program.

This training is designed based on the objectives of the course variant 10975A.

Microsoft Course Microsoft Course
100+

Microsoft Courses

experience experience
20+

Years of Experience

learners learners
95K+

Global Learners

What you will learn

  • green-tick Explaining binary.
  • green-tick Creating and using constants and variables in programs.
  • green-tick Explaining to create and use program functions.
  • green-tick Creating and using decision structures with computer programs.
  • green-tick Creating and using loops in a computer program.
  • green-tick Explaining pseudocode role in programming.
  • green-tick Explaining computer data structures basic like arrays, stacks, lists and queues.
  • green-tick Implementing object-oriented programming concepts.
  • green-tick Creating and using classes within computer programs.
  • green-tick Implementing encapsulation, polymorphism, and inheritance.
  • green-tick Describing the BCL in .NET Framework.
  • green-tick Explaining concepts of application security.
  • green-tick Implementing I/O in a computer program.
  • green-tick Identifying applications performance considerations.
  • green-tick Explaining the fundamentals of core programming like computer processing and storage.
  • green-tick Identifying errors in applications and explaining the debugging process of an application and handling errors.

Prerequisites

Before going to this course, understudies must have: 

  • Capacity to utilize PCs to begin projects, open and spare records, explore application menus and interfaces 
  • Capacity to comprehend legitimate ideas, for example, examinations 
  • Comprehend number hypothesis 
  • Capacity to make, comprehend, and take after organized headings or well-ordered systems 
  • Capacity to comprehend and apply unique ideas to solid illustrations

Who should attend this course?

This course is designed for people new to software development and for those who are looking to understand the basics of programming.

Students or individuals wanting a change of career but have no programming experience whatsoever can apply for the course and begin a new journey to the center of programming fundamentals.

Microsoft Certified Partner

Microtek Learning is a Microsoft Certified Partner for Learning Solutions. This class uses official Microsoft courseware and will be delivered by a Microsoft Certified Trainer (MCT).

Schedules

Oops! For this course, there are currently no public schedules available. Clicking on "Notify Me" will allow you to express your interest.

For dates, times, and location customization of this course, get in touch with us.

You can also speak with a learning consultant by calling 800-961-0337.

Curriculum

This module provides background and foundational information on how computers process information, discusses the different types of applications that a programmer might be creating, and then provides information on how code is compiled and interpreted by a computer.

  • Computer Data Storage and Processing
  • Application Types
  • Application Life-Cycle
  • Code Compilation
  • Lab: Thinking Like a Computer

    After completing this module, students will be able to:

  • Describe computer data storage and processing concepts
  • Describe application types
  • Describe the lifecycle of an application
  • Describe code compilation
  • This module covers programming language syntax and the importance of using good syntax and following the syntax rules for the chosen language. This module also discusses the core data types and how to store these data types in computer memory by using variables and constants.

  • Syntax
  • Data Types
  • Variables and Constants
  • Lab: Working with Data Types

    After completing this module, students will be able to:

  • Define syntax
  • Explain the different types of core data used in programs
  • Declare and use variables and constants in a computer program
  • This module covers how code is executed in a computer program, such as top to bottom, in structured programming and branching in code execution. The module teaches these concepts through the use of functions, decision structures, and looping constructs.

  • Introduction to Structured Programming Concepts
  • Introduction to Branching
  • Using Functions
  • Using Decision Structures
  • Introducing Repetition
  • Lab: Creating Functions, Decisions, and Looping

    After completing this module, students will be able to:

  • Describe structured programming
  • Create and use functions in your code
  • Create and use decision structures
  • Create and use looping structures
  • This module introduces the concept of an algorithm by examining a daily routine such as a morning routine for getting up and going to work, outlining all the steps required including the decisions to be made as the routine progresses. The module also discusses how to translate these set of steps into pseudo code for evaluation of the algorithm that will be translated into actual code.

  • Understand How to Write Pseudo Code
  • Algorithm Examples
  • Introduction to Data Structures
  • Lab: Working with Algorithms and Data Structures

    After completing this module, you will be able to:

  • Transfer problem statements into pseudo code
  • Create algorithms
  • Translate pseudo code into programming code
  • Create simple algorithms in code
  • Create data structures to store data
  • This module helps students understand that errors are a part of programming and they must understand how to anticipate errors, handle those errors in code, and present a good user experience with a program. This module introduces structured exception handling as the mechanism to deal with errors.

  • Introduction to Program Errors
  • Introduction to Structured Error Handling
  • Introduction to Debugging in Visual Studio
  • Lab: Implementing Debugging and Error Handling

    After completing this module, students will be able to:

  • Implement structured exception handling
  • Debug applications by using Visual Studio 2013
  • This module covers an introduction to the concepts related to object-oriented programming (OOP). The content has been split across two modules with this module focusing on basic OOP concepts that will provide sufficient knowledge to understand complex data structures starting with structs and then moving onto classes. This module helps the students gain an understanding of how to encapsulate data and related functionality within a class.

  • Introduction to Complex Structures
  • Introduction to Structs
  • Introduction to Classes
  • Introducing Encapsulation
  • Lab: Implementing Complex Data Structures

    After completing this module, students will be able to:

  • Create and use structure types
  • Create and use basic class files
  • Choose when to use a struct vs a class
  • This module teaches students about inheritance and polymorphism in classes and function overloading. Function overloading and polymorphism can go hand-in-hand as often times when you inherit from a class, you want to override or change the existing behavior to suit the needs of you class. The module also provides an introduction to the base class library in the .NET Framework so that students can start to think about the existence of functionality in other class files and how they can search the .NET Framework to find this functionality and take advantage of it.

  • Introduction to Inheritance
  • Introduction to Polymorphism
  • Introduction to the .NET Framework and the Base Class Library
  • Lab: Implementing Inheritance

    Lab: Implementing Polymorphism

    After completing this module, students will be able to:

  • Use inheritance in OOP
  • Implement polymorphism in your classes
  • Describe how the base class library is constructed
  • Find class information by using the Object Browser
  • This module helps students think about security in their applications. This module introduces the concepts of authentication for users and also introduces the concept of permissions for the code that is running on a computer. It explains that operating systems might prevent certain aspects of the program from executing, such as saving a file to a directory to which the user running the app might not have permission to write. The module briefly covers code signing and why programmers might want to consider using code signing.

  • Authentication and Authorization
  • Code Permissions on Computers
  • Introducing Code Signing
  • After completing this module, students will be able to:

  • Describe how authorization and authentication work
  • Describe how to apply access permissions for executing code on a computer
  • Explain how code signing works
  • This module introduces some core input/output (I/O) concepts that programmers will use while creating applications. Starting with console I/O, this module introduces input and output to the Console window. The module also talks about reading and writing files, which is an important concept to know because applications work with the files on the disk systems on computers.

  • Using Console I/O
  • Using File I/O
  • Lab: Core I/O Programming

    After completing this module, students will be able to:

  • Read input from a console
  • Output data to the console
  • Read and write text files
  • This module enables students understand that memory on a computer is a finite resource. It talks about how good application design and good coding discipline with memory conservation and memory management will help programmers learn to develop applications that users will like. This is because these applications will be fast, responsive, and do not negatively impact other applications.

  • Value Types vs Reference Types
  • Converting Types
  • The Garbage Collector
  • Lab: Using Value Types and Reference Types

    After completing this module, students will be able to:

  • Implement value and reference types correctly in an application
  • Convert between value types and reference types
  • Use the garbage collector
  • With Microtek Learning, you’ll receive:

    svg Certified Instructor-led training
    svg Industry Best Trainers
    svg Official Training Course Student Handbook
    svg Pre and Post assessments/evaluations
    svg Collaboration with classmates (not available for a self-paced course)
    svg Real-world knowledge activities and scenarios
    svg Exam scheduling support*
    svg Learn and earn program*
    svg Practice Tests
    svg Knowledge acquisition and exam-oriented
    svg Interactive online course.
    svg Support from an approved expert
    svg For Government and Private pricing*

    Call Us For Professional, Flexible and Cost-Effective Courses

    Our Clients

    For many years, Microtek Learning has been helping organizations, leaders, and professionals to reach their maximum performance by addressing the challenges they are facing.

    • 300+ enterprise clients
    • 100,000+ professionals trained
    • Service 70 of the Fortune 100
    • 96% of our clients would recommend us
    our clients

    Our Awards

    our awards

    Why We Are Best To Choose?

    Best Price Guarantee Best Price Guarantee

    Best Price Guarantee

    We guarantee that you'll find the lowest price and better offers here than in the marketplace.

    Guaranteed to Run Guaranteed to Run

    Guaranteed to Run

    All our courses are assured to proceed on mentioned dates by the delivery methods, i.e., classroom, virtual and e-learning.

    Professional Team Support Professional Team Support

    Professional Team Support

    We have a program expert counselling team to give you round-the-clock prompt support with the best offers as we value your time and money.

    Experienced Trainers Experienced Trainers

    Experienced Trainers

    We have a team of Certified Expert Trainers with 5 to 15 years of Real Industry Experience.

    100% Satisfaction Guarantee 100% Satisfaction Guarantee

    100% Satisfaction Guarantee

    We believe in our courses and our instructor's skill; that's why we guarantee 100% Satisfaction to our customers.

    Real-World Experience Real-World Experience

    Real-World Experience

    Our training modules are based on current industry standards live industry projects, and we follow the authorized curriculum given to us by our training partner.

    Best Price Guarantee Best Price Guarantee

    Best Price Guarantee

    We guarantee that you'll find the lowest price and better offers here than in the marketplace.

    Guaranteed to Run Guaranteed to Run

    Guaranteed to Run

    All our courses are assured to proceed on mentioned dates by the delivery methods, i.e., classroom, virtual and e-learning.

    Professional Team Support Professional Team Support

    Professional Team Support

    We have a program expert counselling team to give you round-the-clock prompt support with the best offers as we value your time and money.

    Experienced Trainers Experienced Trainers

    Experienced Trainers

    We have a team of Certified Expert Trainers with 5 to 15 years of Real Industry Experience.

    Course Details

    • Enrolled: 1854
    • Duration: 5 Days

    Mode Of Training

    training

    Classroom

    training

    Online
    Instructor-led

    training

    Online
    Self-Paced

    training

    Onsite

    side post

    Talk to Learning Advisor