Senior Interview Questions

341,514 senior interview questions shared by candidates

There were two rounds. Written exam and personal interview 1. written test has majorly ISTQB questions. total 18 questions. Level of difficulty is easy but there is never enough time to answer all the questions. duration of exam - 50 minutes. Its a paper based exam, hence not enough space to write answers even if you want to write more. It seemed more like a history exam in school, as the marks are based on how much you write. 2. Personal Interview: Questions asked were mainly behavioral. The guy who interviewed me was not even looking at me, while asking questions. As I was answering it, he was busy writing down whatever I was saying on a piece of paper. I am pretty sure he did not even make an attempt in understanding whatever i was explaining : the concepts, examples, processes, etc. He was not able to write down even 10% of what I said. ( FYI: my English and communication skills are above average)
avatar

Senior Test Analyst

Interviewed at Planit

3.5
Mar 17, 2017

There were two rounds. Written exam and personal interview 1. written test has majorly ISTQB questions. total 18 questions. Level of difficulty is easy but there is never enough time to answer all the questions. duration of exam - 50 minutes. Its a paper based exam, hence not enough space to write answers even if you want to write more. It seemed more like a history exam in school, as the marks are based on how much you write. 2. Personal Interview: Questions asked were mainly behavioral. The guy who interviewed me was not even looking at me, while asking questions. As I was answering it, he was busy writing down whatever I was saying on a piece of paper. I am pretty sure he did not even make an attempt in understanding whatever i was explaining : the concepts, examples, processes, etc. He was not able to write down even 10% of what I said. ( FYI: my English and communication skills are above average)

/* Write a query to find all duplicate jobs in the People table */ select count(*) from People p1 join People p2 on p1.Job = p2.job and p1.FirstName <> p2.FirstName; /* Write a query to find all duplicate FirstName, and Job values in the People table and number of duplicates */ with cte as( select row_number() over(order by FirstName, job) as num, FirstName, job from People ) select count(*) from cte p1 join cte p2 on p1.Job = p2.job and p1.FirstName = p2.FirstName and p1.num <> p2.num; /* Write a query to find all duplicate First Names with different jobs in the People table */ select p1.FirstName from People p1 join People p2 on p1.Job < p2.job and p1.FirstName = p2.FirstName;
avatar

Senior Software Engineer

Interviewed at WideOrbit

3.6
Nov 18, 2020

/* Write a query to find all duplicate jobs in the People table */ select count(*) from People p1 join People p2 on p1.Job = p2.job and p1.FirstName <> p2.FirstName; /* Write a query to find all duplicate FirstName, and Job values in the People table and number of duplicates */ with cte as( select row_number() over(order by FirstName, job) as num, FirstName, job from People ) select count(*) from cte p1 join cte p2 on p1.Job = p2.job and p1.FirstName = p2.FirstName and p1.num <> p2.num; /* Write a query to find all duplicate First Names with different jobs in the People table */ select p1.FirstName from People p1 join People p2 on p1.Job < p2.job and p1.FirstName = p2.FirstName;

Viewing 1241 - 1250 interview questions

Glassdoor has 341,514 interview questions and reports from Senior interviews. Prepare for your interview. Get hired. Love your job.