| Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML | ||||
|
||||
|
|
||||
| Tutorial Categories: Ajax
| Articles
| JSP
| Bioinformatics
| Database
| Free
Books |
Hibernate
| J2EE
| J2ME
| Java
| JavaScript
| JDBC
| JMS
| Linux
| MS
Technology |
PHP
| RMI
| Web-Services
| Servlets
| Struts
| UML
|
|
||||||||||||||||||||||||||||||
|
Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs |
||||||||||||||||||||||||||||||
Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.
Copyright © 2007. All rights reserved.
Current Comments
2 comments so far (post your own) View All Comments Latest 10 Comments:Exclusive-OR (XOR) produces a logical true only in the condition that the two values are different.
0 ^ 0 = 0
0 ^ 1 = 1
1 ^ 0 = 1
1 ^ 1 = 0
OR produces a logical true if any value is true.
0 | 0 = 0
0 | 1 = 1
1 | 0 = 1
1 | 1 = 1
Posted by G5 on Saturday, 12.13.08 @ 14:51pm | #82725
This article is wrong. In java 1^1 returns 0, not 1. If this was tested the error would be discovered right away.
Posted by Mark on Monday, 07.28.08 @ 08:23am | #69490