Upload Button Icon Add office photos

Filter interviews by

Shaligram InfoTech Sr. Quality Assurance Interview Questions and Answers

Updated 5 Feb 2025

Shaligram InfoTech Sr. Quality Assurance Interview Experiences

1 interview found

Sr. Quality Assurance Interview Questions & Answers

user image Chintan Savaliya

posted on 3 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is software testing? What is alpha and beta testing? What is smoke and sanity testing? What is performance testing? What is UI testing? What is

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

ICM 10
Medical coding

Round 2 - Technical 

(7 Questions)

  • Q1. Development reports
  • Q2. Development of good product
  • Q3. Good manufacturing
  • Q4. Good cleaning process
  • Q5. Good sterile product
  • Q6. Development production
  • Q7. Good quality assurance

Interview Preparation Tips

Topics to prepare for Wipro Quality Assurance Officer interview:
  • Quality Assurance
Interview preparation tips for other job seekers - Good quality
Good quantity
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(7 Questions)

  • Q1. What is abstraction in c#
  • Ans. 

    Abstraction in C# is the process of hiding the implementation details and showing only the necessary features of an object.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • It helps in reducing complexity and improving maintainability of the code

    • In C#, abstraction is achieved using abstract classes and interfaces

  • Answered by AI
  • Q2. What is xpath and its type.
  • Ans. 

    XPath is a language used for navigating through XML documents and selecting nodes based on their attributes or values.

    • XPath stands for XML Path Language.

    • It is used to navigate through elements and attributes in an XML document.

    • There are two types of XPath: Absolute XPath and Relative XPath.

    • Absolute XPath starts from the root node, denoted by a single forward slash (/).

    • Relative XPath starts from the current node, denote

  • Answered by AI
  • Q3. Can we change wait time during runtime.
  • Ans. 

    Yes, wait time can be changed during runtime by adjusting the code logic or configuration settings.

    • Wait time can be changed by modifying the code to include dynamic wait times based on certain conditions.

    • Configuration settings in the application or system can also be adjusted to change wait times.

    • For example, in automated testing scripts, wait times can be adjusted based on the response time of the application being te

  • Answered by AI
  • Q4. How to hand window in selenium
  • Ans. 

    To handle windows in Selenium, you can use the switchTo() method to switch between windows.

    • Use getWindowHandles() to get all window handles

    • Use switchTo().window() to switch to a specific window handle

    • Perform actions on the desired window

  • Answered by AI
  • Q5. How to hand scroll bar.
  • Ans. 

    To handle a scroll bar, simply click and drag the scroll bar up or down to navigate through a webpage or document.

    • Click on the scroll bar and drag it up or down to move through the content.

    • Use the scroll wheel on your mouse to scroll up or down.

    • On touch devices, swipe up or down on the screen to scroll.

    • You can also use the arrow keys on your keyboard to scroll up or down.

  • Answered by AI
  • Q6. How to handle popup window.
  • Ans. 

    To handle a popup window, you can use automation tools like Selenium WebDriver to locate and interact with the popup elements.

    • Use Selenium WebDriver to switch to the popup window

    • Identify and interact with elements on the popup window

    • Perform necessary actions on the popup window

    • Switch back to the main window after handling the popup

  • Answered by AI
  • Q7. How to open new tab.
  • Ans. 

    To open a new tab, you can use keyboard shortcuts or mouse clicks depending on the browser you are using.

    • For most browsers, you can open a new tab by pressing Ctrl + T on your keyboard.

    • Alternatively, you can right-click on a link and select 'Open link in new tab' from the context menu.

    • You can also click on the '+' icon next to the existing tabs to open a new tab.

    • Some browsers allow you to open a new tab by pressing Ctr

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Monster and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Select 3 rd highest salary from employee table
  • Ans. 

    To select the 3rd highest salary from the employee table, you can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query like 'SELECT salary FROM employee ORDER BY salary DESC LIMIT 1 OFFSET 2' to get the 3rd highest salary.

    • The 'ORDER BY' clause sorts the salaries in descending order, 'LIMIT 1' limits the result to 1 row, and 'OFFSET 2' skips the first two rows.

    • Make sure to adjust the 'OFFSET' value if

  • Answered by AI
  • Q2. Difference between put and patch
  • Ans. 

    Put is used to create or replace a resource, while patch is used to update a resource partially.

    • Put is idempotent, meaning multiple identical requests will have the same effect as a single request

    • Patch is not idempotent, as multiple identical requests may have different effects

    • Put requires the client to send the entire updated resource, while patch only requires the specific changes to be sent

  • Answered by AI
  • Q3. Difference between == and equals in string
  • Ans. 

    The == operator checks for reference equality, while the equals method checks for value equality in strings.

    • Use == to check if two string variables refer to the same object in memory.

    • Use equals() method to check if two string variables have the same sequence of characters.

    • Example: String str1 = "hello"; String str2 = "hello"; str1 == str2 will return false, but str1.equals(str2) will return true.

  • Answered by AI
  • Q4. Difference way of declaring String
  • Ans. 

    String can be declared using double quotes, single quotes, or the String constructor.

    • Declare using double quotes: String str1 = "Hello";

    • Declare using single quotes: String str2 = 'World';

    • Declare using String constructor: String str3 = new String("Java");

  • Answered by AI
  • Q5. Difference between String builder and String buffer
  • Ans. 

    String builder is not synchronized, while String buffer is synchronized.

    • String builder is faster than String buffer because it is not synchronized.

    • String buffer is thread-safe, while String builder is not.

    • String builder is preferred for single-threaded applications, while String buffer is preferred for multi-threaded applications.

  • Answered by AI
  • Q6. Convert array into arraylist
  • Ans. 

    Convert array to ArrayList of strings

    • Create a new ArrayList

    • Use Arrays.asList() method to convert array to ArrayList

    • Example: String[] array = {"apple", "banana", "orange"}; ArrayList list = new ArrayList<>(Arrays.asList(array));

Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Differnce between static and dynamic testing
  • Ans. 

    Static testing is done without executing the code, while dynamic testing involves executing the code.

    • Static testing is performed during the early stages of development to prevent defects from entering the codebase.

    • Dynamic testing is carried out during the later stages of development to validate the behavior of the software.

    • Examples of static testing include code reviews, walkthroughs, and inspections.

    • Examples of dynami...

  • Answered by AI
  • Q2. Locators in selenium
  • Ans. 

    Locators in Selenium are used to identify web elements on a web page in order to perform actions like click, type, etc.

    • Locators are used to find elements on a web page based on certain attributes like id, name, class, etc.

    • Common types of locators in Selenium include ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and XPath.

    • For example, driver.findElement(By.id("username")) will find the elem

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared for interview

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Self introduction
  • Q2. Good evening sir thank for giving me great opportunity..my name is jadhav kishoreI'ma.23 basically I'm from sangareddy currently staying in uppal Hyderabad I have completed my bachelor's degree from vision...
  • Q3. My project name formulation Evaluation off dilayed release tablet of esemoprazole it is a proton pumpinhibitors used in tha treatment ofantacide
Round 2 - Group Discussion 

One topic given how to interact people and how to solve problems

Round 3 - HR 

(1 Question)

  • Q1. Hr ask trams and conditions company timing and how to work this company
Round 4 - HR 

(1 Question)

  • Q1. Company trams and conditions are how to work timings and some difficult question

Interview Preparation Tips

Interview preparation tips for other job seekers - Quality assurance
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Related from sheetmetal and fabrication,hose pipes
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Coding,essay,aptitude maths,grammer,logical

Round 2 - Technical 

(3 Questions)

  • Q1. Testing related question
  • Q2. Project related questions
  • Q3. Basic coding question
Round 3 - HR 

(2 Questions)

  • Q1. Hobbies related questions
  • Q2. Working location

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly with your projects.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java and selenium related questions,
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me something about yourself
  • Q2. Suppose there is a conflict between 2 colleagues how will you assign task to them
  • Q3. Difference between api and soap api
  • Ans. 

    API is a general term for any interface that allows communication between different software systems, while SOAP API is a specific type of API that uses the SOAP protocol for communication.

    • API is a general term for any interface that allows communication between different software systems

    • SOAP API is a specific type of API that uses the SOAP protocol for communication

    • API can use various protocols like REST, SOAP, GraphQ...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Explain BAU in your project
  • Q2. What is artifact in agile methodlogy
  • Ans. 

    Artifacts in agile methodology are tangible by-products of the development process that provide documentation and information for the team.

    • Artifacts include user stories, product backlog, sprint backlog, burndown charts, and release plans.

    • They help in communication, planning, and tracking progress throughout the project.

    • Examples of artifacts are wireframes, prototypes, test cases, and design documents.

    • Artifacts are ess...

  • Answered by AI
  • Q3. API testing and their features
  • Ans. 

    API testing involves testing the functionality, reliability, performance, and security of APIs.

    • API testing ensures that the API functions correctly, returns the expected results, and handles errors properly.

    • It involves testing different types of APIs such as REST, SOAP, and GraphQL.

    • API testing can be done manually or using automated tools like Postman, SoapUI, or JMeter.

    • Common features of API testing include endpoint t...

  • Answered by AI

Skills evaluated in this interview

Shaligram InfoTech Interview FAQs

How many rounds are there in Shaligram InfoTech Sr. Quality Assurance interview?
Shaligram InfoTech interview process usually has 1 rounds. The most common rounds in the Shaligram InfoTech interview process are Technical.

Tell us how to improve this page.

Shaligram InfoTech Sr. Quality Assurance Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 802 Interviews
View all

Shaligram InfoTech Sr. Quality Assurance Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

5.0

Job security

1.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
28 salaries
unlock blur

₹2.6 L/yr - ₹7 L/yr

Junior Software Developer
16 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Software Engineer
13 salaries
unlock blur

₹4 L/yr - ₹11.2 L/yr

Business Development Manager
7 salaries
unlock blur

₹6 L/yr - ₹10.2 L/yr

Team Lead
6 salaries
unlock blur

₹6.2 L/yr - ₹14 L/yr

Explore more salaries
Compare Shaligram InfoTech with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview