Skip to main content

Java Fundamentals Video I and II


Java Fundamentals Video I and II




Java Fundamentals Video I and II | 1.49GB

Description:

Java is a strong type checking language. There are two concepts regarding types and objects. One is the object type and the other the template/class the object was created from. When an object is created, the template/class is assigned to that object which can not be changed. Types of an object however can be changed by type casting. Types of an object is associated with the object reference that referencing the object and determines what operation can be performed on the object through that object reference. Assigning the value of one object reference to a different type of object reference is called type casting.
Fundamentals I:
Quote:
Fundamentals I - Introduction to the Eclipse IDE.mov
Fundamentals I - Introduction to the NetBeans IDE.mov
Fundamentals I - Lesson 1 Introduction to Java Applications
Fundamentals I - Lesson 2 Introduction to Classes and Objects
Fundamentals I - Lesson 3 Control Statements Part 1
Fundamentals I - Lesson 4 Control Statements Part 2
Fundamentals I - Lesson 5 Methods- A Deeper Look
Fundamentals I - Lesson 6 Arrays
Fundamentals I - Lesson 7 Classes and Objects- A Deeper Look
Fundamentals II:
Quote:
Fundamentals II - Lesson 1 Object-Oriented Programming Inheritance
Fundamentals II - Lesson 2 Object-Oriented Programming Polymorphism
Fundamentals II - Lesson 3 Introduction to Graphical User Interfaces (GUIs) and Event Handling
Fundamentals II - Lesson 4 Exception Handling
Fundamentals II - Lesson 5 The Collections Framework



..:::Filesonic:::..
http://www.filesonic.com/file/193925321/JavaFundamentalsIandII.part01.rar
http://www.filesonic.com/file/194117561/JavaFundamentalsIandII.part02.rar
http://www.filesonic.com/file/194286051/JavaFundamentalsIandII.part03.rar
http://www.filesonic.com/file/194447561/JavaFundamentalsIandII.part04.rar
http://www.filesonic.com/file/194606041/JavaFundamentalsIandII.part05.rar
http://www.filesonic.com/file/194804471/JavaFundamentalsIandII.part06.rar
http://www.filesonic.com/file/194983141/JavaFundamentalsIandII.part07.rar
http://www.filesonic.com/file/195170021/JavaFundamentalsIandII.part08.rar
http://www.filesonic.com/file/195466141/JavaFundamentalsIandII.part09.rar
http://www.filesonic.com/file/195587411/JavaFundamentalsIandII.part10.rar
http://www.filesonic.com/file/195783471/JavaFundamentalsIandII.part11.rar
http://www.filesonic.com/file/195900021/JavaFundamentalsIandII.part12.rar
http://www.filesonic.com/file/196050611/JavaFundamentalsIandII.part12.rar
http://www.filesonic.com/file/196221761/JavaFundamentalsIandII.part13.rar
http://www.filesonic.com/file/196493791/JavaFundamentalsIandII.part14.rar
http://www.filesonic.com/file/196622471/JavaFundamentalsIandII.part15.rar
Password: tahaa@g4m30v3r123

Comments

Popular posts from this blog

Defacing Sites via HTML Injections (XSS)

Defacing Sites via HTML Injections Defacing Sites via HTML Injections What Is HTML Injection: "HTML Injection" is called as the Virtual Defacement Technique and also known as the "XSS" Cross Site Scripting. It is a very common vulnerability found when searched for most of the domains. This kind of a Vulnerability allows an "Attacker" to Inject some code into the applications affected in order to bypass access to the "Website" or to Infect any particular Page in that "Website". HTML injections = Cross Site Scripting, It is a Security Vulnerability in most of the sites, that allows an Attacker to Inject HTML Code into the Web Pages that are viewed by other users. XSS Attacks are essentially code injection attacks into the various interpreters in the browser. These attacks can be carried out using HTML, JavaScript, VBScript, ActiveX, Flash and other clinet side Languages. Well crafted Malicious Code can even hep the ...

EKS Cluster and Create CSI Driver to store credentials in AWS Secrets Manager via SecretProviderClass

EKS Cluster | CSI Driver | SecretProviderClass | AWS Secrets Manager Setup EKS Cluster and Manage Credentials at runtime using CSI driver using SecretProviderClass and Secrets Manager Assuming you have Configured/Installed AWS CLI, EKSCTL, KUBECTL, HELM. CSI Basic Information: CSI (Container Storage Interface) widely used as a Storage Technology. Created by Google | Mesosphere | Docker.  It has two two Plugins one runs on the Master Node (Centralized Controller Plugin) and another one on Worker Nodes (Decentralized headless Node Plugin).  CSI communication protocol is gRPC.   The communication between Container Orchestration to Controller Plugin (Master) and to Node Plugin (Worker Node) happens using gRPC .  CSI Drivers : vendor specific compiled into Kubernetes/openshift binaries. To use a CSI driver, a StorageClass needs to be assigned first.  The CSI driver is then set as the Provisioner for the Storage Class. CSI drivers provide three main service...

Linux Systems Performance/Observability (BPF (bpfcc-tools), BCC Tools

  Linux System Performance/Observability Tools Linux Systems Performance/Observability (BPF (bpfcc-tools), BCC Tools Assuming you have Linux Server in place and have the required BPF aka BCC related packages installed on the system(s) for the required Linux distribution. BPF(eBPF) aka BCC Tools (bpfcc-tools) : BPF, which originally stood for Berkley Packet Filter is the dynamic tracing tools for Linux Systems.  BPF initially used for the speeding up for the tcpdump expressions and since then it has been know as the extended Berkley packet Filter (eBPF).  Its new uses are Tracing Tools where it provides programmability for the BPF Compiler Collection (BCC) and bpftrace front ends .   Example: execsnoop, biosnoop etc is a BCC Tool. When facing production performance crisis these such list of tools comes handy to trace and fix the issue. However, it requires certain KERNEL level config options to be enabled such as CONFIG_FTRACE, CONFIG_BPF. Profiling tools typically re...