Question :What is TestNG? A programming language A test automation framework A browser An operating system Correct Answer : A test automation framework Question :Which file is used to configure TestNG settings? testng.properties testng.xml testng.cfg testng.settings Correct Answer : testng.xml Question :How do you define a test method in TestNG? public void testMethod()` public void testMethod()` with `@Test` annotation public void testMethod()` with `@startTest` annotation `@TestMethod` Correct Answer : public void testMethod()` with `@Test` annotation Question :What is the purpose of the `@Test` annotation in TestNG? It marks a method as a test method It defines the test data It specifies the test priority It handles test dependencies Correct Answer : It marks a method as a test method Question :How do you group test methods in TestNG? Using the `@Group` annotation Using the `@Test` annotation Using the `@Group` annotation with the g...