Sunday, December 26, 2010

IT16 Case Study 6: Malicious Programs

You have learned that a friend of yours is developing a worm to attack the administrative systems at your institution of learning. The worm is “harmless” and will simply cause a message – “Let’s party” – to be displayed on all workstations connected to the computers on Friday at 3 pm to 4 pm the virus will erase itself and destroy all evidence of its presence. What would you do?


Instructions:

  • Your answers should be in no less than 300 words
  • Due: January 5, 2011

Read more...

IT16 Case Study 5: Hacking

What would you do...

You have just been hired as an IT security consultant to “fix the security problem” at Acme United Global Manufacturing. The company has been hacked mercilessly over the last six months, with three of the attacks making the headlines of the business section for the negative impact they had on the firm and its customers. You have been given 90 days and a budget of $ 2 million. Where would you begin, and what steps would you take to fix the problems?

Instructions:

  • Your answers should be in no less than 300 words.
  • Due: January 5, 2011

Read more...

Monday, December 13, 2010

IT5 OOP Prelim Lab Exam

Computers are playing an increasing role in education. Write a program that will help an elementary school student learn multiplication. Use the Next method from an object of type Random to produce two positive one-digit integers. It should display a question, such as

How much is 6 times 7?

The student should then type the answer into a TextBox. Your program should check the student’sanswer. If it is correct, display "Very good!" in a Label, then ask another multiplication question. If the answer is incorrect, display "No. Please try again." in the same Label, then let the student try the same question again until the student finally gets it right. A separate method should be used to generate each new question. This method should be called once when the program begins execution and then each time the user answers a question correctly.


Read more...

Saturday, December 11, 2010

IT311 - OOP Laboratory Exercise 5

Java Laboratory Exercise 5

Instructions:

  • Due: December 15, 2010 11:59 pm.
  • Send the class file and the main program (Household.java and TestHousehold.java)
  • Attach and email the files in celticguardiandancingelf@yahoo.com
  • Subject: Lastname__it311_labexer5

a.) Create a class named Household that includes data fields for the number of occupants and the annual income, as well as methods named setOccupants(), setIncome(), getOccupants(), and getIncome() that set and return those values respectively. Additionally, create a constructor that requires no arguments and automatically sets the occupants field to 1 and the income field to 0. Save this file as Household.java.

b.) Create a program named TestHousehold that demonstrate that each of the methods works correctly.

c.) Create an additional overloaded constructor for the Household class you created. This constructor receives an integer argument and assigns the value to the occupants field. Add any needed statement to TestHousehold to ensure that the overloaded constructor works correctly.

d.) Create a third overloaded constructor for the Household class you created. This constructor receives two arguments, the values of which are assigned to the occupants and income fields, respectively. Alter the TestHousehold program to demonstrate that each version of the constructor works properly.

Read more...

IT311 OOP Calculator Class (Modified)

Calculator.java


package calculator;
public class Calculator{
int num1;
int num2;
int num3;
String name;
public Calculator(){
num1=0;
num2=0;
}
public Calculator(int a,int b){
num1=a;
num2=b;
}
public Calculator(String n,int a, int b, int c){
name=n;
num1=a;
num2=b;
num3=c;
}
public void add(int a, int b){
System.out.println(a+b);
}
public void add(int a, int b, int c){
System.out.println(a+b+c);
}
public void sub(int a, int b){
System.out.println(a-b);
}
public void sub(String n,int a, int b){
System.out.println(n);
System.out.println(a-b);
}
}

____________________________________________________________________

TestCalculator.java

package calculator;
import java.util.*;
public class TestCalculator2 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
Calculator c=new Calculator();
Calculator c2=new Calculator(25,20);
Calculator c3=new Calculator("Addition",10,20,30);
c.add(10,11);
c.add(10,11,12);
c.sub(10,11);
c.sub("Subtraction", 22,13);

}
}

Read more...

Thursday, December 9, 2010

IT16 Prelim Exam Postponed

The scheduled prelim exam for IT16 will be moved to December 13, 2010 (Monday) due to test questionnaire reproduction problems.

Read more...

Wednesday, December 8, 2010

IT5 VB.NET Lecture Notes: Procedures

Download the following link:

http://projectarchive.comuf.com/upload/317.pdf

Read more...

Sunday, December 5, 2010

IT16 Activity: Virus Development Timeline

Create an ILLUSTRATIVE EXAMPLE of the history of VIRUS development.

  • Be creative. Creativity and Design is an IT Competency.
  • You can use magazine/newspaper pictures.
  • 1/4 illustration board.
  • By 3s or 4s (3 or members per group)
  • Submit it on December 15, 2010

Read more...

Saturday, December 4, 2010

IT311 OOP Calculator Class files



Here is the answer to our Laboratory Exercise

Create a Calculator class that has the basic operations methods (add, subtract, multiply or divide two values). Then create a program to test the class.

Calculator.java


TestCalculator.java


Read more...

IT311 OOP Creating own class



Download lecture notes here (click the link):

Right click "Save File As" or "Save Link as"


Example

Calculator.java

TestCalculator.java

Read more...

Wednesday, December 1, 2010

IT5 Lab Exercise 3

It will be checked on December 7, 2010


The factorial method is used frequently in probability problems. The factorial of a positive integer n (written n! and pronounced “n factorial”) is equal to the product of the positive integers from 1 to n. Even for relatively small values of n, the factorial method yields extremely large numbers. For instance, when n is 13, n! is 6227020800—a number too large to be represented with data type Integer (a 32-bit integer value). To calculate the factorials of large values of n, data type Long (a 64-bit integer value) must be used. Write a program that evaluates the factorials of the integers from 1 to 20 using data type Long. Display the results in a two column output table. [Hint: create a Windows application, use Labels as the columns and the vbCrLf constant to line up the rows.] The first column should display the n values (1–20). The second column should display n!.

Read more...

Tuesday, November 30, 2010

IT320 Project Management Case Study 1

Visit and read this article:



  • Create a 500-word reaction paper for this article.
  • Date of submission:
  • Printed, Short, Arial, 12, Single Spacing
  • December 6, 2010.


Read more...

CS10 Lecture Notes 1 and 2

Download the following files (lecture notes)


To download, right-click the link below and click "Save File As" or "Save target as":

Read more...

Tuesday, November 23, 2010

IT5 OOP Lecture Notes

Holycross IT5 OOP (VB.NET)
Download lecture notes on the following links

Quiz 1: December 2, 2010

Read more...

Monday, November 22, 2010

IT 16 Case Study 3: Applying Ethical Theories

A programmer, after returning from a holiday to an underdeveloped country, was deeply affected by the level of poverty. when he returned to his job in a large international corporation, it occurred to him that he could write a program that filtered off small amounts of money from the advertising account and pay it to a private account. His idea was to collect enough money to provide IT equipment and training to the people in the town he had visited on holiday. However, he is not sure about his decision. What should he do?
a) What solution does a Kantian approach offer?
b) What solution does a consequentialist approach offer?
c) Are their conclusions the same?
d) What do you think he should do?

Instructions:
  • Due of submission: November 26, 2010

Read more...

Saturday, November 20, 2010

IT311 - OOP Laboratory Exercise

Problem: Sorted Words

Background: What background? Seemed like a good idea at the time...
Input: Anyway, you're to write a program that reads in a whole bunch of words (each word is no more than 20 characters). For our purposes, words are to be separated by spaces, commas (,), !, ?, and periods (.). No word goes past the end of a line. All comparisons should ignore case.
Output: Output the sorted words, one per line, in lower case.
Sample Input:
How much wood would a woodchuck chuck if a woodchuck could chuck wood? Well? What
do you think? Are you feeling well?

Sample Console:
a
a
are
chuck
chuck
could
do
feeling
how
if
much
think
well
well
what
wood
wood
woodchuck
woodchuck
would

Sample code:

Read more...

Wednesday, November 17, 2010

IT5 - OOP (VB .Net) Lab Exer 1 and 2

Lab Exer 1
1. Develop a program that determines if a department store customer has exceeded the credit limit on a charge account. For each customer, the following facts are available:
a) Account number
b) Balance at the beginning of the month
c) Total of all items charged by this customer this month
d) Total of all credits applied to this customer's account this month
e) Allowed credit limit
The program should input as Integers each of these facts, calculate the new balance
( = beginning balance + charges – credits)
display the new balance and determine if the new balance
exceeds the customer's credit limit. For those customers whose credit limit is exceeded, the program
should display the message, “Credit limit exceeded.”

Lab Exer 2

2.A palindrome is a number or a text phrase that reads the same backwards as forwards. For example, each of the following five- digit Integers are palindromes: 12321, 55555, 45554 and
11611. Write an application that reads in a five-digit Integer and determines whether it is a palindrome.
[Hint: Check if 1st digit equals 5th, 2nd digit equals 4th.]

Read more...

Tuesday, November 16, 2010

IT 16 Case Study 2: Ethics and the Law

Download the case study 2 problem here.
If it doesn't work, follow this link: http://projectarchive.comuf.com/upload/303.doc
Due: November 19, 2010

Read more...

Monday, November 15, 2010

IT 320 - Project Management (Course Details)

The course details of the subject IT320 Project Management can be downloaded on this link
http://projectarchive.comuf.com/upload/300.doc

Read more...

Saturday, November 13, 2010

IT311 - OOP Examples (String)

Download the examples (String Class) in the following links:

Read more...

IT311 OOP Comprehensive Quiz (Strings)

Download the quiz here

If it doesn't work, follow this url: www.projectarchive.comuf.com/upload/299.doc

Write your answers in a 1/2 sheet of yellow paper

Read more...

Friday, November 12, 2010

IT311 - OOP Lecture 1 and Lecture 2

Lecture 1: Introduction to Object-Oriented Programming

Download the link here.
If it doesn't work, follow this link: www.projectarchive.comuf.com/upload/298.ppt

Lecture 2: String Class
Download the link here
If it doesn't work, follow this link: Strings Powerpoint - The String Class

Read more...

Thursday, November 11, 2010

IT16 Case Study 1: What is Computer Ethics?

Read James Moor’s article about computer ethics.

Click here to download the article.
If it doesn't work, follow this link:
http://www.blackwellpublishing.com/content/BPL_Images/Content_store/Sample_chapter/9781855548442/CEAC01.pdf
A. Cite some important concepts that is related to the following properties:
• Logical malleability
• Impact on society
• Invisibility factor

B. Make a reaction paper about the article in not less than 300 words.

Printed, Short Bond Paper, Choose your own format.
Date of submission: November 15, 2010
Submission beyond the said date will have grade deductions.
Quote statements or phrases that are not yours.

PLAGIARISM IS A CRIME!!!

Read more...

Wednesday, November 10, 2010

2nd Semester Schedule SY 2010-2011


This is my tentative schedule of work.


RED - Holycross
YELLOW - USEP
PINK - Holychild

Read more...

Sunday, October 17, 2010

COMP01 CE and CG Final Requirement

COMP01 Final Requirement
  • Create a term paper of the subject Knowledge work systems and office application.
Term Paper in COMP01

I. Microsoft Word
II. Microsoft Excel
III. Microsoft Powerpoint
IV. HTML

  • The term paper is by 4 to 5 members per group.
  • Minimum of 10 pages and maximum of 15 pages
  • Printed,Short Sub 20 paper, Choose your own Format
  • Make sure to include a front page.
  • Place it in a white folder white slider.
  • Deadline of submission: October 22, 2010 (AM only)

Read more...

CSCI01 Final Requirements

CSCI01 (Under Sir Buladaco)


Download the following machine problem (MP) files:
  • Create the appropriate and correct code to solve the MPs.
  • Submit your codes thru CD-R.
  • Choose a simple-design CD-R (no cartoons, anime or etc)
  • Deadline of submission: October 22, 2010 (Morning only)
If you have questions, you may contact me through FB (celticguardiandancingelf@yahoo.com)

Read more...

Wednesday, October 13, 2010

CSCI12 Final Requirements

CSCI12 Final Announcements and Requirements

  • The sharing/reporting will be cancelled.
  • In replacement, each group (including the first group) must create a illustrative tutorial of their topic.
  • The tutorial must be placed in a document.
  • Printed, short and choose your own format.
  • This will be considered as your final exam.
  • Date of submission: October 21, 2010 5:00 pm SHARP!
  • Place it in a brown folder white slider.
  • We will not meet on Tuesday (Oct, 19, 2010) anymore.
  • The assignment will be considered as a final quiz.
If you have any questions, you may contact me in this number: 09124785046.

Read more...

Thursday, September 23, 2010

CSCI12 Assignment in Single Row Function

Single Row Function Assignment


Link: www.projectarchive.comuf.com/upload/281.pdf

Date of submission: September 30, 2010 (discard the date in the file)

Read more...

Monday, September 6, 2010

CSCI12 Sharing Topics and Slides

UPDATED (SEPTEMBER 22)
ATTENTION THE FILES CAN ONLY BE OPENED IN MS POWERPOINT 2000 OR 2003
The following are the topics (with the date of report) and links of the slides:

Lesson 3:

Single Row Functions (September 16, 2010)
www.projectarchive.comuf.com/278.ppt

Lesson 4:

Displaying Data from Multiple Tables (September 21, 2010)
www.projectarchive.comuf.com/279.ppt

Lesson 5:

Aggregating data using Group Functions (September 23, 2010)


Lesson 6:

Subqueries (September 28, 2010)



Note:
  • Limit your sharing for only 20 minutes.
  • Assignment will be give after each report
  • Each sharing is equivalent to one quiz in Prefinal
The tables to be used as reference for the examples are the following:

Read more...

Friday, August 20, 2010

CSCI12 CT Midterm Quiz

Instructions:

  1. Short coupon bond. Sub 20.
  2. There are two parts of the quiz. Use two papers.
  3. To be submitted on TUESDAY(Aug. 24, 2010)
I. ERD
Create an ERD for the following system.
A publishing company produces scientific books on various subjects. The books are written by authors who specialize in one particular subject. The company employs editors who, not unecessarily being specialists in a particular area, each take sole responsibility for editing one or more publications. A publication covers essentially one of the specialist subjects and is normally
written by a single author. When writing a particular book, each author works with on editor, but may submit another work for publication to be supervised by other editors. To improve their
competitiveness, the company tries to employ a variety of authors, more than one author being a specialist in a particular subject.

II. SQL
Based on the EMP table, create the correct sql statement and show the expected results for the following items:
1. Retrieve all records that belong to department 30 and has a salary that does not exceeds 2000.
2. Retrieve the name(s) that has a job as SALESMAN, CLERK and ANALYST
3. Retrieve the name(s) arrange in an order starting from recently hired.
4. Retrieve the name(s) that directly reports to President King (7839).
5. Retrieve the name(s) that starts with 'A'.
6. Retrieve the name(s) that ends with 'rd'.
7. Retrieve the name(s) that contains with 'rd'.
8. Retrieve the name(s) arrange in increasing order of empno.
9. Retrieve the name(s) that was hired in 1981 and the job is MANAGER and has a salary of more than or equal to 2500.
10. Retrieve the name(s) that was hired in 1982 and later or that belong in department 20.

Read more...

About

My photo
Hi! Mabuhay everyone! I am Mark Van M. Buladaco! I am from Davao City! Hope you enjoy my blog!

Contact me

476 alley Malvar St., Davao City, Philippines
celticguardiandancingelf@yahoo.com

Blog Archive

Web Marketingdrive recovery software