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
View 2 replies
Which keyword is used to inherit a class in Java?
1 year ago | [YT] | 5
View 0 replies
Guess......class Test { static int x = 10; static { x += 5; } public static void main(String[] args) { System.out.println("x = " + x); }}
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
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
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
Can we overload constructors in java?
2 years ago | [YT] | 6
Which one not an Operating system ( OS ) ?
code Solve execute
which one is better ??
1 year ago | [YT] | 2
View 2 replies
code Solve execute
Which keyword is used to inherit a class in Java?
1 year ago | [YT] | 5
View 0 replies
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
View 2 replies
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
View 0 replies
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
View 0 replies
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
View 0 replies
code Solve execute
Can we overload constructors in java?
2 years ago | [YT] | 6
View 0 replies
code Solve execute
Which one not an Operating system ( OS ) ?
2 years ago | [YT] | 6
View 0 replies