Which of the following methods is/are used by the web browser to control the applet?
class BitShift
{
public static
void main(String [] args)
{
int x = 0x80000000;
System.out.
print(x + " and ");
x = x >>> 31;
System.out.
println(x);
}
}
Reveal answer
Fill a bubble to check yourself