The World Atomic Time Watch
I was just surfing the net 'till I was redirected to this website with cool gadgets in it. I was interested with the CASIO atomic time watch that i had read in this site. This watch receives WWVB radio signals from five atomic clocks across the world, which will neither gain nor lose a second in 30 million years, ensuring accurate timekeeping when traveling. The watch can synchronize with an atomic time signal from up to 2,000 miles away from one of the atomic transmitters located in Fort Collins, Colorado; Rugby, England; Mainflingen, Germany; Fukushima and Fukuoka, Japan, while only requiring you to set your current location at the touch of a button. The watch also calibrates Greenwich Mean Time in 48 world cities and across 29 time zones. A solar panel in the face powers the battery, an integrated stopwatch measures elapsed time, split time, and first and second place times down to 1/1000 of a second. With four daily alarms and a snooze button, hourly chime, and countdown timer. Water resistant up to 660'. Diam. (2 1/2 oz.)
Posted by hanzoii` :) at 5:44:00 PM 1 comments
Who Is Responsible for Identity Theft
We know that Internet these days is open to almost every person in the world. And we also know that there are a lot of scams in the world of internet. Some of the scams lead to identity theft. Who are these people? They are the people who are pretending to be someone else in order to steal money or get other benefits.
Who is Responsible for Identity Theft? For me, the responsible for this kind of internet crime/fraud is the user or the consumer itself. People should be aware of this case, first of all users should not give personal identification information to someone that they don't know or to some websites that only wants your personal info's, PIN codes to your Bank Accounts and ATM cards.
Using your identity could lead you into big trouble. Identity thieves can get your personal information through the use of "social networking websites" like "FRIENDSTER, My Space, FACEBOOK, hi5, etc."
People must now be careful of putting personal information to any website in the internet.
-hanzoii08
Posted by hanzoii` :) at 5:18:00 PM 2 comments
Labels: Identity Theft
_salibo
This week,
our lesson was all about ARRAY
It is a collection of variables of the same data type that is referenced by a common name.
Array declaration
-The general form for any declaration is as follows:
type array_name[size];
Where:
type is any valid data type in Turbo C which declares the type of values that array will hold.
array_name is a valid variable name which will name the array.
size defines how many elements the array will hold
-The two declarations for arrays number and answer can be combined into a single declaration:
int number[100] , answer [25];
Array Initialization
-Arrays can give initial values during the declaration. This is called array initialization..
int Array1[5]={25, 5, 7, 11, 163};
Saturday, January 17, 2009
Posted by hanzoii` :) at 10:09:00 PM 1 comments
_salibo
This week, I learned about RECURSION….
The repetitive process by which a function calls itself is called RECURSION OR CIRCULAR DEFINITION.
This is a way of defining something in terms of itself.
A function is said to be recursive if a statement in the body of the function calls the function that contains it.
PARTS OF THE RECURSIVE FUNCTION
Base Case
This is the part of the recursive function that is found on the IF clause. This contains the condition that should be satisfied at one point of execution to terminate the repetitive process done by the recursive function.
General Case
This is the part of the recursive function that is found on the else-clause. This contains the function call of the recursive function to itself.
EXAMPLE:
factorial (int n)
{
if (n == 1 || n == 0) return 1;
else return (n * factorial (n-1));
}
If the n value is 4, 4 * (factorial (4-1)
if the n value is 3, 3 * (factorial (3-1)
if the n value is 2, 2 * (factorial (2-1)
if the n value is 1, 1
DIRECT AND INDIRECT RECURSION
Direct recursions are recursive functions that can call itself through a function call directly inside the body of the function.
Indirect recursions are recursive functions that can call another functions outside its function.
Friday, January 9, 2009
Posted by hanzoii` :) at 10:05:00 PM 0 comments