"Welcome to Programmer's Playground! We are dedicated to exploring and demystifying the world of programming and technology. From coding tutorials to product reviews and everything in between, our channel is the ultimate destination for tech enthusiasts and aspiring coders. Join us as we dive into the latest trends, tools and techniques, and learn how to master the art of programming. Get ready to level up your tech skills and join the fun at Programmer's Playground!"
Programmer Playground
what will be the output?
class abc{
public static void main(String args[]){
float f=12.5;
System.out.println(f);
}
}
2 years ago | [YT] | 0
View 0 replies
Programmer Playground
what will be the output?
int a=4<<1;
System.out.println(a);
2 years ago | [YT] | 0
View 0 replies
Programmer Playground
what will be the output?
int arr[]={1,2,3,4};
System.out.println(arr[4]);
2 years ago | [YT] | 0
View 0 replies
Programmer Playground
what is the old name of Java?
2 years ago | [YT] | 0
View 0 replies
Programmer Playground
what will be the output?
int a=10;
int b=5;
int temp=a;
a=b;
b=temp;
System.out.println(a+" "+b);
2 years ago | [YT] | 0
View 0 replies
Programmer Playground
what will be the Output?
String a="123.4";
int n=Integer.parseInt(a);
System.out.println(n);
2 years ago | [YT] | 0
View 0 replies
Programmer Playground
Error in which Line? and tell the reason in comment section.
int age=12; //line 1
String a="Programmer"; //line 2
int a@b=34; // line 3
int $a=12; //line 4
2 years ago | [YT] | 0
View 1 reply
Programmer Playground
what will be the output?
int a=10;
int b=12;
System.out.println(++b+" "+a++);
2 years ago | [YT] | 0
View 0 replies
Programmer Playground
what will be the Output?
String str = "Programmer";
int index = str.lastIndexOf('r');
System.out.println(index);
2 years ago | [YT] | 2
View 0 replies
Programmer Playground
what will be the Output?
int a=10;
int b=0;
int c=a/b;
System.out.println(c);
2 years ago | [YT] | 1
View 0 replies
Load more