0% found this document useful (0 votes)
10 views2 pages

BSC & Bcom

The document outlines an activity log for the first week of a Java training program. It covers topics like the Java environment, basic syntax, variables, arrays, enums, keywords, comments, inheritance, interfaces, objects, and classes over six days. Daily activities include lectures and exercises on these Java fundamentals.

Uploaded by

MD COMPUTERS
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views2 pages

BSC & Bcom

The document outlines an activity log for the first week of a Java training program. It covers topics like the Java environment, basic syntax, variables, arrays, enums, keywords, comments, inheritance, interfaces, objects, and classes over six days. Daily activities include lectures and exercises on these Java fundamentals.

Uploaded by

MD COMPUTERS
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

ACTIVITY LOG FOR THE FIRST WEEK

Brief
Day Person In
description of
& Learning Outcome Charge
the daily
Date Signature
activity
Object Oriented
History of Java Platform Independent
Day – 1 Java - Environment Simple
Setup History of Java
Tools You Will Need
Object ,Class,Methods,Instance Variables
Java – Basic Syntax
Basic Syntax-Case Sensitivity,Class Names,
First Java Program
Method Names,Program File Name
Day - 2 Basic Syntax
* public static void main(String args[])
Java Identifiers
Java Identifiers & Java Modifiers
Java Modifiers
Access Modifiers & Non-access Modifiers
Following are the types of variables in Java:
Local Variables,Class Variables (Static Variables)
Instance Variables (Non-static Variables)
Java Variables
Java Arrays - Arrays are objects that store
Day – 3 Java Arrays
multiple variables of the same type.
Java Enums
Java Enums - Enums can be declared as
their own or inside a class. Methods, variables,
constructors can be defined inside enums as well.
abstract ,assert, boolean, break,byte ,case, catch ,
char,class ,const ,continue ,default,do, double, else,
enum,extends, final, finally, float,for ,goto, if,
implements,import, instance,of, int,interface,long
Day – 4 Java Keywords
,native ,new, package,private ,protected, public ,
return,short, static,strictfp, super,switch ,
synchronized, this, throw,throws ,transient,try,
void,volatile ,while.
Java supports single-line and multi-line comments
(// This is an Example of single line comment
Comments in Java /* Example of single line comment. */)
Using Blank Lines Blank Line-A line containing only white space,
Day – 5 Inheritance possibly with a comment, is known as a blank line.
Interfaces Inheritance-In this scenario, the existing class is
called the super class and the derived class is
called the subclass.
Java is an Object
 Polymorphism,
 Inheritance,
 Encapsulation,
 Abstraction
 Classes, Objects,
 Instance, Method,
Java – Objects &
 Message Parsing
Day –6 Classes
public class Dog{
Objects in Java
String breed;
int ageC
String color;
void barking(){
}void hungry(){
}void sleeping(){
}}
Brief
Day Person In
description of
& Learning Outcome Charge
the daily
Date Signature
activity
Classes in Java
Constructors
Day – 1
Creating an Object

Day - 2
Day – 3
Day – 4
Day – 5
Day –6

You might also like