String_bca

String_bca

University

10 Qs

quiz-placeholder

Similar activities

Java Exception Handling

Java Exception Handling

University

15 Qs

Java Basic 1

Java Basic 1

University

10 Qs

002_Java Methods

002_Java Methods

12th Grade - University

15 Qs

Programming Standard Input

Programming Standard Input

University

10 Qs

Java quiz-2024-Sec-B

Java quiz-2024-Sec-B

University

12 Qs

Java Method

Java Method

University

15 Qs

exception

exception

University

10 Qs

MS Core Java Quiz-2 2023

MS Core Java Quiz-2 2023

University

12 Qs

String_bca

String_bca

Assessment

Quiz

Computers

University

Hard

Created by

Kirti Aggarwal

Used 6+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

public static void main(String[] args) {

String s="Good Morning";

System.out.println(s.substring(2,6));

}

oodMo

ood M

odMor

od M

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

public static void main(String[] args){

String s="GoodMorning";

System.out.println(s.charAt(11));

}

g

null

java.lang.StringIndexOutOfBoundsException

n

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

public static void main(String[] args){

String s="Good";

String st="Hello";

System.out.println(s==st);

}

true

false

1

-1

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

public static void main(String[] args){

String s="Good";

String st=s;

System.out.println(s==st);

}

true

false

1

-1

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

public static void main(String[] args){

String s="GoodMorning";

System.out.println(s.startsWith('G'));

}

true

false

null

java.lang.Error: Unresolved compilation problem:

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

public static void main(String[] args){

String s="GoodMorning";

System.out.println(s.indexOf('m'));

}

false

-1

null

4

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

public static void main(String[] args){

String s1="10";

String s2="100";

System.out.println(s1+s2);

}

110

10100

compile time error

10010

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?