• Professional Development
  • Medicine & Nursing
  • Arts & Crafts
  • Health & Wellbeing
  • Personal Development

396 Courses in Coventry

Puppy Training Course Mancetter Memorial Hall

4.9(10)

By Talkofthedog

Puppy training, beginner lever for dogs upto 10 months old. This 6 week course where the classes encompasses a comprehensive range of essential skills and behaviours. You will attend 6 x 30-minute training classes at Mancetter Memorial Hall, Old Farm Road, Mancetter, Atherstone, CV9 1QN

Puppy Training Course Mancetter Memorial Hall
Delivered In-Person in Mancetter, Atherstone + more
£69.99

Dog Training Course Mancetter Memorial Hall

4.9(10)

By Talkofthedog

Dog training, beginner lever for dogs 10 months and older. This 6 week course where the classes encompasses a comprehensive range of essential skills and behaviours. You will attend 6 x 30-minute training classes Mancetter Memorial Hall, Old Farm Road, Mancetter, Atherstone, Warwickshire, CV9 1QN.

Dog Training Course Mancetter Memorial Hall
Delivered In-Person in Mancetter, Atherstone + more
£69.99

Intermediate Dog Training Course Mancetter Memorial Hall

4.9(10)

By Talkofthedog

Next step of dog training for dogs 10 months and older. This 6 week course where the classes encompasses a comprehensive range of essential skills and behaviours. You will attend 6 x 30-minute training classes Mancetter Memorial Hall, Old Farm Road, Mancetter, Atherstone, Warwickshire, CV9 1QN.

Intermediate Dog Training Course Mancetter Memorial Hall
Delivered In-Person in Mancetter, Atherstone + more
£69.99

Dog Training Course

5.0(1)

By Talkofthedog

Dog trainer, beginner lever for dogs 10 months and older. This 6 week course where the classes encompasses a comprehensive range of essential skills and behaviours. You will attend 6 x 45-minute training classes Ruby's Yard, The Boat Yard, Slack’s Avenue, Atherstone, England, CV9 2AR.

Dog Training Course
Delivered In-Person in Atherstone + more
£89.99

Our *NEW* Mini First Aid Baby Proofing class is our second class, designed for parents and carers of babies and children over 3 months. It can be taken after our 2 hour Baby and Child First Aid class, or in isolation for those parents who are starting their weaning journey, or have a baby on the move!

Baby Proofing - Private Class
Delivered In-PersonFlexible Dates
£20 to £125

Baby & Child First Aid - Private Class

By Mini First Aid North Nottinghamshire, Grantham & Sleaford

The 2-hour Baby & Child First Aid class covers CPR, Choking, Bumps, Burns, Breaks, Bleeding, Febrile Seizures and Meningitis & Sepsis Awareness and will give everyone who attends the peace of mind they deserve.

Baby & Child First Aid - Private Class
Delivered In-PersonFlexible Dates
£20 to £125

Motorcycle Class 1 & 2 - MOT Tester Training

By PFTP Ltd

The IMI Level 2 Award in MOT Testing (Classes 1 and 2) was developed with Driver and Vehicle Standards Agency (DVSA) to provide learners with the knowledge and skills required to perform the MOT Test Routine on mopeds and motorcycles.

Motorcycle Class 1 & 2 - MOT Tester Training
Delivered In-PersonFlexible Dates
£954

Gift Wrapping Class for teams

By Louise Lewis

Learn the Essentials of Gift Wrapping & have some fun with your team this festive season  What’s included (and how it will help): Step by step tuition covering all the Essential Techniques of gift wrapping so they never need to grab a gift/bottle bag again Practical guidance on tying different styles of Ribbon Bow so they can confidently use them on any gift (and when it’s best to use each one) Learn Pro tips so you feel less overwhelmed & can gift wrap quickly at busy times Plus all materials are provided A class is a great opportunity for team building/bonding so that people get to know each other outside of a work setting and/or meet people in person. It’s an inclusive alternative to a Christmas party (boozy meals/discos aren’t for everyone) and everyone gets to take away a gift at the end of the class. Packages start from £597 for groups of up to 10 people. Dates & times can be booked to suit. Book a call below to discuss your requirements.

Gift Wrapping Class for teams
Delivered in person or OnlineFlexible Dates
£597

Objective-C programming

5.0(3)

By Systems & Network Training

Objective-C programming training course description A hands on introduction that will allow you to master Objective-C and start using it to write powerful native applications for even the newest Macs and iOS devices! Using The step-by-step approach, will let you get comfortable with Objective-C's unique capabilities and Apple's Xcode 5 development environment. Make the most of Objective-C objects and messaging. Work effectively with design patterns, collections, blocks, foundation classes, threading, Git and a whole lot more. Every session builds on what you've already learned, giving a rock-solid foundation for real-world success! What will you learn Use Xcode 5. Declare classes, instance variables, properties, methods, and actions. Use arrays, dictionaries, and sets. Expand and extend classes with protocols, delegates, categories, and extensions. Use Apple's powerful classes and frameworks. Objective-C programming training course details Who will benefit: Developers wanting to learn Objective-C. Prerequisites: Software development fundamentals. Duration 5 days Objective-C programming training course contents PART 1: GETTING STARTED WITH OBJECTIVE-C The Developer Program: Objective-C, enrolling as an Apple Developer, setting up the development environment, Xcode. Your first project. OO programming with Objective-C: OO projects, Frameworks, classes and instances, encapsulation, accessors, Inheritance. OO features in Objective-C: Messages, methods, working with id, nesting messages, method signatures and parameters. allocating and initializing objects. Using Xcode: Xcode, source code control, git and Xcode, Using a Remote Repository. Compiler Directives: Projects, Compiler Directives, Prefix headers, main.m, .h files. PART 2: OBJECTIVE-C BASICS Messaging in a Testbed App: Setting Up the Testbed Apps, Adding a Text Field and Connecting It to Your Code, Sending a Message to the Text Field, Reviewing the Message Syntax. Declaring a Class in an Interface File: Context, Creating an Instance Variable with id, What Happens When Execution Stops, dynamic binding, Creating an Instance Variable for with the Class Name and with a Superclass Name, instance variable visibility. Properties in an Interface File: Interface Variables vs Properties, Declared Properties, Using Attributes. Implementing Properties. @synthesize, @dynamic. Methods in an Interface File: Methods in a Class, class and instance methods, Method declaration, returning complex data structures from Methods. Actions in an Interface File: Actions, Actions in OS X and iOS, disconnecting actions. Routing messages with selectors: Receiver and selector objects in messages, Objective-C Runtime, SEL and @selector (), performSelector, NSInvocation, testing whether an Instance can respond to a selector. Building on the Foundation: The Foundation Framework, Foundation Classes, Foundation Paradigms and Policies; Mutability, class clusters, notifications. Defining a Class in Implementation Files: Projects, dynamic typing, creating a new App, implementing a method, expanding Classses with init Methods. Organizing Data with Collections: Collecting Objects, Property Lists, Runtime, comparing the Collection Classes, Creating a Collection, Objective-C Literal Syntax, Enumerating collections, Testing Membership in a Collection, Accessing an Object in a Collection. Managing Memory and Runtime Objects: Managing objects in memory, managing reference counts manually and with ARC, variable qualifiers, variable autorelease. PART 3: EXPANDING AND EXTENDING CLASSES Protocols and Delegates: Subclassing, Protocols, Delegates, Looking Deeper Inside Protocols. Categories and Extensions: Comparing categories and protocols, categories vs subclasses, working with categories, class extensions, informal protocols. Associative References and Fast Enumeration: Objective-C 2.0 Time-Saving Features, Extending Classes by Adding Instance Variables (Sort of), Using Fast Enumeration. Blocks: Revisiting Blocks, Callbacks, Blocks, Exploring Blocks in Cocoa, Cocoa Blocks and Memory. PART 4: BEYOND THE BASICS Handling Exceptions and Errors: Exception and Error classes: NSException, NSError, Identifying exceptions, throwing exceptions, catching exceptions. Queues and Threading: Getting Started with Concurrency, Introducing Queues, Dispatch Sources, Using Dispatch Queues. Working with the Debugger: Logging Information, Console Logs, NSLog, Smart Breakpoints, enhancing breakpoints with messages. Using Xcode Debug Gauges for Analysis: Debug Gauges, Monitoing CPU and memory utilization, monitoring energy, Using Instruments. PART 5: OPTIONAL TOPICS C Syntax Summary: Data Types, Control Structures. Apps, Packages, and Bundles: Project Bundles, lproj Files, Asset Catalogs, plist Files, Precompiled Header Files (.pch). Archiving and Packaging Apps for Development and Testing: Archiving.

Objective-C programming
Delivered in Internationally or OnlineFlexible Dates
£4,997

Complete C# programming

5.0(3)

By Systems & Network Training

Complete C# programming training course description This training course teaches developers the programming skills that are required for developers to create Windows applications using the C# language. Students review the basics of C# program structure, language syntax, and implementation details, and then consolidate their knowledge throughout the week as they build an application that incorporates several features of the .NET Framework. What will you learn Use the syntax and features of C#. Create and call methods, catch and handle exceptions, and describe the monitoring requirements of large-scale applications. Implement a typical desktop application. Create class, define and implement interfaces, and create and generic collections. Read and write data to/from files. Build a GUI using XAML. Complete C# programming training course details Who will benefit: Programmers wishing to learn C#. Prerequisites: Developers attending this course should already have gained some limited experience using C# to complete basic programming tasks. Duration 5 days Complete C# programming training course contents Review of C# Syntax Overview of Writing Applications using C#, Datatypes, Operators, and Expressions. C# Programming Language Constructs. Hands on Developing the Class Enrolment Application. Methods, exceptions and monitoring apps Creating and Invoking Methods. Creating Overloaded Methods and Using Optional and Output Parameters. Handling Exceptions. Monitoring Applications. Hands on Extending the Class Enrolment Application Functionality. Developing a graphical application Implementing Structs and Enums. Organizing Data into Collections. Handling Events. Hands on Writing the Grades Prototype Application. Classes and Type-safe collections Creating Classes. Defining and Implementing Interfaces. Implementing Type-safe Collections. Hands on Adding Data Validation and Type-safety to the Grades Application. Class hierarchy using Inheritance Class hierarchies. Extending .NET framework classes. Creating generic types. Hands on Refactoring common functionality into the User Class. Reading and writing local data Reading and Writing Files. Serializing and Deserializing Data. Performing I/O Using Streams. Hands on Generating the Grades Report. Accessing a Database Creating and using entity data models. Querying and updating data by using LINQ. Hands on Retrieving and modifying grade data. Accessing remote data Accessing data across the web and in the cloud. Hands on Modifying grade data in the Cloud. Designing the UI for a graphical applicatione Using XAML to design a User Interface. Binding controls to data. Styling a UI. Hands on Customizing Student Photographs and Styling the Application. Improving performance and responsiveness Implementing Multitasking by using tasks and Lambda Expressions. Performing operations asynchronously. Synchronizing concurrent data access. Hands on Improving the responsiveness and performance of the application. Integrating with unmanaged code Creating and using dynamic objects. Managing the Lifetime of objects and controlling unmanaged resources. Hands on Upgrading the grades report. Creating reusable types and assemblies Examining Object Metadata. Creating and Using Custom Attributes. Generating Managed Code. Versioning, Signing and Deploying Assemblies. Hands on Specifying the Data to Include in the Grades Report. Encrypting and Decrypting Data Implementing Symmetric Encryption. Implementing Asymmetric Encryption. Hands on Encrypting and Decrypting Grades Reports.

Complete C# programming
Delivered in Internationally or OnlineFlexible Dates
£3,697

Educators matching "class"

Show all 67