QA Quiz
119 subscribers
1 photo
11 links
For Daily Quiz in QA. & Important Questions for the interview (All types of QA Quiz)

๐Ÿ’ฌJoin :- t.me/qa_evaluation

Back up group Discord ๐Ÿค:
https://discord.com/invite/utyjMQBP3m

โšกMore Software telegram groups ๐Ÿ’™ : t.me/addlist/GXcoHZLM9Ts4NWQ1
Download Telegram
A ________ is an occurrence where the software does not behave as expected
Anonymous Quiz
48%
Comment if you know
52%
Answer
A ________ is an occurrence where the software does not behave as expected.
Anonymous Quiz
33%
Answer
67%
I know answer
________ testing is done to ensure that the new code does not adversely affect the existing functionality of the product
Anonymous Quiz
62%
Answer
38%
Self Answer
1. **What is the main objective of manual testing?**
Anonymous Quiz
42%
If u know comment
58%
For answer click on this
2. **Which of the following is a type of manual testing?**
Anonymous Quiz
45%
Unit Testing
1%
Load Testing
47%
System Testing
6%
Performance Testing
Forwarded from Surya's techno world (๊ฏฑืื…ึ’ฯ…ืื…๊ญˆืื…แจฎืื…ึฎ๊ซถษ‘ืื…ึฎ ฦ™ืื…ึ‘๊ชฑืื…๊ญˆืื…ษ‘ืื…ึฎ๊ช€ืื…. โšโ–ˆโ•โ•SBKโ•โ•โ–ˆโš)
Which SQL clause is used to filter groups of rows based on a condition? @qa_evaluation
Anonymous Quiz
28%
A) WHERE
51%
B) GROUP BY
9%
C) HAVING
11%
D) ORDER BY
Though activities in the Fundamental test process may overlap or occur concurrently, identify the sequential process. i) Test Implementation and Execution ii) Test Closure activitiesiii) Evaluating exit criteria and reporting iv) Test Analysis and Design
Anonymous Quiz
0%
i-iii-ii-iv
100%
iv-i-iii-ii
0%
i-ii-iii-iv
0%
iii-ii-iv-i
Which SQL function is used to calculate the cumulative sum of a column? Join @qa_evaluation
Anonymous Quiz
48%
A) SUM()
39%
B) CUME_SUM()
9%
C) RUNNING_SUM()
4%
D) ROW_NUMBER()
Creating UI/UX test cases involves considering various scenarios to ensure a smooth and user-friendly experience. Here are some common scenarios along with example test cases:

### 1. Navigation
- Test Case 1: Main Navigation Menu
- Description: Verify that all links in the main navigation menu are working and lead to the correct pages.
- Steps:
1. Open the application.
2. Click on each item in the main navigation menu.
- Expected Result: Each click should navigate to the corresponding page without any errors.

- Test Case 2: Breadcrumb Navigation
- Description: Verify that breadcrumb navigation is working correctly and reflects the user's current position.
- Steps:
1. Navigate to a sub-page.
2. Check the breadcrumb links.
3. Click on each breadcrumb link.
- Expected Result: Breadcrumb links should navigate to the corresponding parent pages.

### 2. Forms and Inputs
- Test Case 1: Form Submission with Valid Data
- Description: Verify that a form submits successfully with valid data.
- Steps:
1. Open the form page.
2. Enter valid data into all required fields.
3. Click on the submit button.
- Expected Result: The form should submit successfully, and a success message should be displayed.

- Test Case 2: Form Validation with Invalid Data
- Description: Verify that form validation works when entering invalid data.
- Steps:
1. Open the form page.
2. Enter invalid data into one or more fields.
3. Attempt to submit the form.
- Expected Result: The form should not submit, and appropriate error messages should be displayed for each invalid field.

### 3. Responsive Design
- Test Case 1: Mobile Responsiveness
- Description: Verify that the application is responsive on mobile devices.
- Steps:
1. Open the application on a mobile device or use a browserโ€™s developer tools to simulate a mobile device.
2. Navigate through various pages.
- Expected Result: The application should display correctly without horizontal scrolling, and elements should be appropriately sized.

- Test Case 2: Tablet Responsiveness
- Description: Verify that the application is responsive on tablet devices.
- Steps:
1. Open the application on a tablet device or use a browserโ€™s developer tools to simulate a tablet device.
2. Navigate through various pages.
- Expected Result: The application should display correctly without horizontal scrolling, and elements should be appropriately sized.

### 4. Usability
- Test Case 1: Accessibility Compliance
- Description: Verify that the application complies with accessibility standards (e.g., WCAG).
- Steps:
1. Use an accessibility checker tool to evaluate the application.
- Expected Result: The application should pass the accessibility checks without significant issues.

- Test Case 2: User Feedback and Confirmation Messages
- Description: Verify that user actions provide appropriate feedback and confirmation messages.
- Steps:
1. Perform actions such as form submissions, deletions, and updates.
- Expected Result: Each action should provide clear feedback or confirmation to the user.

### 5. Performance
- Test Case 1: Load Time
- Description: Verify that the application loads within an acceptable time frame.
- Steps:
1. Measure the time taken to load the homepage and other critical pages.
- Expected Result: Pages should load within the defined performance thresholds.

- Test Case 2: Interactive Element Response Time
- Description: Verify that interactive elements (e.g., buttons, links) respond promptly.
- Steps:
1. Click on various interactive elements.
- Expected Result: Interactive elements should respond within a reasonable time frame, without noticeable delays.

### 6. Content and Layout
- Test Case 1: Consistent Layout
- Description: Verify that the layout is consistent across different pages.
- Steps:
1. Navigate through various pages.
2. Observe the layout and structure.
- Expected Result: The layout should be consistent and uniform across all pages.

#Testcase #manual
Selenium with Java in Visual Studio Code (VS Code) for testing. Hereโ€™s a basic guide to get you started:

1. Install Java Development Kit (JDK):
- Download and install the JDK from Oracle's website.
- Set up the environment variables JAVA_HOME and PATH to point to your JDK installation.

2. Install VS Code:
- Download and install Visual Studio Code from here.

3. Install Java Extensions for VS Code:
- Open VS Code.
- Go to the Extensions view (Ctrl+Shift+X).
- Install the following extensions:
- Language Support for Java(TM) by Red Hat
- Debugger for Java
- Java Test Runner
- Maven for Java (optional, if you want to use Maven)

4. Set Up a Selenium Project:
- Open VS Code and create a new folder for your project.
- Open a terminal in VS Code (Ctrl+``).
- If youโ€™re using Maven, you can create a new Maven project by running:
mvn archetype:generate -DgroupId=com.example -DartifactId=selenium-project -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
cd selenium-project

- If youโ€™re not using Maven, create a new folder structure:
selenium-project
โ”œโ”€โ”€ src
โ”‚ โ”œโ”€โ”€ main
โ”‚ โ””โ”€โ”€ test
โ””โ”€โ”€ lib


5. Add Selenium Dependencies:
- If using Maven, add Selenium dependencies to your pom.xml:
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.0.0</version>
</dependency>
</dependencies>

- If not using Maven, download Selenium JARs from here and place them in the lib folder. Then, add them to your classpath.

6. Write Your First Test:
- Create a new Java class in the src/test directory, for example, FirstTest.java`:
```java
package com.example;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class FirstTest {
public static void main(String[] args) {
// Set the path to the chromedriver executable
System.setProperty("webdriver.chrome.driver", "path/to/chromedriver");

// Initialize a new WebDriver instance
WebDriver driver = new ChromeDriver();

// Open a website
driver.get("https://www.example.com");

// Close the browser
driver.quit();
}

#Selenium #Vscode
๐Ÿ‘1
Performance Testing of any Web Application is?
Anonymous Quiz
19%
Functional testing
81%
Non Functional testing
๐Ÿ‘1
๐Ÿ‘2
๐Ÿ‘1
๐Ÿ‘1