JMB Materials
الذهاب إلى القناة على Telegram
All Programming Language Materials All free Courses All free materials For Daily Job updates: https://t.me/jobsmukyambigilu
إظهار المزيد1 256
المشتركون
-124 ساعات
-17 أيام
-1230 أيام
أرشيف المشاركات
1 256
SQL zero to hero colourful handwritten guide 📚
Drop a ♥️ to get more such amazing contents 😊
1 256
Repost from Jobs Mukyam Bigilu
No need to go Gym 😂
https://www.instagram.com/p/C208oEapEMt/?igsh=YTh5YmZiMWM2dG1n
1 256
34.
What is the variables declared in a class for the use of all methods of the class called?
1 256
32.
Where does the system stores parameters and local variables whenever a method is invoked?
1 256
30.
Identify the return type of a method that does not return any value.
1 256
29.
Find the output of the following code.
Public class Solution{ Public static void main(String… argos){ Int x = 5; x * = (3 + 7); System.out.println(x);
1 256
28.
Find the output of the following code.
if(1 + 1 + 1 + 1 + 1 == 5){ System.out.print(“TRUE”); } else{ System.out.print(“FALSE”); }
1 256
27.
Find the output of the following code.
int ++a = 100; System.out.println(++a);
1 256
25.
How many objects will be created in the following?
String a = new String(“Interviewbit”); String b = new String(“Interviewbit”); Strinc c = “Interviewbit”; String d = “Interviewbit”;
1 256
23.
What does the following string do to given string str1.
String str1 = “Interviewbit”.replace(‘e’,’s’);
1 256
22.Identify the output of the following program.
Public class Test{
Public static void main(String argos[]){ String str1 = “one”; String str2 = “two”; System.out.println(str1.concat(str2)); } }
