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

30777 Courses delivered Online

Scrum Product Owner Workshop: In-House Training

By IIL Europe Ltd

Scrum Product Owner Workshop: In-House Training The Product Owner is responsible for maximizing the value of the product and the work of the Development Team. The Product Owner must be knowledgeable, available, and empowered to make decisions quickly in order for an Agile project to be successful. The Product Owner's key accountability is the Product Backlog. Managing, maintaining, and evolving the Product Backlog involves: Establishing a clear Vision that engages the Development Team and stakeholders Clearly expressing Product Backlog items Ordering the items in the Product Backlog to best achieve the Vision and goals Ensuring that the Product Backlog is visible, transparent, and clear to all Working with the Development Team throughout the project to create a product that fits the customer's needs The overall course goal is to support you in becoming an effective Product Owner. What you will Learn You'll learn how to: Differentiate between poor, good, and great Product Owner attributes, and their impact on the team, product, stakeholders, and the organization Engage your stakeholders by knowing your customers and market Develop an effective and value-driven Product Backlog Evaluate the Product Owner's role in Scrum's 5 events and team engagement Foundation Concepts Agile foundation Product owner role Product Ownership Product ownership Project vision Understanding your customers and market Personas Stakeholder management and engagement The Product Backlog Epics and user stories Preparing user stories for a sprint The product backlog Visualizing the product backlog Product backlog prioritization Technical debt Sprint Planning and Delivery Sprint planning The sprint Sprint Reviews, Retrospectives, and Closing Sprint reviews Key agile patterns Retrospectives Closing the project

Scrum Product Owner Workshop: In-House Training
Delivered in London or UK Wide or OnlineFlexible Dates
£1,495

MySQL for developers

5.0(3)

By Systems & Network Training

MySQL for developers training course description This MySQL Developers training course is designed for MySQL Developers who have a good understanding of a MySQL database and experience of using SQL commands. The course provides further practical experience in more advanced MySQL commands and SQL statements including Stored Routines, Triggers and Event Scheduling. What will you learn Provide the skills needed to write more advanced queries and database maintenance statements on a MySQL database. Use advanced features of the MySQL Client. Use advanced data types. Manage the structure of databases and tables. Manage and using indexes. Write complex SQL query statements. Use advanced SQL expressions. Use advanced SQL functions. Perform advanced Insert, Update, Delete, Replace and Truncate Operations. Use user variable syntax and properties. Import and export data from within MySQL. Import and export data from the command line. Perform complex joins to access multiple tables. Perform complex subqueries. Create, manage and us views. Use prepared statements. Create and use stored routines. Create and use triggers. Obtain database metadata. Optimize queries. Work with the main storage engines. Debug MySQL applications. MySQL for developers training course details Who will benefit: MySQL Developers who have a basic understanding of a MySQL database and SQL commands as covered on the Introduction to MySQL course. Prerequisites: MySQL foundation Duration 5 days MySQL for developers training course contents Introduction Administration and Course Materials, Course Structure and Agenda, Delegate and Trainer Introductions. Client/server concepts MySQL client/server architecture, Server modes, Using client programs, Logging in options, Configuration files, Precedence of logging in options Hands on Using client/server The MySQL client program Using MySQL interactively, The MySQL prompts, Client commands and SQL statements, Editing, Selecting a database, Help, Safe updates, Using script files, Using a source file, Redirecting output into a file, Command line execution, Mysql output formats, Overriding the defaults, Html and xml output, MySQL Utilities. Hands on Using the MySQL client program Data types Bit data type, Numeric data types, Auto_increment, Character string data types, Character sets and collation, Binary string data types, Enum and Set data types, Temporal data types, Timezone support, Handling Missing Or Invalid Data Values, SQL_MODE options. Hands on Using data types Identifiers Using Quotes with identifier naming, Case sensitivity in Identifier naming, Qualifying columns with table and database names, Using reserved words as identifiers, Function names Hands on Using identifiers Databases Database properties, Creating a database, Selecting a database, Altering databases, Dropping databases, Obtaining database metadata, The SHOW command, The INFORMATION_SCHEMA database, The SHOW CREATE command Hands on Using databases Tables and indexes Table properties, Creating tables, Create table using Select or Like, Temporary tables and memory tables, Altering tables, Adding columns, Changing column widths and types, Renaming columns, Dropping columns, Adding constraints, Dropping constraints, Renaming tables, Change the table storage engine, Multiple alterations, Dropping tables, Emptying tables, Obtaining table metadata, Show create table, The information_schema, Index introduction, Structure of a mysql index, Creating and dropping indexes, Creating an index, Altering a table to add an index, Specifying index type, Dropping indexes, Obtaining Index Metadata. Hands on Creating, altering and dropping tables/indexes Querying for data The SQL select statement and MySQL differences, Advanced order by, Order by and collation, Order by with enum datatype, Order by with Set datatype, Ordering with distinct and group by Special features of union, Limit and order by clauses, Group By clause, Group_concat, Using Rollup in a Group By clause. Hands on Querying for data SQL Expressions and functions Components of expressions, Nulls, Numeric expressions, String expressions, Temporal expressions, Comparison functions, Flow control functions, Numeric functions, String functions, Temporal functions. Hands on Using expressions and functions Updating data Update operations and privileges, Inserting rows, Insert using a set clause, Inserting duplicate values, Replacing rows, Updating rows, Update using the order by and limit clauses, Deleting rows, The delete and truncate statements. Exercise: Inserting, updating, replacing and deleting data Connectors MySQL client interfaces, MySQL connectors, Oracle and community conectors, Connecting to MySQL server using Java and PHP connectors, MySQL and NoSQL, Innodb integration with memcached. Obtaining database metadata What is metadata?, The mysqlshow utility, The show and describe commands, Describing tables, The information_schema, Listing tables, Listing columns, Listing views, Listing key_columns_usage. Hands on Obtaining database metadata Debugging Mysql error messages, The show statement, Show errors, Show count(*) errors, Show warnings, Show count(*) warnings, Note messages, The perror utility. Hands on Debugging Joins Overview of inner joins, Cartesian product, Inner joins with original syntax, Non equi-join, Using table aliases to avoid name clashes, Inner Joins With ISO/ANSI Syntax, Outer Joins, Left outer joins, Right outer joins, Full outer joins, Updating multiple tables simultaneously, Updating rows in one table based on a condition in another, Updating rows in one table reading data from another, Deleting from multiple tables simultaneously, Deleting rows in one table based on a condition in another. Hands on Coding joins Subqueries Types of subquery, Multiple-column subqueries, Correlated subqueries, Using the ANY, ALL and SOME operators, Using the EXISTS operator, Subqueries as scalar expressions, Inline views, Converting subqueries to joins, Using subqueries in updates and deletes. Hands on Coding subqueries Views Why views are used, Creating views, View creation restrictions, View algorithms, Updateable views, Altering and dropping views, Displaying information about views, Privileges for views. Hands on Using views Import and Export Exporting using SQL, Privileges required to export data, Importing using SQL, Messages when loading data, Privileges required to load data, Exporting from the command line, Mysqldump main options, Importing from the command line, Mysqlimport main options. Hands on Importing and exporting User variables and prepared statements Creating User variables, User variables in a select, Prepared statements, The prepare statement, The execute statement, The deallocate statement, Using prepared statements in code, with connectors. Hands on Using variables and prepared statements Introduction to stored routines Types of stored routines, Benefits of stored routines, Stored routine features, Differences between procedures and functions, Introduction to the Block, Declaring variables and constants, Assigning values to variables, Definer rights and invoker rights, Using SELECT in stored routines, Altering and dropping stored routines, Obtaining stored routine metadata, Stored routine privileges and execution security. Hands on Writing simple stored routines Stored routines - program logic The IF .. THEN .. ELSEIF construct, The CASE statement, The basic loop, The while loop, The repeat loop, The iterate statement, Nested loops. Hands on Writing stored routines with program logic Stored routines - exception handlers and cursors Dealing with errors using Exception handlers, Cursors, What is a cursor?, Cursor operations, Declaring cursors, Opening and closing cursors, Fetching rows, Status checking. Hands on Writing stored routines with program logic Procedures with parameters Creating procedures with parameters, Calling Procedures With Parameters. Hands on Writing stored routines with parameters Functions What is a function?, The create function statement, Executing functions, Executing functions from code, Executing functions from SQL statements, The deterministic and SQL clauses. Hands on Writing functions Triggers Trigger creation, Restrictions on triggers, The create trigger statement, Using the old and new qualifiers, Managing triggers, Destroying triggers, Required privileges. Hands on Writing triggers Basic optimizations Normalisation of data to third normal form, Using indexes for optimization, General query enhancement, Using Explain to analyze queries, Choosing an INNODB or MYISAM storage engine, Using MySQL Enterprise Monitor in query optimization. Hands on Making use of basic optimizations More about indexes Indexes and joins Hands on Investigating indexes and joins

MySQL for developers
Delivered in Internationally or OnlineFlexible Dates
£2,797

Diploma in Radiography - CPD Certified

4.7(47)

By Academy for Health and Fitness

Boost Your Career By Enrolling In This Radiography - CPD Certified Bundle To Overcome Your Challenges! 6 in 1 Radiography - CPD Certified Bundle Improve your knowledge and enhance your skills to succeed with this Radiography - CPD Certified bundle. This Radiography - CPD Certified bundle is designed to build your competent skill set and enable the best possible outcome for your future. Our bundle is ideal for those who aim to be the best in their fields and are always looking to grow. This Radiography - CPD Certified Bundle Contains 6 of Our Premium Courses for One Discounted Price: Course 01: Radiography Course 02: Dental Radiography Course 03: Laboratory Technician Diploma Course 04: Level 3 Diploma in Anatomy and Physiology of Human Body Course 05: Pain Management Course 06: Medical Law All the courses under this Radiography - CPD Certified bundle are split into a number of expertly created modules to provide you with an in-depth and comprehensive learning experience. Upon successful completion of the Radiography - CPD Certified bundle, an instant e-certificate will be exhibited in your profile that you can order as proof of your new skills and knowledge. Stand out from the crowd and get trained for the job you want. With this comprehensive Radiography - CPD Certified bundle, you can achieve your dreams and train for your ideal career. This Radiography - CPD Certified bundle covers essential aspects in order to progress in your chosen career. Why Prefer Us for Radiography - CPD Certified? All-in-one package of 6 premium courses' Radiography - CPD Certified bundle Earn a certificate accredited by CPDQS. Get a free student ID card! (£10 postal charge will be applicable for international delivery) Globally Accepted Standard Lesson Planning Free Assessments with this Radiography - CPD Certified Bundle 24/7 Tutor Support available with this Radiography - CPD Certified Bundle Start your learning journey straightaway! This Radiography - CPD Certified's curriculum has been designed by Radiography - CPD Certified experts with years of Radiography - CPD Certified experience behind them. The Radiography - CPD Certified course is extremely dynamic and well-paced to help you understand Radiography - CPD Certified with ease. You'll discover how to master the Radiography - CPD Certified skill while exploring relevant and essential topics. Assessment Process Once you have completed all the courses in the Radiography - CPD Certified bundle, you can assess your skills and knowledge with an optional assignment. Our expert trainers will assess your assignment and give you feedback afterwards. CPD 60 CPD hours / points Accredited by CPD Quality Standards Who is this course for? This Radiography - CPD Certified bundle is suitable for everyone. Requirements You will not need any prior background or expertise. Career path This Radiography - CPD Certified bundle will allow you to kickstart or take your career in the related sector to the next stage. Certificates CPD Accredited Digital Certificate Digital certificate - Included CPD Accredited Hard Copy Certificate Hard copy certificate - £29.99 If you are an international student, you will be required to pay an additional fee of 10 GBP for international delivery, and 4.99 GBP for delivery within the UK, for each certificate

Diploma in Radiography - CPD Certified
Delivered Online On Demand30 hours
£39

Diabetes Awareness (Type 1 & 2)

5.0(1)

By Course Gate

Diabetes Awareness (Type 1 & 2) is a comprehensive course designed to provide in-depth knowledge about diabetes and its various aspects. From understanding the fundamentals of diabetes to exploring the different types, treatments, and complications, this course covers essential information for healthcare professionals and individuals alike.

Diabetes Awareness (Type 1 & 2)
Delivered Online On Demand6 hours 24 minutes
£11.99

PRINCE2 Agile Foundation: Virtual In-House Training

By IIL Europe Ltd

PRINCE2 Agile® Foundation: Virtual In-House Training PRINCE2 Agile® provides structure, governance, and control when working with agile concepts, methods, and techniques. It is a solution combining the flexibility and responsiveness of Agile with the clearly defined framework of PRINCE2. PRINCE2 Agile® framework covers a wide range of agile concepts, including SCRUM, Kanban, and Lean Startup. The PRINCE2 Agile® Foundation certificate is designed to help professionals deliver agile projects by tailoring PRINCE2® management controls with a broad toolset of agile delivery techniques and frameworks. PRINCE2 Agile® is an extension module tailored for forward-thinking organizations and individuals already benefiting from PRINCE2®. It provides further guidance on how to apply agile methods to the world's most recognized project management method. The purpose of the Practitioner qualification is to demonstrate that you can apply and tailor PRINCE2 Agile® in a scenario situation. What you will Learn Understand the key aspects of PRINCE2® Understand basic concepts behind common agile ways of working Demonstrate the purpose of combining PRINCE2® with agile Be able to fix and flex the aspects of a project in an agile context Apply the PRINCE2® principles and tailor the themes, processes, and management products to a project in an agile context Incorporate the areas that can support a PRINCE2 Agile® implementation To prepare Participants for the PRINCE2 Agile® Foundation exam Benefits Agile methods allow organizations to realize the benefits of products and potentially an earlier return on investment while products are being developed and improved. Improved communication through the use of common terminology across PRINCE2® and agile disciplines. Develop a clear definition of how agile can govern a project's delivery, while PRINCE2® governs projects as a whole. Seamless integration: PRINCE2 Agile® will complementPMBOK® GuideandAPM Body of Knowledge®just as PRINCE2® does currently. It will also be of interest for Program Managers with MSP® who need to understand how projects relate to the delivery mechanism. The most up-to-date and relevant view of Agile project management methodologies, PRINCE2 Agile® references the 'flow-based' working featured in Kanban in addition to other agile concepts not covered in other qualifications. Introduction - Getting Started Part 1 An overview of PRINCE2 Agile Overview Blending PRINCE2 and Agile What to fix and what to flex Part 2 Agile behaviors ad the PRINCE2 Principles Agile and the PRINCE2 Themes Part 3 Focus areas Agile and the PRINCE2 Processes Examination preparation Examination. Summary - What did we learn, and how can we implement this in our work environment?

PRINCE2 Agile Foundation: Virtual In-House Training
Delivered OnlineFlexible Dates
£1,850

CMI Level 7 Award Strategic Management & Leadership Practice

1.0(1)

By Mrj Consulting Services Ltd

The Level 7 qualifications in Strategic Management and Leadership Practice are designed for directors and senior managers who have the authority and personal inspiration to translate organisational strategy into effective performance. These qualifications require directors and senior managers to build on their skills in strategic management and leadership and to focus on the requirements of inter-organisational strategy.

CMI Level 7 Award Strategic Management & Leadership Practice
Delivered OnlineFlexible Dates
£900

ITIL© 4 High Velocity IT (HVIT)

By Nexus Human

Duration 3 Days 18 CPD hours This course is intended for Delegates attending this course must have successfully achieved the ITIL 4 Foundation Qualification; your certificate must be presented as documentary evidence to gain admission to this course. Ideally candidates should have at least two years professional experience working in IT Service Management. The ITIL 4 HVIT Qualification would most likely suit the following delegates: Individuals continuing of their journey in service management ITSM managers and aspiring ITSM managers IT managers and practitioners involved in digital services or working in digital transformation projects, working within or towards high velocity environments Existing ITIL qualification holders wishing to develop their knowledge The above list is a suggestion only. Delegates may take as few or as many Intermediate qualifications as they require, and to suit their needs. Overview This course has been created to help IT service management practitioners working in organizations that are becoming more digitally enabled. The practitioners are familiar with traditional IT service management concepts, and now want to be able to discuss ?digital? with more confidence, to develop practical competences, and to be valued contributors in the digital domain. They want to improve how they and their co-workers: Help get customers? jobs done ? helping customers become who they seek to become Keep raising the bar ? taking things to a significantly higher level Trust and are trusted ? as professional knowledge workers in a healthy workplace Accept ambiguity and uncertainty - not scared of not knowing an answer Commit to continual learning ? all as part of their daily work The scope of the course is the primary activities in the digital value chain. In other words, what the practitioner does and which resources they use across the lifecycle of digital products, in order to: Make the right digital investments Realize and deliver digital products and services quickly Provide digital products and services that are highly resilient to disruption Ensure that the service consumer realizes value from the digital products and services Assure conformance of activities with governance, risk and compliance requirements. Understand and know how to use the key principles and methods of Organizational Change Management to direction, planning and improvement Understand and know how to use the key principles and methods of measurement and reporting in directing, planning and improvement Understand and know how to direct, plan and improve value streams and practices ITIL 4 is a framework for quality IT service management (ITSM) through proven best practice, providing practical and flexible guidance to support your organization on its journey to digital transformation while empowering your IT teams to continue to play a crucial role in the wider business strategy. This course highlights the ways in which digital organizations and digital operating models function in high-velocity environments, including the use of working practices such as Agile and Lean, and technical practices and technologies such as Cloud, Automation, and Automatic Testing. This class includes an exam voucher. Prerequisites ITIL© 4 Foundation 1 - THE NATURE OF HIGH-VELOCITY IN A DIGITAL WORLD Overview of the key ITIL 4 high-velocity terminology Understand when the transformation to high velocity IT is desirable and feasible Understand the five objectives associated with digital products ? to achieve: Valuable investments ? strategically innovative and effective application of IT Fast development - quick realization and delivery of IT services and IT-related products Resilient operations - highly resilient IT services and IT-related products Co-created value - effective interaction between service provider and consumer Assured conformance - to governance, risk and compliance (GRC) requirements. 2 - ITIL OPERATING MODEL ? DIGITAL PRODUCT LIFECYCLE Understand how high velocity IT relates to: The four dimensions of service management The ITIL service value system The service value chain The digital product lifecycle 3 - FUNDAMENTAL CONCEPTS FOR DELIVERING HVIT Understand the following concepts: Ethics Safety culture Toyota Kata Lean / Agile / Resilient / Continuous Service-dominant logic Design thinking Complexity thinking Use the principles, models and concepts to contribute to: Help get customers? jobs done Trust and be trusted Commit to performance Deal with uncertainty Improve by being inquisitive 4 - ACHIEVING VALUE WITH DIGITAL PRODUCTS Know how the service provider ensures valuable investments are achieved. Know how to use the following practices to contribute to achieving valuable investments: Portfolio management Relationship management Know how the service provider ensures fast deployment is achieved Know how to use the following practices to contribute to achieving fast deployment: Architecture management Business analysis Deployment management Service validation and testing Software development and management Know how the service provider ensures resilient operations are achieved Know how to use the following practices to contribute to achieving resilient operations: Availability management Capacity and performance management Monitoring and event management Problem management Service continuity management Infrastructure and platform management Know how the service provider ensures co-created value is achieved Know how to use the following practices to contribute to achieving co-created value with the service consumer: Relationship management Service design Service desk Know how the service provider ensures assured conformance is achieved Know how to use the following practices to contribute to achieving assured conformance: Information security management Risk management

ITIL© 4 High Velocity IT (HVIT)
Delivered OnlineFlexible Dates
£2,385

Health Care Assistant Course (Children)

4.3(43)

By John Academy

[vc_row][vc_column][vc_column_text] Description: Did you know that healthcare is the largest employment sector in the UK? Care assistants can specialise in many different areas of healthcare, and their responsibilities can vary greatly, depending on the role. If you are considering a career in this field, take steps to become a healthcare assistant and enrol in this best-selling Health Care Assistant Course (Children) Course. This training course will explore the role and responsibilities of a childcare assistant in detail, and will benefit those who are considering becoming paediatricians, nurses and child counsellors. Throughout this healthcare assistant course, you will develop a wide range of practical skills to further your job progression. You will learn the fundamentals of childcare, covering topics such as newborn care assistance, nutrition, vaccinations and immunisation. You will also look into common genetic problems and systemic diseases. On completion, you will have an excellent understanding of child development and the fundamental knowledge to be able to examine and assist your patients professionally. Who is the course for? People interested in learning about health care for children Professionals seeking to understand diseases affecting children and how to tackle them Entry Requirement: This course is available to all learners, of all academic backgrounds. Learners should be aged 16 or over to undertake the qualification. Good understanding of English language, numeracy and ICT are required to attend this course. Assessment: At the end of the course, you will be required to sit an online multiple-choice test. Your test will be assessed automatically and immediately so that you will instantly know whether you have been successful. Before sitting for your final exam, you will have the opportunity to test your proficiency with a mock exam. Certification: After you have successfully passed the test, you will be able to obtain an Accredited Certificate of Achievement. You can however also obtain a Course Completion Certificate following the course completion without sitting for the test. Certificates can be obtained either in hardcopy at the cost of £39 or in PDF format at the cost of £24. PDF certificate's turnaround time is 24 hours, and for the hardcopy certificate, it is 3-9 working days. Why choose us? Affordable, engaging & high-quality e-learning study materials; Tutorial videos/materials from the industry leading experts; Study in a user-friendly, advanced online learning platform; Efficient exam systems for the assessment and instant result; The UK & internationally recognized accredited qualification; Access to course content on mobile, tablet or desktop from anywhere anytime; The benefit of career advancement opportunities; 24/7 student support via email. Career Path: Health Care Assistant Course (Children) course is a useful qualification to possess and would be beneficial for any related profession or industry such as: Paediatrician Nurses School counsellor School health and safety officer Teachers And more [/vc_column_text][/vc_column][/vc_row] Health Care Assistant Course (Children) Introduction to Child Health 00:15:00 History Taking and Physical 00:15:00 Care of The New Born 00:30:00 Congenital Abnormalities 01:00:00 Normal Growth and Development 00:15:00 Nutrition and Nutritional 00:30:00 Acute Respiratory Infection (Ari) 00:15:00 Control of Diarrhea Disease 00:30:00 Systemic Diseases 01:00:00 Vaccine Preventable Diseases 00:15:00 Expanded Program on Immunization (Epi) 00:15:00 Common Genetic Problems of Children 00:15:00 Refer A Friend Refer A Friend 00:00:00 Mock Exam Mock Exam- Health Care Assistant Course (Children) 00:20:00 Final Exam Final Exam- Health Care Assistant Course (Children) 00:20:00 Order Your Certificates and Transcripts Order Your Certificates and Transcripts 00:00:00

Health Care Assistant Course (Children)
Delivered Online On Demand5 hours 55 minutes
£18

Level 4 Teaching Assistant - QLS Endorsed Course

5.0(1)

By Training Express

**10 FREE QLS Endorsed Certificates and Included with Lifetime Access** The Level 4 Teaching Assistant – QLS Endorsed Course is designed for individuals seeking to expand their role in supporting teachers within various educational settings. Through a flexible, online learning experience, you’ll gain in-depth knowledge of classroom management, supporting pupils with diverse learning needs, and assisting in the development of lesson plans. Whether you’re looking to enhance your current skills or considering a future in educational support, this course provides a solid foundation to help you flourish in your career. This course covers essential topics like effective communication with students and teachers, understanding child development, and how to maintain a productive learning environment. With a focus on the theoretical aspects of education, you will develop the tools to make a meaningful impact in schools, nurseries, and other educational institutions. The course is designed to ensure that you can contribute confidently to supporting student success and managing classroom dynamics. Ideal for those looking to make a difference, this course sets you on the path to a rewarding role in education, offering the flexibility to study at your own pace, without the need for classroom attendance "Teaching Assistant - QLS Endorsed Bundle." Teaching Assistant - QLS Endorsed Bundle Includes the following Courses Course 01: Diploma in Teaching Assistant at QLS Level 4 Course 02: Certificate in SEN Teaching Assistant at QLS Level 3 Course 03: Diploma in Phonics Teaching at QLS Level 5 Course 04: Certificate in CBT (Cognitive Behavioural Therapy) at QLS Level 3 Course 05: Diploma in Sports Coaching at QLS Level 5 Course 06: Certificate in ADHD Awareness at QLS Level 3 Course 07: Diploma in Psychology at QLS Level 4 Course 08: Diploma in Art Therapy at QLS Level 4 Course 09: Diploma in Life Coaching at QLS Level 5 Course 10: Diploma in Career Coaching at QLS Level 5 Learning Outcomes Support diverse learners through specialised teaching strategies. Master effective coaching techniques for educational success. Apply cognitive behavioural therapy principles in real-world scenarios. Demonstrate proficiency in sports coaching at an advanced level. Recognise and respond to the unique needs of individuals with ADHD. Understand fundamental principles of psychology and its application. Utilise art therapy for emotional expression and well-being. Provide impactful life coaching grounded in psychological principles. Guide individuals through strategic career planning and decision-making. Apply SEN teaching techniques for inclusive educational environment Key Features 10 FREE QLS Endorsed Certificate Fully online, interactive course Self-paced learning and laptop, tablet, smartphone-friendly 24/7 Learning Assistance Discounts on bulk purchases Picture this: a dynamic blend of knowledge, hands-on skills, and a dash of enthusiasm, all wrapped up in a comprehensive package designed to elevate your role as a Teaching Assistant. Immerse yourself in a diverse range of courses designed to elevate your expertise and broaden your skill set. Dive into the art of supporting learners with a comprehensive Diploma in Teaching Assistant , diving into the intricacies of Special Educational Needs with a Certificate in SEN Teaching Assistant. Hone your phonics teaching skills, and gain valuable insights into cognitive behavioural therapy with a Certificate. Elevate your impact in sports coaching with a Diploma, and deepen your understanding of ADHD awareness with a Certificate. Explore the realms of psychology, art therapy, life coaching, and career coaching through specialised diplomas. This comprehensive bundle is crafted to empower you with knowledge and proficiency, opening doors to new possibilities in the dynamic field of education and support. Develop a nuanced understanding of diverse learning needs, master the art of effective coaching, and gain insights into psychological principles. Enhance your skills in providing specialised assistance to learners with unique requirements. Navigate the intricacies of cognitive behavioural therapy and ADHD awareness, equipping yourself with valuable insights for holistic support. Dive into the psychology of human behaviour, harness the therapeutic power of art, and unlock the keys to effective life and career coaching. This bundle is tailored for individuals seeking a comprehensive education support foundation and a deeper understanding of behavioural and psychological dynamics within the educational landscape. Certificate Once you've successfully completed your course, you will immediately be sent a CPD-accredited PDF certificate. Also, you can have your printed certificate delivered by post (shipping cost £3.99). After successfully completing the assignment, learners will be able to order FREE QLS Endorsed certificate for Each Courses. CPD 55 CPD hours / points Accredited by CPD Quality Standards Who is this course for? Aspiring Teaching Assistants Educational Support Professionals Coaches and Sports Enthusiasts Individuals Interested in Psychology Aspiring Art Therapists Life and Career Coaches in Training Those Passionate About Special Educational Needs Professionals Seeking a Holistic Educational Support Skill Set Career path Teaching Assistant SEN Teaching Assistant Sports Coach ADHD Support Specialist Psychology Research Assistant Career Guidance Counsellor Certificates Digital certificate Digital certificate - Included Hard copy certificate Hard copy certificate - Included Hardcopy Certificate (UK Delivery): For those who wish to have a physical token of their achievement, we offer a high-quality, printed certificate. This hardcopy certificate is also provided free of charge. However, please note that delivery fees apply. If your shipping address is within the United Kingdom, the delivery fee will be only £3.99. Hardcopy Certificate (International Delivery): For all international addresses outside of the United Kingdom, the delivery fee for a hardcopy certificate will be only £10. QLS Endorsed Certificate Hard copy certificate - Included

Level 4 Teaching Assistant - QLS Endorsed Course
Delivered Online On Demand1 hour
£499

AWS Cloud Practitioner Essentials

By Nexus Human

Duration 1 Days 6 CPD hours This course is intended for Sales Legal Marketing Business analysts Project managers AWS Academy students Other IT-related professionals Overview Summarize the working definition of AWS Differentiate between on-premises, hybrid-cloud, and all-in cloud Describe the basic global infrastructure of the AWS Cloud Explain the six benefits of the AWS Cloud Describe and provide an example of the core AWS services, including compute, network, databases, and storage Identify an appropriate solution using AWS Cloud services with various use cases Describe the AWS Well-Architected Framework Explain the shared responsibility model Describe the core security services within the AWS Cloud Describe the basics of AWS Cloud migration Articulate the financial benefits of the AWS Cloud for an organization?s cost management Define the core billing, account management, and pricing models Explain how to use pricing tools to make cost-effective choices for AWS services This course is for individuals who seek an overall understanding of the Amazon Web Services (AWS) Cloud, independent of specific technical roles. You will learn about AWS Cloud concepts, AWS services, security, architecture, pricing, and support to build your AWS Cloud knowledge. This course also helps you prepare for the AWS Certified Cloud Practitioner exam. Prerequisites General IT technical knowledge, General IT business knowledge 1 - Introduction to Amazon Web Services Summarize the benefits of AWS Describe differences between on-demand delivery and cloud deployments Summarize the pay-as-you-go pricing model 2 - Compute in the Cloud Describe the benefits of Amazon Elastic Compute Cloud (Amazon EC2) at a basic level Identify the different Amazon EC2 instance types Differentiate between the various billing options for Amazon EC2 Describe the benefits of Amazon EC2 Auto Scaling Summarize the benefits of Elastic Load Balancing Give an example of the uses for Elastic Load Balancing Summarize the differences between Amazon Simple Notification Service (Amazon SNS) and Amazon Simple Queue Services (Amazon SQS) Summarize additional AWS compute options 3 - Global Infrastructure and Reliability Summarize the benefits of the AWS Global Infrastructure Describe the basic concept of Availability Zones Describe the benefits of Amazon CloudFront and Edge locations Compare different methods for provisioning AWS services 4 - Networking Describe the basic concepts of networking Describe the difference between public and private networking resources Explain a virtual private gateway using a real life scenario Explain a virtual private network (VPN) using a real life scenario Describe the benefit of AWS Direct Connect Describe the benefit of hybrid deployments Describe the layers of security used in an IT strategy Describe which services are used to interact with the AWS global network 5 - Storage and Databases Summarize the basic concept of storage and databases Describe benefits of Amazon Elastic Block Store (Amazon EBS) Describe benefits of Amazon Simple Storage Service (Amazon S3) Describe the benefits of Amazon Elastic File System (Amazon EFS) Summarize various storage solutions Describe the benefits of Amazon Relational Database Service (Amazon RDS) Describe the benefits of Amazon DynamoDB Summarize various database services 6 - Security Explain the benefits of the shared responsibility model Describe multi-factor authentication (MFA) Differentiate between the AWS Identity and Access Management (IAM) security levels Describe security policies at a basic level Explain the benefits of AWS Organizations Summarize the benefits of compliance with AWS Explain primary AWS security services at a basic level 7 - Monitoring and Analytics Summarize approaches to monitoring your AWS environment Describe the benefits of Amazon CloudWatch Describe the benefits of AWS CloudTrail Describe the benefits of AWS Trusted Advisor 8 - Pricing and Support Understand AWS pricing and support models Describe the AWS Free Tier Describe key benefits of AWS Organizations and consolidated billing Explain the benefits of AWS Budgets Explain the benefits of AWS Cost Explorer Explain the primary benefits of the AWS Pricing Calculator Distinguish between the various AWS Support Plans Describe the benefits of AWS Marketplace 9 - Migration and Innovation Understand migration and innovation in the AWS Cloud Summarize the AWS Cloud Adoption Framework (AWS CAF) Summarize six key factors of a cloud migration strategy Describe the benefits of various AWS data migration solutions, such as AWS Snowcone, AWS Snowball, and AWS Snowmobile Summarize the broad scope of innovative solutions that AWS offers Summarize the five pillars of the AWS Well-Architected Framewor 10 - AWS Certified Cloud Practitioner Basics Determine resources for preparing for the AWS Certified Cloud Practitioner examination Describe benefits of becoming AWS Certified

AWS Cloud Practitioner Essentials
Delivered OnlineFlexible Dates
£675