JAVA
2.7K subscribers
73 photos
111 files
76 links
Download Telegram
class Parent{
public int index=1;
}
public class Program extends Parent
{
public Program(int index){
index=index;
}
public static void main(String[] args) {
Program p=new Program(10);
System.out.println(p.index);
}
}
Options for above program
Anonymous Quiz
16%
0
48%
10
28%
1
8%
Compile time problem
public class Program
{
int val;
public Program(int _val){
val=_val;
}
public static void main(String[] args) {
Program p=new Program();
Program p=new Program(10);
}
}
import java.util.ArrayList;
public class Program
{
public static void main(String[] args) {
ArrayList a=new ArrayList();
a.add("C");
a.add("E");
a.add("B");
a.add("D");
a.add("A");
a.add("Z");
a.add("M");
a.remove(1);
a.remove(3);
a.add(2,a.get(3));
a.add(a.size()+" ");
a.remove(3);
System.out.println(a);
}
}
import java.util.ArrayList;
public class Program
{
public static void main(String[] args) {
String s1="Hello World";
String s2=new String("Hello World");
String s3=s2.intern();
System.out.println((s1==s2)+" "+(s2==s3)+" "+(s1==s3));
}
}
import java.util.ArrayList;
public class Program
{
public static void main(String[] args) {
int i=0;
char[] chArray=new char[20];
chArray={'a','b','c'};
System.out.println(chArray[i = +2]});
}
}
Options For above program
Anonymous Quiz
11%
a
25%
b
25%
c
39%
Compilation Error
Consider the following code fragment
Rectangle r1 = new Rectangle();
r1.setColor(Color.blue); Rectangle r2 = r1; r2.setColor(Color.red); After the above piece of code is executed, what are the colors of r1 and r2 (in this order)?
Anonymous Quiz
0%
None of the above.
What is the type and value of the following expression? (Notice the integer division)
-4 + 1/2 + 2*-3 + 5.0
Anonymous Quiz
11%
int -5
48%
double -4.5
11%
int -4
22%
double -5.0
7%
None of the above.
All Technical Languages PDF A to Z


1- .NET FRAMEWORK-

https://books.goalkicker.com/DotNETFrameworkBook/

2- Algorithms-

https://books.goalkicker.com/AlgorithmsBook/

3- Android-

https://books.goalkicker.com/AndroidBook/

4- Angular 2

https://books.goalkicker.com/Angular2Book/

5- Angular JS

https://books.goalkicker.com/AngularJSBook/

6- BASH

https://books.goalkicker.com/BashBook/

7- C

https://books.goalkicker.com/CBook/

8- C++

https://books.goalkicker.com/CPlusPlusBook/

9- C#

https://books.goalkicker.com/CSharpBook/

10- CSS

https://books.goalkicker.com/CSSBook/

11- Entity Framework-

https://books.goalkicker.com/EntityFrameworkBook/

12- Excel VBA

https://books.goalkicker.com/ExcelVBABook/

13- GIT

https://books.goalkicker.com/GitBook/

14- Haskell

https://books.goalkicker.com/HaskellBook/

15- Hibernate

https://books.goalkicker.com/HibernateBook/

16- HTML 5

https://books.goalkicker.com/HTML5Book/

17- HTML5 CANVAS

https://books.goalkicker.com/HTML5CanvasBook/

18- iOS

https://books.goalkicker.com/iOSBook/

19- JAVA

https://books.goalkicker.com/JavaBook/

20- JAVA SCRIPT

https://books.goalkicker.com/JavaScriptBook/

21- jQuery

https://books.goalkicker.com/jQueryBook/

22- KOTLIN

https://books.goalkicker.com/KotlinBook/

23- LaTex

https://books.goalkicker.com/LaTeXBook/

24- Linux

https://books.goalkicker.com/LinuxBook/

25- MATLAB

https://books.goalkicker.com/MATLABBook/

26- Microsoft SQL Server

https://books.goalkicker.com/MicrosoftSQLServerBook/

27- MongoDB

https://books.goalkicker.com/MongoDBBook/

28- MySQL

https://books.goalkicker.com/MySQLBook/

29- NodeJS

https://books.goalkicker.com/NodeJSBook/

30- Objective-C

https://books.goalkicker.com/ObjectiveCBook/

31- Oracle DB

https://books.goalkicker.com/OracleDatabaseBook/

32- Perl

https://books.goalkicker.com/PerlBook/

33- PHP

https://books.goalkicker.com/PHPBook/

34- PostgreSQL

https://books.goalkicker.com/PostgreSQLBook/

35- PowerShell

https://books.goalkicker.com/PowerShellBook/

36- Python

https://books.goalkicker.com/PythonBook/

37- R Book

https://books.goalkicker.com/RBook/

38- React JS

https://books.goalkicker.com/ReactJSBook/

39- React Native

https://books.goalkicker.com/ReactNativeBook/

40- Ruby

https://books.goalkicker.com/RubyBook/

41- Ruby on Rails

https://books.goalkicker.com/RubyOnRailsBook/

42- Spring Framework

https://books.goalkicker.com/SpringFrameworkBook/

43- SQL

https://books.goalkicker.com/SQLBook/

44- Swift

https://books.goalkicker.com/SwiftBook/

45- Type Script

https://books.goalkicker.com/TypeScriptBook2/

46- VBA

https://books.goalkicker.com/VBABook/

47- Visual Basic .Net

https://books.goalkicker.com/VisualBasic_NETBook/

48- Xamarin Forms

https://books.goalkicker.com/XamarinFormsBook/


@PrimeStudyBox

#Programming
#Books
public class Program
{
public static String toString(){ System .out.println("Hello"); return ""; } public static void main(String[] args) { System.out.println(toString ); } }
Anonymous Quiz
33%
Hello
33%
Compile time error
23%
Program@7fh2bd8(object class toString method is being called)
10%
No Output
Consider the two methods (within the same class)
public static int foo(int a, String s)
{
s = "Yellow";
a=a+2;
return a;
}
public static void bar()
{
int a=3;
String s = "Blue";
a = foo(a,s);
System.out.println("a="+a+" s="+s);
}
public static void main(String args[])
{
bar();
}
What is printed on execution of these methods?
Forwarded from Hasta Hua
Java interview questions (1).pdf
213.4 KB
JAVA pinned Deleted message
public class Program
{
private int num; private Program(){ System.out.print("Constructor"); num=5; } public static void main(String[] args) { Program p=new Program(); System.out.println(p.num); } }
Anonymous Quiz
32%
Compile Time Error
14%
0
55%
Constructor 5
0%
No Output