Upload Button Icon Add office photos

Filter interviews by

Photon Technologies Quality Assurance Analyst Interview Questions and Answers

Updated 20 Sep 2024

Photon Technologies Quality Assurance Analyst Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. How will you handle alert
  • Ans. 

    I will handle alerts by prioritizing them based on severity, investigating the root cause, and implementing necessary actions to resolve the issue.

    • Prioritize alerts based on severity levels (e.g. critical, high, medium, low)

    • Investigate the root cause of the alert to understand the underlying issue

    • Collaborate with relevant teams to address and resolve the alert in a timely manner

    • Implement necessary actions to prevent si...

  • Answered by AI
  • Q2. How will you handle dropdown
  • Ans. 

    Dropdowns can be handled by identifying the dropdown element, selecting an option, and verifying the selection.

    • Identify the dropdown element using its locator (ID, class, etc.)

    • Use a method like selectByVisibleText() or selectByValue() to choose an option

    • Verify the selected option to ensure it was successfully chosen

  • Answered by AI
  • Q3. About cucumber and complete details

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

It consist of general aptitude questions like logical reasoning, realtime problem etc

Round 3 - Technical 

(1 Question)

  • Q1. Tell me about yourself Java based questions Oops based scenarios SQL query
Round 4 - HR 

(1 Question)

  • Q1. Ask for strength and weeknes Referred location Self intro Thats all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Written test pharmacy based questions any questions

Round 3 - Assignment 

Green chemistry and it's applications and herbal medicine compounds

Interview Preparation Tips

Topics to prepare for Cognizant Quality Assurance Analyst interview:
  • Pharmaceutical analysis
  • Thin Layer Chromatography
  • paper chromatography
  • uv - visible spectrophotometer
Interview preparation tips for other job seekers - Interviews and written tests are compulsory
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Manual Testing related Questions
  • Q2. Scenario based Questions
  • Q3. Past Project related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything is Good. Easy questions were asked I gave all correct answers still HR replies me in follow up that my interview is not positive. I mean what they exactly want. Pathetic behavior.
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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were around 20 questions in aptitude section to appear

Round 2 - Assignment 

It had 50 technical knowledge based questions on testing domain

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What is your Name??
  • Q2. How is Python??
  • Ans. 

    Python is a versatile and powerful programming language known for its simplicity and readability.

    • Python is widely used for web development, data analysis, artificial intelligence, and automation.

    • It has a large standard library and a vibrant community of developers.

    • Python code is easy to read and write, making it a great choice for beginners and experienced programmers alike.

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What is Network ??
  • Ans. 

    A network is a collection of computers, servers, mainframes, network devices, and other devices connected to one another to share data and resources.

    • Networks can be classified based on their size (LAN, WAN, MAN)

    • Networks can be wired (Ethernet, fiber optic) or wireless (Wi-Fi, Bluetooth)

    • Networks can be used for sharing files, printers, internet access, and communication

    • Examples of networks include the internet, company

  • Answered by AI
  • Q2. How is software testing
  • Ans. 

    Software testing is the process of evaluating a software application to ensure it meets specified requirements and functions correctly.

    • Software testing involves identifying defects or bugs in the software.

    • It helps in ensuring the quality and reliability of the software.

    • Types of software testing include unit testing, integration testing, system testing, and acceptance testing.

  • Answered by AI
  • Q3. How is command system network?
  • Ans. 

    Command system network is a centralized system that controls and coordinates various devices and processes.

    • Command system network typically consists of a central server or controller that communicates with multiple devices or subsystems.

    • It allows for centralized monitoring, control, and coordination of various processes or equipment.

    • Examples include industrial automation systems, smart home systems, and military comman

  • Answered by AI
  • Q4. What is server???
  • Ans. 

    A server is a computer or software program that provides functionality for other programs or devices, often over a network.

    • A server stores and manages data, files, or applications for clients to access remotely.

    • Servers can provide services such as email, web hosting, file sharing, and database management.

    • Examples of servers include web servers like Apache or Nginx, email servers like Microsoft Exchange, and file server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please job

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

It was basic string and Collection questions. Lot of questions on core java and some selenium framework and architecture related questions.

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Related to your resume
  • Q2. Related to your skills
Round 3 - Technical 

(1 Question)

  • Q1. Related to given JD
Round 4 - Technical 

(1 Question)

  • Q1. Related to JD and resume
Round 5 - HR 

(1 Question)

  • Q1. Personal query and other personal stuff

I applied via Referral

Interview Questionnaire 

2 Questions

  • Q1. Sql queries where asked mainly
  • Q2. And the real testing scenario based question.

Interview Preparation Tips

Interview preparation tips for other job seekers - read real testing scenario and the SQL queries mostly

Photon Technologies Interview FAQs

How many rounds are there in Photon Technologies Quality Assurance Analyst interview?
Photon Technologies interview process usually has 1 rounds. The most common rounds in the Photon Technologies interview process are Technical.
What are the top questions asked in Photon Technologies Quality Assurance Analyst interview?

Some of the top questions asked at the Photon Technologies Quality Assurance Analyst interview -

  1. How will you handle al...read more
  2. How will you handle dropd...read more
  3. About cucumber and complete deta...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Photon Technologies interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 789 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
View all
Senior Software Engineer
77 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Software Engineer
24 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Technical Lead
22 salaries
unlock blur

₹16.4 L/yr - ₹23 L/yr

Softwaretest Engineer
14 salaries
unlock blur

₹4.5 L/yr - ₹10.1 L/yr

Software Developer
13 salaries
unlock blur

₹5.6 L/yr - ₹15.9 L/yr

Explore more salaries
Compare Photon Technologies with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview