What is Amateurs?

Posted in Labels:


Amateurs have committed most of the computer crimes reported to date. Most embezzlers are not career criminals but rather are normal who observe a weakness in a y security system that allows them to access cash or other valuables. In the same sense computer criminals are ordinary computer professionals or users doing their jobs, when they discover they have access to something valuable. When no one objects the amateur may start using the computer at work to write letters maintain soccer league team standings or do accounting.  

Difference between VBScript and Java script

Posted in Labels:


Java Script:
1.      Java script case sensitive
2.      Java Script will be run on client side.
3.      JavaScript will explore in all the browser
4.      JavaScript is  more like c++
5.      JavaScript is client side validation
Example: Var x;
             for(x=1;x<=10;x++)
            {
            document.write(x+”<BR>”);
           }

BV Script:
1.      VBScript not case sensitive
2.      VBScript both client  side and server side
3.      VBScript is like VB
4.      VB accept only internet explore
5.      VBScript for server side validation
   Example:
Dim x
For x=1 to 10
Document. Write x & “<BR>”
next