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

301 C++ courses in Rothwell delivered Live Online

Vaccination / Injection Course (GPT601)

4.6(39)

By Geopace Training

Learn how to administer vaccines or injections ... Nationally Recognised Qualification Includes IM, ID and Sub-Cut Injection methods OCN Accredited - Level 4 (Foundation Degree - FDSc) Covers all steps to safely perform a vaccination Use same techniques and skills for aesthetic therapies Includes B12, Vitamin C and other treatments Essential qualification for all injections Basic understanding of English language required OPEN TO ALL APPLICANTS

Vaccination / Injection Course (GPT601)
Delivered in Milton Keynes + 6 more or Online + more
£195

Advanced Phlebotomy - Skills & Techniques (GPT005)

4.6(39)

By Geopace Training

The UK's first and only Level 4 qualification in Phlebotomy (equivalent to Ireland Level 6) FDSc (Foundation Degree Level) qualification Nationally Recognised certificate Dually accredited: Open College Network and CPD Covers both aspirated and evacuated systems Covers specialised blood collection systems & methods Classroom or Virtual Classroom learning options Comprehensive Training Kit is provided when booking our Virtual Classroom option (yours to keep) Complete your training from beginner to advanced level This course either follows on from our Introduction to Phlebotomy Course or can be combined with our introductory course as part of a course package (see below) Available to candidates who have completed (or are currently enrolled to complete) our Introduction to Phlebotomy Course or have previous phlebotomy practical experience.

Advanced Phlebotomy - Skills & Techniques (GPT005)
Delivered in Liverpool + 22 more or Online + more
£195

INWARDS & OUTWARD PROCESSING AND RETURNED GOODS RELIEF

By Export Unlocked Limited

The course will cover special procedures and the benefits of using IP and OP in your compliance.

INWARDS & OUTWARD PROCESSING AND RETURNED GOODS RELIEF
Delivered Online + more
£295

C01M05 - FD&FA Maintenance principles - BS 5839-1 (online)

5.0(1)

By Ember Compliance

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

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

C++ Bootcamp Course, 2-Months

4.6(12)

By PCWorkshops

C++ Bootcamp is for coding beginners: You want all the basic stuff, all the advanced stuff and practical experience and get a fantastic job in C++

C++ Bootcamp Course, 2-Months
Delivered OnlineFlexible Dates
£2,000

C To Master Skill: Learn C Programming Technique

By simplivlearning

Step by Step explanation of each topics in C Language with lots of programs.

C To Master Skill: Learn C Programming Technique
Delivered OnlineFlexible Dates
£10

Advanced C Plus Plus

By Nexus Human

Duration 3 Days 18 CPD hours This course is intended for If you have worked in C++ but want to learn how to make the most of this language, especially for large projects, this course is for you. Overview By the end of this course, you'll have developed programming skills that will set you apart from other C++ programmers. After completing this course, you will be able to: Delve into the anatomy and workflow of C++ Study the pros and cons of different approaches to coding in C++ Test, run, and debug your programs Link object files as a dynamic library Use templates, SFINAE, constexpr if expressions and variadic templates Apply best practice to resource management This course begins with advanced C++ concepts by helping you decipher the sophisticated C++ type system and understand how various stages of compilation convert source code to object code. You'll then learn how to recognize the tools that need to be used in order to control the flow of execution, capture data, and pass data around. By creating small models, you'll even discover how to use advanced lambdas and captures and express common API design patterns in C++. As you cover later lessons, you'll explore ways to optimize your code by learning about memory alignment, cache access, and the time a program takes to run. The concluding lesson will help you to maximize performance by understanding modern CPU branch prediction and how to make your code cache-friendly. Anatomy of Portable C++ Software Managing C++ Projects Writing Readable Code No Ducks Allowed ? Types and Deduction C++ Types Creating User Types Structuring our Code No Ducks Allowed ? Templates and Deduction Inheritance, Polymorphism, and Interfaces Templates ? Generic Programming Type Aliases ? typedef and using Class Templates No Leaks Allowed ? Exceptions and Resources Exceptions in C++ RAII and the STL Move Semantics Name Lookup Caveat Emptor Separation of Concerns ? Software Architecture, Functions, and Variadic Templates Function Objects and Lambda Expressions Variadic Templates The Philosophers' Dinner ? Threads and Concurrency Synchronous, Asynchronous, and Threaded Execution Review Synchronization, Data Hazards, and Race Conditions Future, Promises, and Async Streams and I/O File I/O Implementation Classes String I/O Implementation I/O Manipulators Making Additional Streams Using Macros Everybody Falls, It's How You Get Back Up ? Testing and Debugging Assertions Unit Testing and Mock Testing Understanding Exception Handling Breakpoints, Watchpoints, and Data Visualization Need for Speed ? Performance and Optimization Performance Measurement Runtime Profiling Optimization Strategies Cache Friendly Code

Advanced C Plus Plus
Delivered OnlineFlexible Dates
Price on Enquiry

C++ programming foundation

5.0(3)

By Systems & Network Training

C++ training course description A hands on introduction to programming in the C++ language. The course concentrates on aspects that will be new to experienced C programmers and so is not suitable for those without C knowledge. What will you learn Write C++ programs Debug C++ programs. Examine existing code and determine its function. Use classes, function overloading, operator overloading, inheritance and virtual functions within C++ programs. C++ training course details Who will benefit: Programmers needing to write C++ code. Programmers needing to maintain C++ code. Prerequisites: C programming foundation. Duration 5 days C++ training course contents The origins of C++ C++ as a better C, C++ and Object Oriented Programming, encapsulation, polymorphism, inheritance. C++ standards. Getting started Simple C++ programs. Classes Basics, constructor and destructor functions, member and friend functions. Using objects. Default, copy and conversion constructors. A better C Arrays, pointers and references, new and delete. Improved safety with smart pointers, Resource Acquisition in Initialization (RAII). Functions in C++ Function overloading, default arguments, inline functions, Lambda functions. Templates Template classes and functions. Standard Library Containers, Iterators, algorithms, function objects. Operator overloading Basics, binary operators, the this pointer, relational operators, unary operators. Members versus friends. Inheritance Base class access control, protected members, multiple inheritance, virtual base classes. More I/O Manipulators, customising inserters, extractors. File I/O. Virtual functions Pointers to derived classes, run time polymorphism. Exception handling Throwing errors, trying code and catching errors.

C++ programming foundation
Delivered in Internationally or OnlineFlexible Dates
£3,697

Advanced C++ programming

5.0(3)

By Systems & Network Training

Advanced C++ training course description The course will give a broad overview of the C++ Programming language, focusing on modern C++, up to C++17. This course will cover the use of the Standard Library, including containers, iterator, function objects and algorithms. From the perspective of application development, a number of design patterns will be considered. What will you learn Write C++ programs using the more esoteric language features. Utilise OO techniques to design C++ programs. Use the standard C++ library. Exploit advanced C++ techniques Advanced C++ training course details Who will benefit: Programmers needing to write C++ code. Programmers needing to maintain C++ code. Prerequisites: C++ programming foundation. Duration 5 days Advanced C++ training course contents Study of a string class Create a string class as a means to investigate many issues, involving the use of operator overloading and including overloading new and delete. Creation of the class will also require consideration of 'const correctness'. Exception handling Consider the issues involved in exception handling including the concept of exception safety. Templates Review definition of template functions, including template parameter type deduction. Introduction to template metaprogramming. Newer features including template template parameters and variadic templates. Creation of template classes. Design patterns Introduction to Design Patterns and consideration of a number of patterns, such as, factory method, builder, singleton and adapter. The standard C++ library (STL) Standard Library features, such as, Containers, Iterator, Function Objects and Algorithms. Introduction to Lambda expressions. C++ and performance The writing of code throughout the course will be oriented towards performant code, including use of R Value references and 'move' semantics. Pointers The use of pointers will be considered throughout the course. Smart pointers will be considered to improve program safety and help avoid the use of 'raw' pointers. Threading This section will consider the creation of threads and synchronisation issues. A number of synchronisation primitives will be considered. Async and the use of Atomic will also be considered. New ANSI C++ features Summarising some of the newer features to be considered are: Auto, Lambdas expression, smart pointers, variadic templates and folds, R Value references and tuple together with structured binding.

Advanced C++ programming
Delivered in Internationally or OnlineFlexible Dates
£3,697

Introduction to C Plus Plus Programming Essentials (TTCP2100)

By Nexus Human

Duration 4 Days 24 CPD hours This course is intended for This is an introductory-level C++ programming course designed for developers with experience programming in C or other languages. Practical hands-on prior programming experience and knowledge is required. Overview This 'skills-centric' course is about 50% hands-on lab and 50% lecture, designed to train attendees in basic coding with C++, coupling the most current, effective techniques with the soundest industry practices. Our engaging instructors and mentors are highly experienced practitioners who bring years of current 'on-the-job' experience into every classroom. Working in a hands-on learning environment, guided by our expert team, attendees will learn: Writing procedural programs using C++ Using private, public and protected keywords to control access to class members Defining a class in C++ Writing constructors and destructors Writing classes with const and static class members Overloading operators Implementing polymorphic methods in programs Writing programs using file I/O and string streams Using manipulators and stream flags to format output Using the keyword template to write generic functions and classes Writing programs that use generic classes and functions Writing programs that use algorithms and containers of the Standard Library Apply object-oriented design techniques to real-world programming problems Using algorithms and containers of the Standard Library to manipulate string data Understand how C++ protects the programmer from implementation changes in other modules of an application Using try() blocks to trap exceptions Using catch() blocks to handle exceptions Defining exceptions and using throw to trigger them Introduction to C++ Programming / C++ Essentials is a skills-focused, hands-on C++ training course geared for experienced programmers who need to learn C++ coupled with sounds coding skills and best practices for OO development. Students will leave this course armed with the required skills to put foundation-level C++ programming skills right to work in a practical environment. The central concepts of C++ syntax and style are taught in the context of using object-oriented methods to achieve reusability, adaptability and reliability. Emphasis is placed on the features of C++ that support abstract data types, inheritance, and polymorphism. Students will learn to apply the process of data abstraction and class design. Practical aspects of C++ programming including efficiency, performance, testing, and reliability considerations are stressed throughout. Comprehensive hands on exercises are integrated throughout to reinforce learning and develop real competency Moving from C to C++ (Optional) New Compiler Directives Stream Console I/O Explicit Operators Standard Libraries Data Control Capabilities Handling Data New Declaration Features Initialization and Assignment Enumerated Types The bool Type Constant Storage Pointers to Constant Storage Constant Pointers References Constant Reference Arguments Volatile Data Global Data Functions Function Prototypes and Type Checking Default Function Data Types Function Overloading Problems with Function Overloading Name Resolution Promotions and Conversions Call by Value Reference Declarations Call-by-Reference and Reference Types References in Function Return Constant Argument Types Conversion of Parameters Using Default Initializers Providing Default Arguments Inline Functions Operator Overloading Advantages and Pitfalls of Overloading Member Operator Syntax and Examples Class Assignment Operators Class Equality Operators Non-Member Operator Overloading Member and Non-Member Operator Functions Operator Precedence This Pointer Overloading the Assignment Operator Overloading Caveats Creating and Using Objects Creating Automatic Objects Creating Dynamic Objects Calling Object Methods Constructors Initializing Member consts Initializer List Syntax Allocating Resources in Constructor Destructors Block and Function Scope File and Global Scope Class Scope Scope Resolution Operator :: Using Objects as Arguments Objects as Function Return Values Constant Methods Containment Relationships Dynamic Memory Management Advantages of Dynamic Memory Allocation Static, Automatic, and Heap Memory Free Store Allocation with new and delete Handling Memory Allocation Errors Controlling Object Creation Object Copying and Copy Constructor Automatic Copy Constructor Conversion Constructor Streaming I/O Streams and the iostream Library Built-in Stream Objects Stream Manipulators Stream Methods Input/Output Operators Character Input String Streams Formatted I/O File Stream I/O Overloading Stream Operators Persistent Objects Introduction to Object Concepts The Object Programming Paradigm Object-Orientated Programming Definitions Information Hiding and Encapsulation Separating Interface and Implementation Classes and Instances of Objects Overloaded Objects and Polymorphism Declaring and Defining Classes Components of a Class Class Structure Class Declaration Syntax Member Data Built-in Operations Constructors and Initialization Initialization vs. Assignment Class Type Members Member Functions and Member Accessibility Inline Member Functions Friend Functions Static Members Modifying Access with a Friend Class Templates Purpose of Template Classes Constants in Templates Templates and Inheritance Container Classes Use of Libraries Strings in C++ Character Strings The String Class Operators on Strings Member Functions of the String Class Inheritance Inheritance and Reuse Composition vs. Inheritance Inheritance: Centralized Code Inheritance: Maintenance and Revision Public, Private and Protected Members Redefining Behavior in Derived Classes Designing Extensible Software Systems Syntax for Public Inheritance Use of Common Pointers Constructors and Initialization Inherited Copy Constructors Destructors and Inheritance Public, Protected, Private Inheritance Exceptions Types of Exceptions Trapping and Handling Exceptions Triggering Exceptions Handling Memory Allocation Errors C++ Program Structure Organizing C++ Source Files Integrating C and C++ Projects Using C in C++ Reliability Considerations in C++ Projects Function Prototypes Strong Type Checking Constant Types C++ Access Control Techniques Polymorphism in C++ Definition of Polymorphism Calling Overridden Methods Upcasting Accessing Overridden Methods Virtual Methods and Dynamic Binding Virtual Destructors Abstract Base Classes and Pure Virtual Methods Multiple Inheritance Derivation from Multiple Base Classes Base Class Ambiguities Virtual Inheritance Virtual Base Classes Virtual Base Class Information The Standard Template Library STL Containers Parameters Used in Container Classes The Vector Class STL Algorithms Use of Libraries

Introduction to C Plus Plus Programming Essentials (TTCP2100)
Delivered OnlineFlexible Dates
Price on Enquiry

Educators matching "C++"

Show all 5
Cabe

cabe

Northampton

The role of CABE’s Presidential Team and Board is to set out the strategic objectives and aims of the Association and to ensure their delivery. All representatives on the board are members of CABE are nominated to the position by Chartered Members. They represent a mixture of views from different specialities and areas across the industry making sure there is a variety of perspectives to help shape CABE’s unifying voice. CABE Patron Lord John Lytton BSc FCABE (Hon) IRRV FRICS In his role as patron of CABE, Lord Lytton acts as an influential figurehead, creating valuable partnerships with organisations across the globe through his extensive network of industry and Governmental contacts and assisting the Association in raising its profile and influence within the building and construction industry. Lord Lytton is a leading chartered surveyor and an active contributor to the House of Lords. He is chairman of the boundaries and party walls professional panel of the Royal Institution of Chartered Surveyors and a Vice Chairman of the All Party Parliamentary Group for Excellence in the Built Environment as well as being newly appointed to the House of Lords Information Committee. He has been an Honorary Fellow of ABE since 1997, and CABE since its formation in 2014. Presidential Team Joseph Birt PCABE FCABE – President Joseph Birt worked for 22 years within Local Authority Building Control in various posts; the latter 12 years as Specialist Support Officer for a Cluster of Councils, which included responsibility for advising on fire safety aspects of the Building Regulations. He was, for ten years, a Director of the William Keown Charitable Trust, which champions equality in the built environment and celebrates the achievements of people with disabilities. He has been elected twice as Chairman of the Northern Ireland Fire Safety Panel. By Ministerial Appointment he served two terms on the Northern Ireland’s Building Regulations Advisory Committee (BRAC) where he contributed to the development of the current Northern Ireland Building Regulations. He has also served two terms on the Department of Communities, Historic Buildings Council. Joseph is a Chartered Building Engineer, who continues to be active within his local CABE Region; currently Treasurer and past Chairman of the CABE Northern Ireland Region’. He is now the Technical Director of FRSNI Ltd. Richard Smith VPCABE FCABE – Vice-President Richard Smith commenced his employment as a YTS Trainee in Building Control back in 1989 and has progressed his career to become the Head of Standards and Innovation and Research at NHBC where he oversees the delivery and implementation of NHBC's Technical Standards, Technical policy, Acceptance of innovative and non-traditional construction methods and leads the NHBC Foundation. Richard is also a member of The Building Regulations Advisory Committee and support a number of Sub Committees including new building broadband connectivity, Part M Working Group and Building Act 1984 working group. Richard Flynn CEng CEnv CWEM VPCABE FCABE – Vice-President Richard is an independent private practitioner trading as Flynn & Shaw, Chartered Building Engineers. As well as being a Chartered Building Engineer, he is a Chartered Engineer, Chartered Environmentalist, Chartered Water and Environment Manager, Registered Building Surveyor and Certified Site Assessor. Richard is a recognised expert in the area of onsite wastewater treatment and provides a complete site suitability assessment, treatment system design, and certification of installation for onsite wastewater treatment systems throughout Ireland. Richard has been Chair of the CABE Membership and Professional Standards Committee (MPSC) since its inception in 2019 as well as member of the Southern Ireland Region committee of CABE. Stewart C McArthur BSc (Hons) PPCABE FCABE RICS Dip BC – Past President Stewart has 30 years’ experience in the house building industry. He has a degree in Fire Risk Engineering from Glasgow Caledonian University. During his studies he also attended seminars at Maryland University and had the privilege of being tutored by some of the most widely respected experts in the fire engineering sector. Stewart began his career in building standards before moving into the warranty sector. He also has recent experience as a site manager. This broad experience has given him a greater understanding of the house building industry from all perspectives. He has been a member of CABE since 2001 and has played an active part in the regional committee for the past ten years. CABE Board Daniel Fordham FCABERussell Urwin FCABETony Harvey-Soanes FCABEPaul Grinyer FCABEDavid Courtney CEnv FCABE Lindsay Richards BSc MBA MCABE Chartered Building EngineerZoe Cox FCABEMishka Scott MCABE Chartered Building EngineerDavid Kitcatt FCABEIsacc Sunder Packianathan FCABE Executive Team Dr Gavin Dunn BSc (Hons) MSc PhD FCABE – Chief Executive Originally trained as an architect, Gavin initially practised in North America with a large construction engineering firm before returning to the UK to specialise in the energy and environmental performance of buildings in 1998. Gavin advanced this specialism through positions at the Welsh School of Architecture, and Elmhurst Energy, where he helped develop some of Europe’s leading building energy certification and labelling systems. In 2013 Gavin was appointed Director of Building Performance at the Building Research Establishment (BRE) where he was responsible for a portfolio of BRE's globally leading services including BREEAM and CEEQUAL the world’s foremost environmental assessment methods for the built environment. In 2018, Gavin was appointed as Chief Executive of CABE where he works to help enable a more professional construction sector that works to create better, safer and more sustainable buildings that enhance people’s lives. Gavin was a member of the Building Regulations Advisory Committee (BRAC) of the UK Government from 2015 to 2022 where he served as Chairman of the Future Homes Standard Working Group. Jackie Macaulay – Chief Operating Officer Jackie is responsible for all aspects of the organisations operations and internal processing. Her remit includes compliance, legal services, HR, OD & change management, IT, facilities, PR & communications, membership processing and deputising for the CEO in his absence. Her experience spans a range of manufacturing, construction and not-for-profit organisations with her first Director position as HR Director for Electrolux in 2004. Jackie has worked across the UK, Ireland and internationally across Europe and Asia managing diverse and multi-disciplined teams. She brings to CABE the senior expertise that will develop the organisation as it moves forward with its modernisation and development strategy. Richard Harral BA BArch FCABE RIBA – Technical Director Richard Harral is the Technical Director for CABE. He has previously worked as an architect in both public and private sector practice, and as a policy official in the Building Regulations Division of MHCLG between 2007 and 2014 where he oversaw introduction of policies on accessible housing, security standards, broadband and the national space standard for new homes. He was subsequently Head of Technical Policy in the period 2014-2017. He currently sits on the CIC Competence Steering Group, and chairs a number of competence working groups including on Designer and Architect Competence. He was Technical author for Flex 8670, the recently published British Standard on Competence for building safety in Built environment industries. Alison Duckles CBE – Professional Development Director Alison has worked in the Construction sector for over 24 years, predominantly with Laing O’Rourke. She previously held roles with the Chartered Institution of Waste Management and Eastern Group plc in the power sector. Predominantly focused on learning and development while driving competence, professional standards, and futures skills requirement; Alison worked extensively on the creation of new construction apprenticeships, engaging employers, providers, sector bodies and Government. In her role with CABE Alison is responsible for continuing to strengthen partnerships with academic institutions, provide members with quality training and CPD opportunities and Support the Association’s ambition to drive competency and professional responsibility in the construction sector. CABE Staff Membership Services Team – membership@cbuilde.com Our friendly, experienced membership team is always on hand to offer the best possible advice on becoming a member of CABE, advising you on the best route to membership and helping you to progress through our grades as your career develops. Amy Chatfield – Membership Services Manager Amy leads the Membership Team, which is responsible for all membership processing, professional interviews for CABE Chartered Membership and registrations for both the Engineering Council and Society for the Environment. With a strong background in customer service, Amy joined CABE in 2015. She has held a variety of positions, including roles in the Publications Team – working on the building engineer journal – and the Events & Marketing Team. After building extensive knowledge of the membership journey, she moved into the Membership Team in 2018; since then, she has worked continuously to improve processes, ensuring that the Association provides excellent customer service to all new and existing members. Alongside her role as Membership Services Manager, Amy is a trained Mental Health First Aider (MHFA), providing wellbeing support for her colleagues. Sabrina Miah Professional Review Co-ordinator Tara Talley Membership Services Co-ordinatorJoshua Law Membership Services Administrator Communications Team – info@cbuilde.com The Communications team deliver vital resources, news, and information to our membership, keeping them up-to-date with industry changes, standards, and opinions. This is done through direct contact with our membership, delivering our monthly journal, BuildingEngineer . Laura Richardson - Head of Communications Laura has been with CABE since 2018 when she joined as PR and Communication manager. She is responsible for implementing the communications strategy across the Association’s communication streams including PR, Marketing, and Digital Infrastructure functions. She joined CABE from Booker, where she gained experience in website marketing and design. Along with her previous experience working in publications and marketing roles in the construction industry she brings a lot of skills and strengths to the team. Maya Bullock Communications & Digital Designer Abigail Crook Communications Administrator Professional Development Team – training@cbuilde.com CABE provides a range of services to our members and the wider industry to assist in the expansion of knowledge in respect of the built environment. Our Professional Development Team facilitate this by ensuring opportunities such as our suite of regional conferences, annual conference & exhibition, training courses, local/regional CPD and our 12 UK & ROI regions run smoothly and offer the highest possible quality in their delivery. Kirri Porter-White - Competency & Learning Lead Kirri has been with the association since 2015, working initially within the Regional Services and Events team to provide support for the regional committees over CABE’s 12 regions in the UK and Ireland, as well as our international Chapters. Kirri is responsible for the development and deployment of CABE’s training and learning infrastructure, focusing on both technical competency and wellbeing within the construction industry. Kirri’s team also work with the Professional Development Director on academic accreditation and relationships with universities. Rosemary Brewill Regional Services Co-ordinatorShaneka Foster Professional Development Administrator Operations Team – info@cbuilde.com The Operations Team are involved in the day-to-day activities of the Association, to ensure the smooth running of all CABE’s activities, including Finance, IT, Legal and Facilities. Carl Pearson - Head of Legal and Governance Services Carl has worked both private practice and in-house roles, within the sectors of welfare law, housing law, debt law, consumer law, compliance law, and commercial law. Joining CABE in 2018 from Dixons Carphone, Carl is responsible for providing the Association with internal legal advice on its business practices, activities and contractual relationships, development and review of various internal policies and procedures and day-to-day management of disciplinary and complaints investigations. Jacky Lonsdale - Head of Finance Jacky joined CABE in November 2021 and brings a wealth of experience having worked for a number of both large corporate companies and smaller businesses including JVC, Total Oil Marine, Bosch Security Systems and Vinci Construction. Before joining CABE she worked for the Auto-Cycle Union, a motorcycle membership organisation. As Head of Finance Jacky is responsible for the delivery of financial information to the management team. Finance encompasses all areas of accounting processes, monthly management accounts, forecasts, annual budgets and financial statements. It also covers all aspects of audit liaison and statutory return requirements. Jacky’s mission is to ensure financial reporting is accurate, concise and on time. Helena Wootton Reception and Office ManagerAlison Lodge Executive AssistantCharlotte Taylor Finance Assistant Hong Kong Office – info@cbuilde.com Vivian Sie BA (Hons) MA MSc - General Manager Vivian is the General Manager of CABE Hong Kong Chapter responsible for daily operation, enhancing communication with members and working partners, upholding the reputation of one of the international recognised associations in Hong Kong and beyond.Before joining CABE, Vivian had experience in the areas of corporate governance and public sector management where she was instrumental in providing efficient secretarial support to a local leading professional institute and a regulatory body. Her remit included membership processing and benefits, media relations, disciplinary proceedings, set-up of Biennale Foundation and Beijing Representative Office, key event planning and execution. After graduating with BA honours in translation, Vivian obtained a distinction in the Master of Arts in International Communication from the Macquarie University, Australia. She has a Master of Science in Public Sector Management. Mable Hung Administrator