Posts

Showing posts from May, 2024

TCS Automation Testing | SDET | Interview Experience 2024 | Pune

In this article we will cover TCS Automation Testing Interview Questions from 2024 which could help you prepare in advance. TCS Automation Testing | SDET | Interview Experience 2024 Company - TCS Job role - Automation Engineer | SDET Job location- Pune(Virtual) Interviewer - Bharath Balaji Date - May 17 2024 Tell me about yourself? Share your screen and write a program for swapping 2 numbers without using 3rd variable. Explain Software Testing Life Cycle(STLC)? Difference between Priority and Severity? Interviewer was least interested and stopped after 3 questions, he was not even responsive.

Accenture Automation Testing | SDET | Interview Experience 2024 | Pune

In this article we will cover Accenture Automation Testing Interview Questions from 2024 which could help you prepare in advance. Accenture Automation Testing | SDET | Interview Experience 2024 Company - Accenture Job role - Automation Engineer | SDET Job location- Pune(Virtual) Interviewer - Gourav Jain Date - May 09 2024 Tell me about yourself? Write syntax of Explicit Wait? WebDriver wait = new WebDriverWait(Driver); wait.until(ExpectedCondition.visibilityOfElementLocated(driver.findElement(By.xpath("")))); Write syntax of an API get method and verify 200? given().header("authorization", "Bearer token "). when().get("http://api.com/user).then().assertThat().StatusCode(HttpStatus.SC_OK); What is the difference between OAuth 1.0 and OAuth 2.0? OAuth stands for Open Authorization Both OAuth 1.0 and OAuth 2.0 are authorization protocols. In terms of security, OAuth 1.0 uses SSL/TLS for secure communication which can be bit more expensive. On other side...

Understanding SQL

SQL is widely used across IT industry and is most common technology. We will be covering SQL topics in this article. What is SQL? SQL is structured query language which is a computer language for storing, manipulating and retrieving data stored in a relational database. The standard SQL commands to interact with relational databases are CREATE, INSERT, SELECT, UPDATE, DELETE and DROP. These commands are classified into following groups based on their nature DDL(Data Definition Language) CREATE - Creates a new table or view of a table or other objects in databases. ALTER - Modifies an database existing object or table. DROP - Deletes an entire table, a view of a table. Truncate - Delete the value stored in the table. DML(Data Manipulation Language)