Upload Button Icon Add office photos

Filter interviews by

360Logica Software Testing Services Interview Questions and Answers

Updated 13 May 2024

360Logica Software Testing Services Interview Experiences

Popular Designations

5 interviews found

QA Consultant Interview Questions & Answers

user image Anonymous

posted on 28 Apr 2021

I applied via Referral and was interviewed in May 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic Java and Selenium Topics Questions and some questions related to manual testing and different approaches
  • Q2. Useless Java * pattern Question which will never help you in anywhere in your work . like old School Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared of Java basic and selenium Topics . thats it to crack the interview

QA Consultant Interview Questions asked at other Companies

Q1. GIVE YOU ONE CONDITION TO TAKE YOUR THOUGHT ABOUT IT
View answer (1)

QA Trainee Interview Questions & Answers

user image Apar Garg

posted on 13 May 2024

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

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Dp you have any experience in the software Testing? How will you deal with the day to day pressure? Are you ready to relocate to Noida if required?
Round 2 - Technical 

(3 Questions)

  • Q1. What do you understand by Regression Testing?
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • Regression testing is performed after code changes to verify that the existing functionality still works correctly.

    • It helps in identifying any defects introduced by new code changes.

    • Regression testing can be automated to save time and effort.

    • Examples of regression test

  • Answered by AI
  • Q2. Difference between smoke testing and sanity testing.
  • Ans. 

    Smoke testing is a basic test to check if the software build is stable, while sanity testing is a narrow regression test to check specific functionalities.

    • Smoke testing is done to ensure the critical functionalities of the software are working fine after a build.

    • Sanity testing is done to verify that the specific changes made in the code are working as expected.

    • Smoke testing is a broader test that covers major functiona...

  • Answered by AI
  • Q3. Agile Methodology and terminologies.

Skills evaluated in this interview

QA Trainee Interview Questions asked at other Companies

Q1. What is regression testing, smoke testing,unit testing?
View answer (1)

QA Consultant Interview Questions & Answers

user image Anonymous

posted on 21 Dec 2022

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2021. There were 4 interview rounds.

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 - Technical 

(1 Question)

  • Q1. General testing questions like testing methodologies, tools you have worked on, agile process, test case writing, etc.
Round 3 - One-on-one 

(1 Question)

  • Q1. Situational questions like how to handle bug leakage in prod, client escalations, how to report bug, tools I have worked on, why do you want to leave your current company, etc.
Round 4 - Client Interview 

(1 Question)

  • Q1. Client was interested in knowing about Agile process, tools I have worked. Basically, they were trying to gauge my experience and if I would be good fit for their team.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, do not fake your experience. Believe me, we know :) And it will only cause problems to you once you join.

QA Consultant Interview Questions asked at other Companies

Q1. GIVE YOU ONE CONDITION TO TAKE YOUR THOUGHT ABOUT IT
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. Start with programming questions like c# degates, cont. Read only and in java this function use in selenium different between find element & find elements & write line statments of that...a part from that ...

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)

360Logica Software Testing Services interview questions for popular designations

 QA Consultant

 (2)

 Test Engineer

 (1)

 Software Tester

 (1)

 QA Trainee

 (1)

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Aug 2019

I applied via Recruitment Consultant and was interviewed in Jul 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical round - normal to moderate question on selenium and TestNG. Basic programs to write like palindrome number, prime number etc. Basic questions of core Java eg diff between interface and abstract c...

Interview Preparation Tips

Interview preparation tips for other job seekers - My both rounds were great. I asked my area of improvement then I got positive feedback. I visited their office twice in person because first time their managerial panel was not there.

Then I kept following up. But no reply. Then one day I got feedback saying your feedback is not positive. Then I asked how can it change to negative now? But didn't get satisfactory answer.
I didnt understand this. I came twice to their office in heavy rain. They should value one's time. #dissatisfaction #makingFoolOfCandidates #notAtAllProfessional

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Interview questions from similar companies

I appeared for an interview before Jan 2021.

Interview Questionnaire 

2 Questions

  • Q1. Basic analysis questions
  • Q2. Excel Based analysis as it was a entry-level position

Interview Preparation Tips

Interview preparation tips for other job seekers - Read about the company
Read about the interviewer

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be transparent and real. Don't bluff :)
Fingent has got a good number of people in the interview panel(my personal experience)
Even if you do not know the answer, the panel will explain it to you.

I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions about Oops, data structures based on the projects I had done, and my resume
  • Q2. Questions about classes and abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 parts; part 1 is a coding test and part 2 is discussion.

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA

I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions about the projects you worked with. About how specific coding challenges were solved. How it could have been done other ways. etc.
  • Q2. About Python versions and differences. Impact on frameworks.
  • Q3. About module design, apis.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a relaxed interview, like a discussion. The questions are tough in that they make you think. Review your previous projects and be honest.

360Logica Software Testing Services Interview FAQs

How many rounds are there in 360Logica Software Testing Services interview?
360Logica Software Testing Services interview process usually has 3 rounds. The most common rounds in the 360Logica Software Testing Services interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for 360Logica Software Testing Services interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at 360Logica Software Testing Services. The most common topics and skills that interviewers at 360Logica Software Testing Services expect are Manual Testing, Automation Testing, JIRA, Javascript and Selenium.
What are the top questions asked in 360Logica Software Testing Services interview?

Some of the top questions asked at the 360Logica Software Testing Services interview -

  1. What do you understand by Regression Testi...read more
  2. Difference between smoke testing and sanity testi...read more
  3. Situational questions like how to handle bug leakage in prod, client escalation...read more

Tell us how to improve this page.

360Logica Software Testing Services Interview Process

based on 4 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 49 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.2
 • 26 Interviews
RGBSI Interview Questions
3.4
 • 24 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
View all

360Logica Software Testing Services Reviews and Ratings

based on 58 reviews

3.7/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.5

Salary

3.5

Job security

3.7

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 58 Reviews and Ratings
QA Consultant
65 salaries
unlock blur

₹2.8 L/yr - ₹13 L/yr

Senior QA Consultant
33 salaries
unlock blur

₹4.9 L/yr - ₹20 L/yr

Associate Qa Consultant
25 salaries
unlock blur

₹2.8 L/yr - ₹5.8 L/yr

Associate QA Lead
21 salaries
unlock blur

₹6 L/yr - ₹17.5 L/yr

Consultant Qa Engineer
21 salaries
unlock blur

₹5 L/yr - ₹10.8 L/yr

Explore more salaries
Compare 360Logica Software Testing Services with

Aurigo

4.7
Compare

Prime Focus Technologies

3.3
Compare

Peel-works

3.6
Compare

Yodlee

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