Orilla, Muse Amor M.
BSIT
APPENDIX A:
When you look in a mirror, what do you see?
Based on my digital reflection, I have been spending most of my time doing
different activities online. Social media also impacted me which made me become
a little dependent to it.
Online Activity
Name: Muse Amor Orilla
Day: Thursday
Time Spent Online
Log On/Log Device Activity/IES
Off
6:00 – 6:39 AM Mobile Phone Open ELMS 39 minutes
7:18 – 8:53 AM Speaker Music & Clean House 1 hour and 37 minutes
10:40 AM – 12:00 PM IPAD Games 1 hour and 20 minutes
12:38 – 1:59 PM Mobile Phone Watching 1 hour and 21 minutes
2: 17 – 4:53 PM Laptop School Activities 3 hours and 36 minutes
6:00 – 7:30 PM Phone Read Facebook 1 hour and 30 minutes
Newsfeed
9:40 PM – 12:05 AM Laptop Netflix 2 hours and 25 minutes
Total Time Spent 11 hours and 51 minutes
TASK B:
1. Did your time spent online differ from your estimate?
Yes, entire day I always use my mobiles phones I spent my time using
any kind of social media that really need to our daily lives.
2. Were you surprised by the difference?
I thinks I surprised with the different platform, styles and features among
these social media I really enjoyed to use them because some of my
hobbies are reading and watching movie.
3. Do you think the chart offers a true account of your online behavior?
Some social I that used right now it’s really good to use because it gives
you a more experience to interact many people and I experience some
fake but not totally engage in that thing, some user shows their behavior
to engage many social media plat form to participate and to express
their taught and feelings.
4. Do you think you should change your online behavior? Give reasons to
explain your decision.
In my opinion it’s a NO, because there is no something wrong with using
social media because. In my entire life I’m not experience a bad issues
and social media problem, for me I would not change my online
behavior because that the way I could bring happiness.
TASK D:
How long could you probably last without digital technology? Explain your
response?
I think more than 2hrs something like that, and I need taking a rest for
maintain our health and don’t be exposed with social media sometimes I
experience dizziness because of over using my cellphone.
APPENDIX B:
Record the activities that you have done while you're offline from the
internet.
Time Spent
30 minutes I ate breakfast
(9:30 - 10:AM)
1 hour and 30 minutes I did our laundry/ Washed our clothes
(10:00 AM - 11:30 AM)
30 minutes I ate lunch
(11:30 AM - 12:00 PM)
3 hours and 30 minutes I continued washing our clothes
(12:00 - 3:30 PM)
1 hour I took a bath
(3:30 - 4:30 PM)
30 minutes I did my skincare routine
(4:30 - 5:00 PM)
1 hour and 30 minutes I watched Netflix music videos in television with my sister
(5:00 - 6:30 PM)
30 minutes I ate dinner
(6:30 - 7:00)
2 hours and 30 minutes I talked to my family while I watch television shows
(7:00 PM - 9:30 PM)
2 hours I read handouts in some subjects
(9:30 - 11:30 PM)
10 hours I took a rest and sleep
(11:30 PM - 9:30 AM)
Total Time Spent 24 hours
Name: Muse Amor Orilla
class TriPrism <T>{
//data members
private T length;
private T base;
private T height;
//getter methods
public T getLength() {
return length;
}
public T getBase() {
return base;
}
public T getHeight() {
return height;
}
//setter method
public void setLength(T length) {
this.length = length;
}
public void setBase(T base) {
this.base = base;
}
public void setHeight(T height) {
this.height = height;
}
public class TriPrismDemo {
public static void main(String[] args) {
TriPrism<Integer> tp1=new TriPrism<>();
TriPrism<Double> tp2=new TriPrism<>();
//setting the value of tp1
tp1.setLength(10);
tp1.setBase(7);
tp1.setHeight(5);
//printng the details with volume information
System.out.println("Triangular Prism 1:");
System.out.println("Length: "+tp1.getLength());
System.out.println("Breadth: "+tp1.getBase());
System.out.println("Height: "+tp1.getHeight());
System.out.println("The volume of the triangular prism is: "+
(tp1.getLength()*(0.5*tp1.getBase()*tp1.getHeight())));
//setting the value of tp2
tp2.setLength(9.10);
tp2.setBase(6.25);
tp2.setHeight(4.20);
//printng the details with volume information
System.out.println("Triangular Prism 2:");
System.out.println("Length: "+tp2.getLength());
System.out.println("Breadth: "+tp2.getBase());
System.out.println("Height: "+tp2.getHeight());
System.out.println("The volume of the triangular prism is: "+
(tp2.getLength()*(0.5*tp2.getBase()*tp2.getHeight())));
}
}