What will be the output of the program?
class SC{
public static void main(String [] args)
{
SC2 s = new SC2();
s.start();
}
void start()
{
int a = int b = System.out.print(" " + 7 + 2 + " ");
System.out.print(a + b);
System.out.print(" " + a + b + " ");
System.out.print(foo() + a + b + " ");
System.out.println(a + b + foo());
}
String foo()
{
return "foo";
}
}
What will be the output of the program?
class Test
{
public static void main(String [] args)
{
int x= String sup = (x <? "small" : (x < 22)? "tiny" : "huge";
System.out.println(sup);
}
}
What will be the output of the program?
class PassA
{
public static void main(String [] args)
{
PassA p = new PassA();
p.start();
}
void start()
{
long [] a1 = {3,4,5};
long [] a2 = fix(a1);
System.out.print(a1[+ a1[+ a1[+ " ");
System.out.println(a2[+ a2[+ a2[2]);
}
long [] fix(long [] a
{
a3[= return a }
}
Which two are equal?
What will be the output of the program?
class Test
{
static int s;
public static void main(String [] args)
{
Test p = new Test();
p.start();
System.out.println(s);
}
void start()
{
int x = twice(x);
System.out.print(x + " ");
}
void twice(int x)
{
x = x* s = x;
}
}
What will be the output of the program?
class Test
{
public static void main(String [] args)
{
int x= int y= for (int z =z <z++)
{
if (( ++x > 2 ) && (++y > 2))
{
x++;
}
}
System.out.println(x + " " + y);
}
}
What will be the output of the program?
class Test
{
public static void main(String [] args)
{
Test p = new Test();
p.start();
}
void start()
{
boolean b1 = false;
boolean b2 = fix(b1);
System.out.println(b1 + " " + b2);
}
boolean fix(boolean b
{
b1 = true;
return b }
}
import java.awt.*;
class Ticker extends Component
{
public static void main (String [] args)
{
Ticker t = new Ticker();
/* Missing Statements ? */
}
}
which two of the following statements, inserted independently, could legally be inserted into missing section of this code?
What will be the output of the program?
class Two
{
byte x;
}
class PassO
{
public static void main(String [] args)
{
PassO p = new PassO();
p.start();
}
void start()
{
Two t = new Two();
System.out.print(t.x + " ");
Two t2 = fix(t);
System.out.println(t.x + " " + t2.x);
}
Two fix(Two tt)
{
tt.x = return tt;
}
}
What will be the output of the program?
class Test
{
public static void main(String [] args)
{
int x= int y= for (int z =z <z++)
{
if (( ++x > 2 ) || (++y > 2))
{
x++;
}
}
System.out.println(x + " " + y);
}
}
What will be the output of the program?
class PassS
{
public static void main(String [] args)
{
PassS p = new PassS();
p.start();
}
void start()
{
String s1 = "slip";
String s2 = fix(s1);
System.out.println(s1 + " " + s2);
}
String fix(String s
{
s1 = s1 + "stream";
System.out.print(s1 + " ");
return "stream";
}
}
Which of the following are legal lines of code?
What will be the output of the program?
class BoolArray
{
boolean [] b = new boolean[3];
int count =
void set(boolean [] x, int i)
{
x[i] = true;
++count;
}
public static void main(String [] args)
{
BoolArray ba = new BoolArray();
ba.set(ba.b, 0);
ba.set(ba.b, 2);
ba.test();
}
void test()
{
if ( b[&& b[| b[)
count++;
if ( b[&& b[(++count - 2)] )
count += System.out.println("count = " + count);
}
}
What will be the output of the program?
class Bitwise
{
public static void main(String [] args)
{
int x =& int y = x ^ System.out.println( y |);
}
}
What will be the output of the program?
class BitShift
{
public static void main(String [] args)
{
int x = 0x System.out.print(x + " and ");
x = x >>> System.out.println(x);
}
}
Which two statements are equivalent?
Which two statements are equivalent?
What will be the output of the program?
public class Test
{
public static void leftshift(int i, int j)
{
i <<= j;
}
public static void main(String args[])
{
int i =j =
leftshift(i, j);
System.out.println(i);
}
}
What will be the output of the program?
class SSBool
{
public static void main(String [] args)
{
boolean b1 = true;
boolean b2 = false;
boolean b3 = true;
if ( b1 & b2 | b2 & b3 | b2 ) /* Line 8 */
System.out.print("ok ");
if ( b1 & b2 | b2 & b3 | b2 | b1 ) /*Line 10*/
System.out.println("dokey");
}
}
What will be the output of the program?
class Equals
{
public static void main(String [] args)
{
int x = double y = 100. boolean b = (x = y); /* Line 7 */
System.out.println(b);
}
}