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

1617 Property courses in Alton delivered Online

PAT - Portable Appliance Testing - Level 3

5.0(27)

By PETM

Portable Appliance Testing (PAT) Training Course: This Portable Appliance Testing (PAT) Training Course is designed for individuals looking to enhance their skills in electrical risk management and workplace safety. Whether you are a Maintenance Manager, PAT Tester, Electrical Engineering Technician, or simply looking to refresh your knowledge in electrical testing, this course provides essential strategies to help you protect your work environment by mitigating electrical risks. Gain practical, industry-relevant expertise that can set you apart in your career.

PAT - Portable Appliance Testing - Level 3
Delivered Online On Demand4 hours 45 minutes
£30

The Intelligent Investor

5.0(1)

By LearnDrive UK

This Intelligent Investor course teaches you how to invest wisely for your best returns.

The Intelligent Investor
Delivered Online On Demand1 hour
£5

Layperson Investing Course

5.0(1)

By LearnDrive UK

It will teach you how to invest your money wisely to achieve your financial goals.

Layperson Investing Course
Delivered Online On Demand1 hour
£5

Investing: Attain Financial Freedom in One Year

5.0(1)

By LearnDrive UK

Through the use of modern models and strategies, this course will present several ways to attain financial freedom.

Investing: Attain Financial Freedom in One Year
Delivered Online On Demand1 hour
£5

Social Housing Management

5.0(2)

By Institute of Beauty & Makeup

CPD Accredited | Career Oriented Learning Modules | 24x7 Tutor Support | Lifetime Access

Social Housing Management
Delivered Online On Demand1 hour
£12

Basic Java Programming for Developers New to OO (TT2120)

By Nexus Human

Duration 5 Days 30 CPD hours This course is intended for In order to be successful in this course you should have incoming hands-on experience with another programming language. This course is not for non-developers or new developers. Possible roles that may attend this course include: Software Developers: Professionals who have been working with other programming languages and want to expand their skillset by learning Java and its object-oriented features. Web Developers: Those who work on web applications and want to enhance their back-end development capabilities with Java. Mobile App Developers: Developers who wish to enter the world of Android app development, where Java is a widely used language for creating mobile applications. Overview This 'skills-centric' course is about 50% hands-on lab and 50% lecture, designed to train attendees in core OO coding and Java development skills, 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 to: Understand what OO programming is and what the advantages of OO are in today's world Work with objects, classes, and OO implementations Understand the basic concepts of OO such as encapsulation, inheritance, polymorphism, and abstraction Understand not only the fundamentals of the Java language, but also its importance, uses, strengths and weaknesses Understand the basics of the Java language and how?it relates to OO programming and the Object Model Learn to use Java exception handling Understand and use classes, inheritance and polymorphism Understand and use collections, generics, autoboxing, and enumerations Become familiar with the concept of functional programming using Lambda Expressions Process large amounts of data using the Stream API introduced in Java 8 Discover the new Date/Time API Use the JDBC API for database access Work with annotations Take advantage of the Java tooling that is available with the programming environment being used in the class Java 8 Features: Lambda Expressions, Method and Constructor references, The Streams API, Collectors, The Optional class Geared for experienced developers, Basic Java Programming for Developers New to OO, this hands-on, workshop-style course will provide you with an immersive learning experience that will expand your skillset and open doors to new opportunities within the ever-growing technology landscape. Mastering Java and its powerful capabilities will provide you with the competitive edge you need to stand out in today's fast-paced development world. Working in a hands-on learning environment led by our expert coach, you?ll thoroughly explore the foundations of the Java platform, essential programming concepts, and advanced topics, ensuring you acquire a strong understanding of the language and its ecosystem. The object-oriented programming principles taught in this course promote code reusability and maintainability, enabling you to streamline development processes and reduce long-term costs. As you progress through the course, you will also gain familiarity with using an IDE, enhancing your development workflow and collaboration with other Java developers, enabling you to integrate seamlessly into new projects and teams. You?ll also gain practical experience in applying the concepts and techniques learned, solidifying your newly acquired skills and facilitating their direct application in real-world scenarios. You?ll exit this course empowered to create robust, scalable, and efficient Java-based applications that drive innovation and growth for your organization The Java Platform The Java Platform Lifecycle of a Java Program Responsibilities of JVM Documentation and Code Reuse Using the JDK Explain the JDK?s file structure Use the command line compiler to compile a Java class Use the command line Java interpreter to run a Java application class The IntelliJ Paradigm Introduce the IntelliJ IDE The Basics of the IntelliJ interface IntelliJ Projects and Modules Creating and running Java applications Writing a Simple Class Write a Java class that does not explicitly extend another class Define instance variables for a Java class Create object instances Primitives vs Object References Implement a main method to create an instance of the defined class Adding Methods to the Class Write a class with accessor methods to read and write instance variables Write a constructor to initialize an instance with data Write a constructor that calls other constructors of the class to benefit from code reuse Use the this keyword to distinguish local variables from instance variables Object-Oriented Programming Real-World Objects Classes and Objects Object Behavior Methods and Messages Inheritance, Abstraction, and Polymorphism Encapsulation Inheritance Method Overriding Polymorphism Essential Java Programming Essential Java Programming Language Statements Arithmetic operators Operators to increment and decrement numbers Comparison operators Logical operators Return type of comparison and logical operators Use for loops Switch Expressions Switch Expressions and yield Using Strings and Text Blocks Create an instance of the String class Test if two strings are equal Get the length of a string Parse a string for its token components Perform a case-insensitive equality test Build up a string using StringBuffer Contrast String, StringBuffer,and StringBuilder Compact Strings Text Blocks Specializing in a Subclass Constructing a class that extends another class Implementing equals and toString Writing constructors that pass initialization data to parent constructor Using instanceof to verify type of an object reference Pattern matching for instanceof Overriding subclass methods Safely casting references to a more refined type Fields and Variables Discuss Block Scoping Rules Distinguish between instance variables and method variables within a method Explain the difference between the terms field and variable List the default values for instance variables Final and Static fields and methods Local Variable type inference Using Arrays Declaring an array reference Allocating an array Initializing the entries in an array Writing methods with a variable number of arguments Records Data Objects in Java Introduce records as carrier of immutable data Defining records Java Packages and Visibility Use the package keyword to define a class within a specific package Discuss levels of accessibility/visibility Using the import keyword to declare references to classes in a specific package Using the standard type naming conventions Visibility in the Java Modular System Correctly executing a Java application class The Java modular system Defining Modules Inheritance and Polymorphism Write a subclass with a method that overrides a method in the superclass Group objects by their common supertype Utilize polymorphism Cast a supertype reference to a valid subtype reference Use the final keyword on methods and classes to prevent overriding Interfaces and Abstract Classes Define supertype contracts using abstract classes Implement concrete classes based on abstract classes Define supertype contracts using interfaces Implement concrete classes based on interfaces Explain advantage of interfaces over abstract classes Explain advantage of abstract classes over interfaces Static, default and private methods in interfaces Sealed classes Introduce Sealed classes The sealed and permits modifiers Sealed Interfaces Exception Handling Introduction to Exception Handling Introduce the Exception architecture Defining a try/catch blocks Checked vs Unchecked exceptions Exceptions Defining your own application exceptions Automatic closure of resources Suppressed exceptions Handling multiple exceptions in one catch Helpful Nullpointers Enhanced try-with-resources Java Developer's Toolbox Developing applications Introduce the wrapper classes Explain Autoboxing and Unboxing Converting String representations of primitive numbers into their primitive types Defining Enumerations Using static imports Deprecating methods Advanced Java Programming Introduction to Generics Generics and Subtyping Bounded Wildcards Generic Methods Legacy Calls To Generics When Generics Should Be Used Lambda Expressions and Functional Interface Understanding the concept of functional programming Writing lambda expressions Understanding functional interfaces Collections Provide an overview of the Collection API Review the different collection implementations (Set, List and Queue) Explore how generics are used with collections Examine iterators for working with collections Using Collections Collection Sorting Comparators Using the Right Collection Lambda expressions in Collections Bonus Topics: Time Permitting Streams Understanding the problem with collections in Java Thinking of program solutions in a declarative way Use the Stream API to process collections of data Understand the difference between intermediate and terminal stream operations Filtering elements from a Stream Finding element(s) within a Stream Collecting the elements from a Stream into a List takeWhile and dropWhile intermediate operations Collectors Using different ways to collect the items from a Stream Grouping elements within a stream Gathering statistics about numeric property of elements in a stream

Basic Java Programming for Developers New to OO (TT2120)
Delivered OnlineFlexible Dates
Price on Enquiry

Construction Management - CPD Certified

5.0(3)

By School Of Health Care

Construction Management: Construction Management course Online Unlock the Power of Construction Management: Construction Management course: Enrol Now! The Construction Management: Construction Management course starts with the basics of construction management and then takes the students to the higher level of construction management and introduces the learners to different aspects of the construction industry and construction project management. This Construction Management: Construction Management course will benefit learners by teaching them about construction project management, construction site management, and tools and techniques for estimating a construction management project in the construction industry. The demand for professional qualifications in the construction industry is increasing, and construction firms are hiring professionals. In addition, with this comprehensive Construction Management: Construction Management course, learners will be able to develop new skills and improve their existing skills. Main Course: Level 7 Construction Management Free Courses included with Construction Management: Construction Management Course: Course 01: Property Management [ Note: Free PDF certificate as soon as completing the Construction Management: Construction Management course] Construction Management: Construction Management course Online This Construction Management: Construction Management course consists of 20 Modules. This Construction Management: Construction Management course gives students an intensive yet digestible introduction to the contemporary construction sector and its key contributors. Enrol in this advanced Construction Management: Construction Management course and develop the practical skills, knowledge and confidence to step into the construction management profession as a capable leader. Assessment Method of Construction Management: Construction Management course After completing Construction Management: Construction Management course, you will get quizzes to assess your learning. You will do the later modules upon getting 60% marks on the quiz test. Apart from this, you do not need to sit for any other assessments. Certification of Construction Management: Construction Management course After completing the Construction Management: Construction Management course, you can instantly download your certificate for FREE. The hard copy of the certification will also be delivered to your doorstep via post, which will cost £13.99. Who is this course for? Construction Management: Construction Management course Online This Construction Management: Construction Management course is recommended for anyone looking for work in the construction industry. People who work in construction management-related fields and want to expand their experience and skills will benefit from this Construction Management: Construction Management course. Requirements Construction Management: Construction Management course Online To enrol in this Construction Management: Construction Management course, students must fulfil the following requirements: Good Command over English language is mandatory to enrol in our Construction Management: Construction Management course. Be energetic and self-motivated to complete our Construction Management: Construction Management course. Basic computer Skill is required to complete our Construction Management: Construction Management course. If you want to enrol in our Construction Management: Construction Management course, you must be at least 15 years old. Career path Construction Management: Construction Management Course Online

Construction Management - CPD Certified
Delivered Online On Demand12 hours
£12

Civil Engineering and Construction Management

4.9(27)

By Apex Learning

Overview: ***Limited Time Flash Sale*** Get Hard Copy + PDF Certificates + Transcript + Student ID Card worth £250 as a Gift! - Enrol Now! Civil Engineering and Construction Management is a rapidly evolving field that is essential to building and maintaining the infrastructure that our society relies on. This Civil Engineering and Construction Management course will provide you with the essential knowledge and in-demand skills you need to succeed in this exciting and rewarding profession. Begin with the basics of Construction Management, learning about its Scope and the roles of Contractors and Subcontractors. The Construction Management course will guide you through Surveying, Cost Estimation, and the nuances of Construction Design. Additionally, you will get into the critical areas of Safety Standards and other miscellaneous but vital Construction Management. This Civil Engineering and Construction Management Bundle Consists of the following Premium courses: Course 01: Read Construction & Structural Drawing Like Expert Course 02: Diploma in Construction Management Course 03: Quantity Surveyor Diploma Course 04: Building Surveyor Course 05: Land Surveying Course 06: Construction Cost Estimation Diploma Course 07: Construction Industry Scheme (CIS) Course 08: WELL Building Standard Course 09: LEED V4 - Building Design and Construction Course 10: Architectural Studies Course 11: CAD Design Course: Assemblies, Modelling And Civil Drawings Course 12: Autocad Electrical Design Course 13: Solidworks Foundation Training Course 14: Interior Design Professional Diploma Course 15: Professional Interior Design & Construction Course 16: Construction Safety Course 17: Fire Safety | Online Course Course 18: Electrical Safety Course 19: Emergency First Aid and Incident Management at Work Course 20: RIDDOR Training Learning Outcomes: Read and understand architectural plans and construction drawings Apply Construction Management principles to the design and construction of various building components, such as footings, columns, beams, and slabs Use various software to model and analyze civil engineering structures Calculate dead and live loads, and apply them to civil engineering structures Design and detail civil engineering structures in accordance with standard codes and practices Key Features of the Course: FREE Construction Management CPD-accredited certificate Get a free student ID card with Construction Management training (£10 applicable for international delivery) Lifetime access to the Construction Management course materials The Construction Management program comes with 24/7 tutor support Get instant access to this Construction Management course Learn Construction Management training from anywhere in the world The Construction Management training is affordable and simple to understand The Construction Management training is an entirely online Enrol in Civil Engineering and Construction Management today and start your journey to becoming a successful civil engineer or construction manager! Description: Enrol in this Civil Engineering and Construction Management Bundle today and start your journey to becoming a successful civil engineer or construction manager! ★★★ Course Curriculum of Civil Engineering and Construction Management Bundle ★★★ Course 01: Read Construction & Structural Drawing Like Expert Section 01: Architectural & Structural Drawings of G+3 Residential Building Section 02: Etabs Model of G+3 Residential Building Course 02: Diploma in Construction Management Module 01: Introduction to Construction Management Module 02: Project Life Cycle and Success Module 03: Cost Management Module 04: Preliminary Site Investigation and Site Organisation Module 05: Site Management Module 06: Planning and Management of Equipment Module 07: Construction Materials Management Module 08: Vendor Analysis in Construction Management Module 09: Construction Procurement Module 10: Stock Control Module 11: Supply Chain Management Module 12: The Main Participators Module 13: Quality Assurance and Customer Care Module 14: Legal Aspects of Contracting Module 15: Human Resources Management Module 16: Risk and Value Management Module 17: Communications, Information and Documentation of Construction Module 18: Health and Safety in Construction Management =========>>>>> And 18 More Related Courses <<<<<========= How will I get my Certificate? After successfully completing the course, you will be able to order your CPD Accredited Certificates (PDF + Hard Copy) as proof of your achievement. PDF Certificate: Free (Previously it was £9.99*20 = £199.7) Hard Copy Certificate: Free (For The Title Course: Previously it was £14.99) So, enrol now in this Construction Management Bundle to kickstart your career! Who is this course for? Civil engineering and construction management Bundle: Students who are interested in a career in civil engineering or construction management Students who are currently pursuing a degree in civil engineering or construction management Professionals who want to upgrade their skills and knowledge in civil engineering or construction management Requirements Our Civil Engineering and Construction Management Bundle is fully compatible with PCs, Macs, laptops, tablets and Smartphone devices. This Civil engineering and construction management course has been designed to be fully compatible with tablets and smartphones so you can access your course on Wi-Fi, 3G or 4G. There is no time limit for completing this Civil engineering and construction management course, it can be studied in your own time at your own pace. Career path This Civil Engineering and Construction Management bundle will help you learn the necessary skills to explore opportunities such as: Structural Engineer: £36,000 - £38,000 per annum Engineer: £27,000 - £45,000 per annum Construction Manager: £3,000 - £45,000 per annum Engineer Surveyor: £28,000 - £32,500 per annum Civil Engineer: £29,000 - £38,000 per annum Certificates Digital certificate - Included Hard copy certificate - Included You will get the Hard Copy certificate for the title course (Construction Management) absolutely Free! Other hard-copy certificates are available for £14.99 each. Please Note: The delivery charge inside the UK is £3.99, and the international students must pay a £9.99 shipping cost.

Civil Engineering and Construction Management
Delivered Online On Demand3 days
£109

Free Webinar | Demystifying Networking: Strategies for Overcoming Networking Anxiety

4.3(5)

By Bayfield Training

They often say, “Fake it until you make it.” But is this advice truly effective? Many of us have experienced the discomfort of being that person standing alone in the corner of a networking event, holding a cup of coffee, grappling with anxiety, and wondering how to break into a group conversation, all while questioning whether we are interesting enough to be heard. In this webinar, we will address the concept of Networking Anxiety and how to overcome negative beliefs and mindsets and we will also discuss key techniques to boost your confidence. Finally, we will explore how to develop effective networking skills such as starting conversations, active listening, and making memorable impressions. Join this webinar to gather some useful tips that will help you create meaningful connections.

Free Webinar | Demystifying Networking: Strategies for Overcoming Networking Anxiety
Delivered OnlineFlexible Dates
FREE

Free Webinar | Co-Working Spaces Theory and Model Showcase

4.3(5)

By Bayfield Training

The need for more flexibility in the usage of office space and the evolution of the shared economy have changed the paradigms of the real estate office asset class and gave rise to co-working concept. This information-packed webinar will introduce what defines a co-working space and its relationship to Real Estate as a Service. Whether you want to start a co-working business or want to invest in an office building where a co-working space is one of the tenants, we will equip you with the tools to assess the business model and the profitability of a co-working space. Join this webinar if you want to learn about the changes shaping the office space.

Free Webinar | Co-Working Spaces Theory and Model Showcase
Delivered OnlineFlexible Dates
FREE