Write the output of the following code segments:
1. a=10
b=200
print(a>100 and b>200)
Answers
Answered by
5
Answer:
int a = 10;
static int b = 20;
public
static void main(String[] args)
{
Test t1 = new Test();
t1.a = 100;
t1.b = 200;
Test t2 = new Test();
System.out.println("t1.a =" + t1.a + " t1.b =" + t1.b);
System.out.println("t2.a =" + 1.
Answered by
3
Answer:
option a
Explanation:
follow me please
Similar questions