0% found this document useful (0 votes)
27 views3 pages

Course Outline Ite2 Week 2 Andy

The document outlines the Daily Learning Plan for Bestlink College of the Philippines for January 30, 2025, detailing class schedules for various BSIT programs focusing on IT Elective 2 (Advanced Java/OOP). It includes learning outcomes related to Java syntax, data types, and control structures, along with assessment tasks for both onsite and offsite learning. Additionally, it provides a series of questions and answers related to Java programming concepts for Week 2.
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)
27 views3 pages

Course Outline Ite2 Week 2 Andy

The document outlines the Daily Learning Plan for Bestlink College of the Philippines for January 30, 2025, detailing class schedules for various BSIT programs focusing on IT Elective 2 (Advanced Java/OOP). It includes learning outcomes related to Java syntax, data types, and control structures, along with assessment tasks for both onsite and offsite learning. Additionally, it provides a series of questions and answers related to Java programming concepts for Week 2.
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/ 3

BESTLINK COLLEGE OF THE

PHILIPPINES
DAILY LEARNING PLAN
Date January 30, 2025 Week 1
Time Program & Section Room Course Code ITE 2
12:30-2:30pm BSIT 2207 MVLAB208 Course Title IT ELECTIVE 2 (ADVANCE JAVA/OOP)
3:00-5:00pm BSIT 2209 MVLAB208
5:00-7:00pm BSIT 2211 MVLAB208 12:30-2:30pm BSIT 2201 MVLAB208
12:30-2:30pm BSIT 2208 MVLAB208 3:00-5:00pm BSIT 2203 MVLAB208
3:00-5:00pm BSIT 2210 MVLAB208 12:30-2:30pm BSIT 2202 MVLAB208
12:30-2:30pm BSIT 4101 MVLAB208 3:00-5:00pm BSIT 2204 MVLAB208
3:00-5:00pm BSIT 2215 MVLAB208
12:30-2:30pm BSIT 2214 MVLAB208
3:00-5:00pm BSIT 2216 MVLAB208

Basic Java Syntax and Data Types


1. Java syntax and structure
A. Topic/s
2. Variables, data types, and operators
3. Control structures: if-else, loops (for, while)
At the end of the lesson, 75% of the students will be able to:
B. Student Intended Learning 1. Identify the basic syntax and structure of a Java program.
Outcomes (SILO) 2. Learn how to declare and use variables with different data types.
3. Apply control structures like if-else and loops (for, while) in Java.
C. Textbook Java Programming by Joyce Farrell 9th Edition
ONSITE
(Classroom Based)
1. Class Participation: Engage in activities and discussions.
2. Code Submission: Evaluate the correctness of submitted programs.
3. Hands-On Practice: Develop a program using control structures.
D. Assessment Tasks
OFFSITE(LMS)
1. Answer the following activities in Learning Management System (LMS) for Week 2:
1.1. Analysis, Application, and Exploration;
1.2. Evaluation; and
1.3. Assignment.
E. Evaluation See Attachment
F. Results of Evaluation
No. of On-site (Classroom Based)
Program & Section Students
*f of Passed *f of Failed % of Passed Remarks
Present
BSIT 2207
BSIT 2209
BSIT 2211
BSIT 2208
BSIT 2210
BSIT 4101
BSIT 2215
BSIT 2214
BSIT 2216
BSIT 2201
BSIT 2203
BSIT 2202
BSIT 2204

Program & Section No. of Off-site (LMS)


Students
*f of Passed *f of Failed % of Passed Remarks
Present
BSIT 2207
BSIT 2209
BSIT 2211
BSIT 2208
BSIT 2210
BSIT 4101
BSIT 2215
BSIT 2214
BSIT 2216
BSIT 2201
BSIT 2203
BSIT 2202
BSIT 2204
Attachment
Week 2
1. What is the purpose of the main() method in a Java program?
Answer: The main() method serves as the entry point for a Java program where the
program starts executing.
2. Which symbol is used to end a statement in Java?
Answer: A semicolon ; is used to end a statement in Java.
3. What type of variable is used to store a single character in Java?
Answer: char is used to store a single character in Java.
4. Which loop repeats a block of code a specific number of times based on a condition?
Answer: A for loop is used to repeat a block of code a specific number of times.
5. Which Java data type is used to store a true or false value?
Answer: boolean is used to store true or false values.
6. What keyword is used to define a class in Java?
Answer: The keyword class is used to define a class in Java.
7. Which operator is used in Java to compare two values for equality?
Answer: The == operator is used to compare two values for equality in Java.
8. Which loop repeats a block of code as long as a specified condition is true?
Answer: A while loop repeats a block of code while the condition is true.
9. What type of data type would you use to store a number with a decimal point in Java?
Answer: double is used to store numbers with decimal points in Java.
10. What is the keyword used to declare a variable in Java?
Answer: The keyword used to declare a variable in Java is the data type (e.g., int,
boolean, char).

You might also like