وب سایت تخصصی شرکت فرین
دسته بندی دوره ها
1

Pearson – Java SE 17 Developer (1Z0-829)

سرفصل های دوره

Introduction
  • 001. Java SE 17 Developer (1Z0-829) Introduction

  • Lesson 1 Operations and core data types
  • 001. Learning objectives
  • 002. 1.1 Java operators - part 1
  • 003. 1.2 Java operators - part 2
  • 004. 1.3 Promotions
  • 005. 1.4 Casting
  • 006. 1.5 Wrapper classes
  • 007. 1.6 Primitives, references, and aliasing
  • 008. 1.7 Question deep dive

  • Lesson 2 Handling text
  • 001. Learning objectives
  • 002. 2.1 String and StringBuilder
  • 003. 2.2 Methods of the String class
  • 004. 2.3 Text blocks
  • 005. 2.4 Methods of the StringBuilder class
  • 006. 2.5 Question deep dive

  • Lesson 3 The date-time API
  • 001. Learning objectives
  • 002. 3.1 Date-time API foundations - part 1
  • 003. 3.2 Date-time API foundations - part 2
  • 004. 3.3 Manipulating date-time objects
  • 005. 3.4 Time-zone considerations - part 1
  • 006. 3.5 Time-zone considerations - part 2
  • 007. 3.6 Time-zone considerations - part 3
  • 008. 3.7 Question deep dive

  • Lesson 4 Fundamentals of flow control
  • 001. Learning objectives
  • 002. 4.1 Simple loops
  • 003. 4.2 Control using break and continue
  • 004. 4.3 Using ifelse statements
  • 005. 4.4 Using switch statements
  • 006. 4.5 The arrow form of switch
  • 007. 4.6 Expressions with switch
  • 008. 4.7 Question deep dive

  • Lesson 5 Flow control with exceptions
  • 001. Learning objectives
  • 002. 5.1 Flow control with trycatchfinally
  • 003. 5.2 Flow control with try-with-resources
  • 004. 5.3 Multi-catch and rethrowing
  • 005. 5.4 Implementing AutoCloseable - part 1
  • 006. 5.5 Implementing AutoCloseable - part 2
  • 007. 5.6 Question deep dive

  • Lesson 6 Custom exceptions
  • 001. Learning objectives
  • 002. 6.1 Subclassing Throwable types
  • 003. 6.2 Question deep dive

  • Lesson 7 Class definition, and reachability
  • 001. Learning objectives
  • 002. 7.1 Source files and basic type declarations
  • 003. 7.2 Nested type declarations
  • 004. 7.3 Inner class declarations - part 1
  • 005. 7.4 Inner class declaration - part 2
  • 006. 7.5 Local and anonymous class declarations
  • 007. 7.6 Reachability analysis
  • 008. 7.7 Question deep dive

  • Lesson 8 Defining class contents
  • 001. Learning objectives
  • 002. 8.1 Instance and static fields - part 1
  • 003. 8.2 Instance and static fields - part 2
  • 004. 8.3 Instance and static methods - part 1
  • 005. 8.4 Instance and static methods - part 2
  • 006. 8.5 Variable length argument handling
  • 007. 8.6 Overloaded and overridden methods - part 1
  • 008. 8.7 Overloaded and overridden methods - part 2
  • 009. 8.8 Defining records
  • 010. 8.9 Features of records
  • 011. 8.10 Question deep dive

  • Lesson 9 Initialization of objects
  • 001. Learning objectives
  • 002. 9.1 Static initialization
  • 003. 9.2 Instance initialization
  • 004. 9.3 Question deep dive

  • Lesson 10 Scope, encapsulation, and immutability
  • 001. Learning objectives
  • 002. 10.1 Rules of scope
  • 003. 10.2 Access control modifiers
  • 004. 10.3 Encapsulation requirements
  • 005. 10.4 Immutability requirements
  • 006. 10.5 Question deep dive

  • Lesson 11 Local variable type inference
  • 001. Learning objectives
  • 002. 11.1 Using var for regular variables
  • 003. 11.2 Additional uses and restrictions of var
  • 004. 11.3 Question deep dive

  • Lesson 12 Implementation inheritance
  • 001. Learning objectives
  • 002. 12.1 Subclass declaration
  • 003. 12.2 Subclass initialization
  • 004. 12.3 Abstract class constraints
  • 005. 12.4 Sealed type hierarchies
  • 006. 12.5 Special cases in sealed type hierarchies
  • 007. 12.6 Question deep dive

  • Lesson 13 Working with polymorphism
  • 001. Learning objectives
  • 002. 13.1 Object and reference type
  • 003. 13.2 Pattern matching in instanceof
  • 004. 13.3 Additional topics in pattern-matched instanceof
  • 005. 13.4 Possible and impossible casts
  • 006. 13.5 Virtual method invocation
  • 007. 13.6 Covariant returns
  • 008. 13.7 Question deep dive

  • Lesson 14 Interfaces
  • 001. Learning objectives
  • 002. 14.1 Interfaces, methods and functional interfaces
  • 003. 14.2 Interface implementation
  • 004. 14.3 Default method resolution
  • 005. 14.4 Question deep dive

  • Lesson 15 Enumerations
  • 001. Learning objectives
  • 002. 15.1 Enum values and initialization
  • 003. 15.2 Enum fields and methods
  • 004. 15.3 Question deep dive

  • Lesson 16 Generics and generic declarations
  • 001. Learning objectives
  • 002. 16.1 Fundamentals of generics
  • 003. 16.2 Declaring generic types and methods
  • 004. 16.3 Using bounds and wildcards
  • 005. 16.4 Question deep dive

  • Lesson 17 Java core collections
  • 001. Learning objectives
  • 002. 17.1 Arrays, and methods of Collection, List, and Set - part 1
  • 003. 17.2 Arrays, and methods of Collection, List, and Set - part 2
  • 004. 17.3 Methods of Deque and Map
  • 005. 17.4 Question deep dive

  • Lesson 18 Comparator, Comparable, and ordering
  • 001. Learning objectives
  • 002. 18.1 Comparison methods and interfaces
  • 003. 18.2 Sorting arrays and Collections
  • 004. 18.3 Comparator factories and decorators
  • 005. 18.4 Question deep dive

  • Lesson 19 Defining lambda expressions
  • 001. Learning objectives
  • 002. 19.1 Lambda expression syntax variations
  • 003. 19.2 Lambda expression contexts
  • 004. 19.3 Core functional interfaces
  • 005. 19.4 Method references
  • 006. 19.5 Question deep dive

  • Lesson 20 Fundamental Stream operations
  • 001. Learning objectives
  • 002. 20.1 The monad-like methods
  • 003. 20.2 Stream utilities
  • 004. 20.3 Simple terminal methods and laziness
  • 005. 20.4 Question deep dive

  • Lesson 21 Reduction operations, and parallelism
  • 001. Learning objectives
  • 002. 21.1 Collection and reduction - part 1
  • 003. 21.2 Collection and reduction - part 2
  • 004. 21.3 Grouping and partitioning with Collectors
  • 005. 21.4 Downstream operations with Collectors
  • 006. 21.5 Parallel stream operation
  • 007. 21.6 Question deep dive

  • Lesson 22 Building and executing modules
  • 001. Learning objectives
  • 002. 22.1 Module compilation
  • 003. 22.2 Module execution
  • 004. 22.3 Question Deep Dive

  • Lesson 23 Coding modules
  • 001. Learning objectives
  • 002. 23.1 Exports and requires directives
  • 003. 23.2 Provides, uses, open and opens directives
  • 004. 23.3 Question Deep Dive

  • Lesson 24 Migration, and command line operations
  • 001. Learning objectives
  • 002. 24.1 Project Migration - Part 1
  • 003. 24.2 Project Migration - Part 2
  • 004. 24.3 Command-line utilities
  • 005. 24.4 Question Deep Dive

  • Lesson 25 Create and execute threads
  • 001. Learning objectives
  • 002. 25.1 Runnable and Thread
  • 003. 25.2 ExecutorService and Future
  • 004. 25.3 ExecutorService lifecycle - part 1
  • 005. 25.4 ExecutorService lifecycle - part 2
  • 006. 25.5 Question Deep Dive

  • Lesson 26 Thread-safe code, locking, and synchronization
  • 001. Learning objectives
  • 002. 26.1 Race conditions, deadlock, and livelock
  • 003. 26.2 Transactional integrity
  • 004. 26.3 Visibility
  • 005. 26.4 Concurrent queues and collections
  • 006. 26.5 Synchronizers, locks, and atomic types - part 1
  • 007. 26.6 Synchronizers, locks, and atomic types - part 2
  • 008. 26.7 Question Deep Dive

  • Lesson 27 Working with databases
  • 001. Learning objectives
  • 002. 27.1 Making the connection
  • 003. 27.2 Statement and ResultSet
  • 004. 27.3 PreparedStatement
  • 005. 27.4 Question deep dive

  • Lesson 28 Fundamental IO operations
  • 001. Learning objectives
  • 002. 28.1 Input and Output streams, Reader and Writer
  • 003. 28.2 BufferedReader, PrintWriter, Scanner and Charset conversions
  • 004. 28.3 Question Deep Dive

  • Lesson 29 Java serialization
  • 001. Learning objectives
  • 002. 29.1 Default serialization
  • 003. 29.2 Customizing serialization
  • 004. 29.3 Question Deep Dive

  • Lesson 30 Files, Path, and Channel
  • 001. Learning objectives
  • 002. 30.1 Files methods - part 1
  • 003. 30.2 Files methods - part 2
  • 004. 30.3 Working with Channel
  • 005. 30.4 Question Deep Dive

  • Lesson 31 Localization
  • 001. Learning objectives
  • 002. 31.1 Parsing, formatting, and locale
  • 003. 31.2 ResourceBundle and data lookup
  • 004. 31.3 Question Deep Dive

  • Module 1 Working with Java Data Types
  • 001. Module introduction

  • Module 2 Controlling Program Flow and Exception Handling
  • 001. Module introduction

  • Module 3 Java Object-Oriented Approach
  • 001. Module introduction

  • Module 4 Working with Arrays and Collections
  • 001. Module introduction

  • Module 5 Working with Streams and Lambda Expressions
  • 001. Module introduction

  • Module 6 Java Platform Module System
  • 001. Module introduction

  • Module 7 Concurrency
  • 001. Module introduction

  • Module 8 Database Applications with JDBC, and Java IO
  • 001. Module introduction

  • Module 9 Localization in Java SE Applications
  • 001. Module introduction

  • Summary
  • 001. Java SE 17 Developer (1Z0-829) Summary
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    افزودن به سبد خرید
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    شناسه: 19862
    حجم: 4906 مگابایت
    مدت زمان: 1301 دقیقه
    تاریخ انتشار: ۱۴ مهر ۱۴۰۲
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید