Professional Course

Introduction to Programming & C++ Coding Basics for Non-Developers

Length
5 days
Length
5 days
This provider usually responds within 48 hours 👍

Course description

Introduction to Programming & C++ Coding Basics for Non-Developers

Companies are constantly challenged to keep their applications, development projects, products, services (and programmers!) up to speed with the latest industry tools, skills, technologies and practices to stay ahead in the ever-shifting markets that make up today’s fiercely competitive business landscape.  The need for application, web and mobile developers and coders is seemingly endless as technologies regularly change and grow to meet the modern needs of demanding industries and clients.   

There are hundreds of roles that reply on coding knowledge and programming skills.  Having programming skills can enable you to: 

  • Develop applications and contribute to application development projects and teams 
  • Integrate, change. expand or maintain outsourced development work being brought back in house 
  • Use or maintain software, tools, systems or networks that require coding skills to operate, handle data or complete other tasks 
  • Collaborate and communication more effectively with developers 
  • More effectively manage development teams or projects that involve programming 

To meet the need to bring this knowledge and skill in house, companies might 

  • Locate, engage and hire experienced developers  
  • Outsource development work to third party firms 
  • Onboard new hires or recent college graduates / cohorts with limited practical experience, then train them specifically to fill these roles 
  • Invest in and ‘re-skilling’ current employees into more modern and productive roles within the firm, retaining and leveraging existing company knowledge and talent. 

Learning to code, even to a basic level, is a truly worthwhile investment. Having coding skills, or even basic knowledge, can elevate your ability gain a new job in programming, help you gain longer term job security in your current organization, or can even expand your current role into other areas in your team or organization.  

Introduction to Programming & Coding | C++ Basics for Non-Developers is a skills-focused, hands-on coding course that teaches students the fundamentals of programming object oriented (OO) applications with C++ to a very basic level.  This course is presented in a way that enables interested students from any background to embrace the fundamentals of coding as well as an introduction to C++, in a gentle paced environment that focuses on coding basics, moving at the comfort level of the attendees.   

Students are introduced to the application development cycle, structure of programs, and specific language syntax. The course introduces important algorithmic constructs, string and character manipulation, dynamic memory allocation, standard I/O, and fundamental object-oriented programming concepts. The course explains the use of inheritance and polymorphism early on so the students can practice extensively in the hands-on labs. Structured programming techniques and error handling are emphasized. The course includes the processing of command line arguments and environment variables, so students will be able to write flexible, user-friendly programs.  Students will leave this course armed with the required skills to begin their journey as a programmer using modern coding skills and technologies.   

Trivera offers hundreds of end-to-end skills-focused courses that provide participants with the job-ready skills they require to be truly productive in a modern IT business enterprise. Our courses are available for individuals, their teams, or across their organization, for students of all skill levels and roles.  We offer an extensive online Public Course Schedule, deep catalog for Private Courses, flex-hour Mini-Camp short courses, self-paced QuickSkills courses, free webinars and more.  Trivera’s unique EveryCourse Extras and AfterCourse Extras programs, included with every course, ensure our students can put their newly-learned skills right to work, while providing them with a solid platform for continued skills-development, support and long-term growth.   For more information about our dedicated training services, public course offerings, collaborative coaching services, new hire or enterprise upskilling programs, or to see our complete list of course offerings and special offers please call us toll free at 844-475-4559. Our pricing and services are always satisfaction guaranteed.

Do you work at this company and want to update this page?

Is there out-of-date information about your company or courses published here? Fill out this form to get in touch with us.

Who should attend?

This course is intended for anyone who is new to software development and wants, or needs, to gain an understanding of the fundamentals of coding and basics of C++ and object-oriented programming concepts. This course is for Non-Developers, or anyone who wants to have a basic understanding of and learn how to code C++ applications and syntax 

Attendees might include: 

  • Anyone who wants exposure to basic coding skills, or who wants to begin the process of becoming an OO application developer 
  • Technical team members from non-development roles, re-skilling to move into software and application development roles within an organization 
  • Recent college graduates looking to apply their college experience to programming skills in a professional environment, or perhaps needing to learn the best practices and standards for programming within their new organization 
  • Technical managers tasked with overseeing programming teams, or development projects, where basic coding knowledge and exposure will be useful in project oversight or communications needs 

Before attending this course, students must have: 

  • Ability to use computers to start programs, open and save files, navigate application menus and interfaces 
  • Ability to understand logical concepts such as comparisons 
  • Understand number theory 
  • Ability to create, understand, and follow structured directions or step-by-step procedures 
  • Ability to understand and apply abstract concepts to concrete examples 

Training content

Fundamentals of the Program Development Cycle 

  • Computer Architecture 
  • The Notion of Algorithms 
  • Source Code vs. Machine Code 
  • Compile-Time vs. Run-Time 
  • Software Program Architecture 
  • Standalone 
  • Client/Server 
  • Distributed 
  • Web-Enabled 
  • IDE (Interactive Development Environment) Concepts 

Application Development Fundamentals 

  • Structure of a C++ Program 
  • Memory Concepts 
  • Fundamental Data Type Declarations 
  • Fundamental I/O Concepts 
  • Fundamental Operators 
  • Arithmetic Operators 
  • Logical Operators 
  • Precedence and Associativity 
  • Building and Deploying a C++ Program 

Introduction to Classes and Objects 

  • Classes, Objects and Methods 
  • Object Instances 
  • Declaring and Instantiating a C++ Object 
  • Declaring Methods 
  • set and get Methods 
  • Initiating Objects with Constructors 
  • Primitive Types vs. Reference Types 

Flow Control 

  • Conditional Constructs 
  • Looping Constructs 
  • Counter-Controlled Repetition 
  • Sentinel-Controlled Repetition 
  • Nested Control Constructs 
  • break and continue Statements 
  • Structured Programming Best Practices 

Writing Methods (Functions) 

  • Static vs. Dynamic Allocation 
  • Declaring Methods 
  • Declaring Methods with Multiple Parameters 
  • Method-Call Stack 
  • Scope of Declarations 
  • Argument Promotion and Casting 
  • Designing Methods for Reusability 
  • Method Overloading 

Arrays 

  • Purpose of Arrays 
  • Declaring and Instantiating Arrays 
  • Passing Arrays to Methods 
  • Multidimensional Arrays 
  • Variable-Length Argument Lists 
  • Using Command-Line Arguments 
  • Using Environment Variables 

Deeper Into Classes and Objects 

  • Controlling Access to Class Members 
  • Referencing the Current Object Using this 
  • Overloading Constructors 
  • Default and No-Argument Constructors 
  • Composition of Classes 
  • Garbage Collection and Destructors 
  • The finalize Method 
  • Static Class Members 

Defining Classes Using Inheritance 

  • Superclasses and Subclasses 
  • Advantages of Using Inheritance 
  • protected Class Members 
  • Constructors in Subclasses 

Increasing Convenience by Using Polymorphism 

  • Purpose of Polymorphic Behavior 
  • The Concept of a Signature 
  • Abstract Classes and Methods 
  • final Methods and Classes 
  • Purpose of Interfaces 
  • Using and Creating Interfaces 
  • Common Interfaces of the C++ API 

Files and Streams 

  • Concept of a Stream 
  • Class File 
  • Sequential Access 
  • Object Serialization to/from Sequential Access Files 

Fundamental Searching and Sorting 

  • Introduction to Searching Algorithms 
  • Linear Search 
  • Binary Search 
  • Introduction to Sorting Algorithms 
  • Selection Sort 
  • Insertion Sort 
  • Merge Sort 

Fundamental Data Structures 

  • Dynamic Memory Allocation 
  • Linked Lists 
  • Stacks 
  • Queues 
  • Trees 

Exception Handling 

  • Types of Exceptions 
  • Exception Handling Overview 
  • Exception Class Hierarchy 
  • Extending Exception Classes 
  • When to Throw or Assert Exceptions 

Formatted Output 

  • printf Syntax 
  • Conversion Characters 
  • Specifying Field Width and Precision 
  • Using Flags to Alter Appearance 
  • Printing Literals and Escape Sequences 
  • Formatting Output with Class Formatter 

Strings, Characters and Regular Expressions 

  • Fundamentals of Characters and Strings 
  • String Class 
  • String Operations 
  • StringBuilder Class 
  • Character Class 
  • StringTokenizer Class 
  • Regular Expressions 
  • Regular Expression Syntax 
  • Pattern Class 
  • Matcher Class 

Fundamental GUI Programming Concepts 

  • Overview of Swing Components 
  • Displaying Text and Graphics in a Window 
  • Event Handling with Nested Classes 
  • GUI Event Types and Listener Interfaces 
  • Mouse Event Handling 
  • Layout Managers 

Course delivery details

Student Materials: Each participant will receive a Student Guide with course notes, code samples, software tutorials, step-by-step written lab instructions, diagrams and related reference materials and resource links. Students will also receive the project files (or code, if applicable) and solutions required for the hands-on work.  

Hands-On Setup Made Simple! Our dedicated tech team will work with you to ensure our ‘easy-access’ cloud-based course environment is accessible, fully-tested and verified as ready to go well in advance of the course start date, ensuring a smooth start to class and effective learning experience for all participants. Please inquire for details and options. 

Costs

  • Price: $ 2,595.00
  • Discounted Price: $1,686.75

Why choose Trivera Technologies LLC?

Over 25 years of technology training expertise.

Robust portfolio of over 1,000 leading edge technology courses.

Guaranteed to run courses and flexible learning options.

Contact this provider

Contact course provider

Before we redirect you to this supplier's website, do you mind filling out this form so that we can stay in touch? You can unsubscribe at any time.
If you want us to recommend other suitable courses, please fill out all fields below and check the box beside "Please recommend similar options"
Country *

reCAPTCHA logo This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
Trivera Technologies LLC
7862 West Irlo Bronson Highway
STE 626
Kissimmee FL 34747

Trivera Technologies

Trivera Technologies is a IT education services & courseware firm that offers a range of wide professional technical education services including: end to end IT training development and delivery, skills-based mentoring programs,new hire training and re-skilling services, courseware licensing and...

Read more and show all training delivered by this supplier

Ads