Hi, in this channel, you can explore the fundamentals of software testing. From understanding testing methodologies to practical techniques, these videos offer a concise introduction. Dive into the world of quality assurance and enhance your software development skills today

Technology related, Java Selenium Automation testing videos, Selenium Interview Questions
Java Interview Questions, Automation testing, SQL, API testing, Postman, Python


TechBlossom2020

int x = 10;
Integer y = 10;
Which statement is true?

4 weeks ago | [YT] | 2

TechBlossom2020

String s1 = "hello";
String s2 = "hello";
Where is "hello" stored?

4 weeks ago | [YT] | 6

TechBlossom2020

Where are local variables of a method stored?

4 weeks ago | [YT] | 4

TechBlossom2020

try {
throw new IOException();
} catch (IOException e) {
throw e;
}
What must happen for this to compile?

4 weeks ago | [YT] | 3

TechBlossom2020

Which of the following is NOT a checked exception?

4 weeks ago | [YT] | 1

TechBlossom2020

try {
throw new SQLException();
} finally {
System.out.println("Done");
} What happens?

4 weeks ago | [YT] | 2

TechBlossom2020

public void m() throws FileNotFoundException {
throw new IOException();
}
What happens?

4 weeks ago | [YT] | 1

TechBlossom2020

public class Demo {
public static void main(String[] args) {
Demo d = new Demo();
d = null;
System.gc();
}
}
Where was d stored originally?

1 month ago | [YT] | 3

TechBlossom2020

class Test {
int x = 10;
void show() {
int y = 20;
}
}
Where are x and y stored?

1 month ago | [YT] | 6

TechBlossom2020

Choose the correct statement:

1 month ago | [YT] | 3