code Solve execute


Hi friends πŸ‘‹ I share coding tutorials in Tamil – Java, FastAPI, Python libraries, LeetCode problems, and projects.
Let’s learn together and grow together πŸ“ˆπŸ’₯.


code Solve execute

which one is better ??

1 year ago | [YT] | 2

code Solve execute

Which keyword is used to inherit a class in Java?

1 year ago | [YT] | 5

code Solve execute

Guess......

class Test {
static int x = 10;
static {
x += 5;
}

public static void main(String[] args) {
System.out.println("x = " + x);
}
}

1 year ago | [YT] | 5

code Solve execute

Guess the output...πŸ˜‰βœ…
public class Main {
public static void main(String[] args) {
int x = 5;
System.out.println(x++ + ++x);
}
}

1 year ago | [YT] | 7

code Solve execute

Guess the outputπŸ˜‰βœ…...

public class Main {
public static void main(String[] args) {
int x = 5;
int y = 2;
double result = x / y;
System.out.println(result);
}
}

1 year ago | [YT] | 4

code Solve execute

Guess the output πŸ˜‰...

public class MyClass {
public static void main(String[] args) {
int x = 10;
int y = 5;
System.out.println("Result: " + x + y);
}
}

1 year ago | [YT] | 9

code Solve execute

Can we overload constructors in java?

2 years ago | [YT] | 6

code Solve execute

Which one not an Operating system ( OS ) ?

2 years ago | [YT] | 6