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

331 C1 courses delivered Online

C01M04 - FD&FA Commissioning principles - BS 5839-1 (online)

5.0(4)

By Ember Compliance

Learners will develop knowledge from the FD&FA foundation module and/or industry experience and apply this to the commissioning, handover, and acceptance of FD&FA systems.

C01M04 - FD&FA Commissioning principles - BS 5839-1 (online)
Delivered Online + more
£230

C&G 2377-77 – 3 Day

4.7(1243)

By Technique Learning Solutions

Learn how to test portable electrical appliances with a qualification in Electrical Equipment Maintenance and Testing aimed at new starters to the testing of portable electrical equipment with minimal electrical knowledge. This qualification is aimed at those with responsibilities for the maintenance of electrical equipment and for those undertaking practical inspection and testing of electrical equipment. It allows those with the responsibility for the testing and inspection of electrical equipment to gain a qualification suitable to their job role. The qualification allows candidates to learn, develop and practise the skills required to inspect and test items of electrical equipment in line with the latest edition of the Code of Practice for In-Service Inspection and Testing of Electrical Equipment. Learners completing the qualification will have the ability to carry out mandatory responsibilities within the workplace depending on their prior electrical knowledge This level will suit you if you are looking to become involved in, the inspection and testing of electrical equipment. To successfully complete the qualification learners will have to sit an Evolve on-line test comprising of a 50 MCQ and a practical assignment. The practical consists of 3 tasks which are: Task 1 is inspect and test Class I equipment, Task 2 is inspect and test Class II equipment (this will be either unearthed metal or without unearthed metal or Class II FE – Learners will not need to do all 3 of these, they only need to do one type), Task 3 is completing the record forms

C&G 2377-77 – 3 Day
Delivered in Scotland + 1 more or Online + more
£500

C&G 2396 - Design, Erection and Verification

4.7(1243)

By Technique Learning Solutions

The qualification consists of a written examination and an assignment, before attempting this qualification, candidates should seriously consider completing 2391-52 and have achieved 2382-18 or similar qualifications where knowledge and understanding of BS7671 18th edition

C&G 2396 - Design, Erection and Verification
Delivered in Clay Cross or Online + more
£500

C02M01 - FD&FA Domestic - BS 5839-6 (online)

5.0(4)

By Ember Compliance

Delegates will develop knowledge of the requirements for the design, installation and commissioning of Fire Detection and Fire Alarm systems within domestic properties in compliance with the requirements of BS 5839-6 and other codes of practice.

C02M01 - FD&FA Domestic - BS 5839-6 (online)
Delivered Online + more
£230

C10M09 - Gas Extinguishing Detection & Electrical Actuation BS 6266 & BS 7273-1 (Online)

5.0(4)

By Ember Compliance

Learners will develop knowledge of FD&FA systems and apply this to the provision of detection and electrical actuation for gas extinguishing systems.

C10M09 - Gas Extinguishing Detection & Electrical Actuation BS 6266 & BS 7273-1 (Online)
Delivered OnlineFlexible Dates
£420

C1 Visual Analytics - Guide

By Tableau Training Uk

EMAcc Residential Visual Analytics slides - July 2024

C1 Visual Analytics - Guide
Delivered Online On Demand2 hours
£1,400

C10M10 - NHS health care premises - Hospitals (online)

5.0(4)

By Ember Compliance

It is a requirement within codes of practice e.g., BS 5839-1, and within legislation e.g., Health & Safety at Work Act 1974, that duties are placed upon employers and employees regarding health & safety and in particular electrical safety.

C10M10 - NHS health care premises - Hospitals (online)
Delivered OnlineFlexible Dates
£230

C10M03 - FD&FA Special Inspection - BS 5839-1 (online)

5.0(1)

By Ember Compliance

Learners will develop knowledge from the FD&FA maintenance module (C01M05) and/or industry experience and apply this to the ‘recommendations for special inspection on the appointment of a new servicing organization’.

C10M03 - FD&FA Special Inspection - BS 5839-1 (online)
Delivered OnlineFlexible Dates
£230

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

C10M02 - Actuation of door release mechanisms - BS 7273-4 (online)

5.0(1)

By Ember Compliance

Learners will develop knowledge from the FD&FA foundation courses (C01 modules 1 and 2) and/or industry experience with specific regard to more complex system design considerations.

C10M02 - Actuation of door release mechanisms - BS 7273-4 (online)
Delivered OnlineFlexible Dates
£230