Nisha Raj

Greenhorn
+ Follow
since Jan 18, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Nisha Raj

Got the following error
java.lang.NoClassDefFoundError: org/apache/oro/text/perl/Perl5Util

i know the solution
[Put the jar containing "org/apache/oro/text/perl/Perl5Util
" class on the server and modify the classpath of the server to include the jar file in the classpath.]

so what is the name of the jar containing "org/apache/oro/text/perl/Perl5Util" class ?

-Nisha
18 years ago
Hi Arvind,

Try out this link for jqplus
http://enthuware.com/jqplus/

-Nisha
Hi Shal,

A shortcut method for finding the negative no of a binary is

"Starting from the right i.e LSB (Least Significant Bit) you find the first one bit. From LSB till the first 1 bit, including the 1 bit keep all the bits as it is and after the 1 bit interchange all other bit 1s to 0s and 0s to 1s"

eg;

x=001010

from right keep 10 as it is
remaining part 0010 - interchanging 0s to 1s and 1s to 0s we get 1101
combining the above 2 steps we get

-x=110110