Upload Button Icon Add office photos

Filter interviews by

One Click LCA Interview Questions and Answers

Updated 19 Sep 2021

One Click LCA Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical (Framework+locators) + Managerial

Interview Preparation Tips

Interview preparation tips for other job seekers - Create your own sample automation projects with logging,reporting, data driven ,POM etc and you will be good to gom

Senior Quality Engineer Interview Questions asked at other Companies

Q1. what is least count of vernier caliper ,micrometer, height gauge?
View answer (13)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: In quantitative aptitude i dont remember the questing exactly but alsomost all questings are similer to the questions in RS Agarwaal.. In reasoning and analytical section they will ask puzzles and if u read shakuntala devi and jimmers puzzle book it is more than sufficient.. In verbal section they have given around 2 passages and 5 questions for each passage dont waste more time in this section because it is time consuming.. they have given some fill in the blanks questions where we have to search for synonyms and antonyms No technical section was there
Total Questions: 75

Round: Technical Interview
Experience: Basically i am from Mechanical back ground they dint asked any questions related to software.... They asked questions like how do you update your self regarding your technical knowledge... have you thought of any innovative ideas recent past..

Round: HR Interview
Experience: In HR they asked 2 situation reaction tests. 1)she asked my hobbies and replied playing cricket... she posed a question to me that if i was appointed as cricket team captain for M-Tech mech team how i select my team.... i answered purely by performance no partiality like that.. but she asked to think more then she answered for the questions as... I alone cannot select the team because in M-Tech there may be more that 500 students so i have to take help from some of my friends and this shows attitude towards team work.... 2) She asked one more question like if i am a boss and there are 5 peoples working under me.. my boss given me one work that has to be completed in with in a month... now it is the last day of month and still 25% of work is remaining how i handle that situation... I answered that I will answer to the boss that from next time i will finish 1 months work in 20 days itself so that we will not be facing this kind of problems next time.. then she told ok....

General Tips: Infosys recruitment wont concentrate too much on technical side... they concentrate on logical and analytical thinking and situation reactions etc... so go through puzzles from shankuntala devi and jimmers... and some analytical and logical sections from RS agarwaal
Dont concentrate on technical questions because they wont ask any technical questions... you must prepare well for the written test and Interview will depend on your logical and analytical thinking and situation reactions.. all the best.. hope i will see you in Infosys next year....
College Name: NIT WARANGAL

Interview Preparation Tips

Round: Test
Experience: It went quite well.
Tips: Brush up everyday your aptitude skills
Duration: 30 minutes
Total Questions: 30

General Tips: Choosing your company and preparing for it early is better than trying everything on the day of selection process
Skills: Aptitude, Technical skills
College Name: IIT roorkee
Motivation: i am a self motivator

Interview Preparation Tips

Round: Test
Experience: Questions were based on basic maths and english but time duration as per level of questions was very less. I was hardly able to attempt 90 question.
Tips: Firstly attempt questions from the topics in which you are more comfortable. Don't spend much time in thinking.
Duration: 60 minutes
Total Questions: 120

Round: Technical Interview
Experience: As I am from statistics background ao they asked me questions from regression and inference in depth. Rest all question were from basic stats. And yes they ask question from everything what is there in your resume.
Tips: Be ready for question from everything what is there in your resume and prepare them in advance.

Round: HR Interview
Experience: It was easy and hardly last for 10 min
Tips: Be confident on whatever you speak and prepare for general HR questions in advance.

College Name: IIT BOMBAY

Interview Preparation Tips

Round: Resume Shortlist
Experience: Candidates with CG equal to or higher than 8.0 were selected.

Round: Test
Experience: It was divided in 2 sets of 45 minutes each.
Coding: To write a function to find if a string is palindrome or not. 
Verbal+quant: These were CAT model questions.
Duration: 90 minutes

Round: Interview
Experience: There were 2 rounds of this interview. Both were HR and questions based on resume and some general questions were asked.
Tips: I think I was selected because of my CG, coding skills and communication skills.

General Tips: If you're preparing for core, make sure you start revising your subjects soon. Keep your notes and concentrate on structures.
Skill Tips: I started my preparations in November by going through case study material available in lan and solving CAT questions.
College Name: IIT MADRAS

Interview Questions & Answers

Deloitte user image Anonymous

posted on 20 Jan 2015

Interview Questionnaire 

2 Questions

  • Q1. Why IT consultancy?
  • Q2. What would be the advantages of chemical background?

Interview Preparation Tips

Round: Test
Experience: CAT type questions were asked in English and DI.
Tips: Accuracy will matter and preparations for CAT will help.
Duration: 30 minutes
Total Questions: 40

Round: Technical Interview
Experience: Questions were based on Data Abstraction. Internship was the main topic around which the rest of the interview went on.
Tips: Coding skills should be good.

Round: HR Interview
Tips: Work on communication skills.

College Name: IIT KANPUR

Interview Questions & Answers

HCLTech user image Anonymous

posted on 11 Apr 2015

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Why should I hire you
  • Q3. Are you willing to relocate

Interview Preparation Tips

Round: Test
Experience: One written test. It contains four sections. Each section is of 15 minutes duration.
Tips: Prepare for general aptitude and learn the basics of C, C++ and Java.
Duration: 60 minutes

Round: HR Interview
Experience: General HR round questions were asked.
Tips: You must show your confidence and maintain eye contact with the interviewer.

General Tips: Brush up all the basics of your core subjects.
Skills: Good technical skills., Good communication skills.
College Name: NA

Interview Preparation Tips

Round: Test
Experience: Simple Aptitude - just brush up basics - be quick in your solving.
Duration: 120min minutes
Total Questions: 50+10

Round: HR Interview
Experience: Pretty simple interview round - was asked few HR questions. Majorly it was a informative session where i was told about the job profile and tested whether I was willing to take up the responsibility & commitment.

College Name: IIT MADRAS
Motivation: Just applied gen. Got through.

Interview Questionnaire 

6 Questions

  • Q1. Given a Linked list , print yes if it is palindrome else print no
  • Q2. Print the level order traversal of the binary tree in the spiral form
  • Ans. 

    Print the level order traversal of binary tree in spiral form

    • Perform level order traversal of the binary tree

    • Alternate the direction of traversal for each level

    • Use a stack to reverse the order of nodes in each level

    • Print the nodes in the order of traversal

  • Answered by AI
  • Q3. Maximum of all subarrays of size k(Expected Time Complexity O(N). Input : arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6} k = 3 Output : 3 3 4 5 5 5 6
  • Ans. 

    Find the maximum element in each subarray of size k in a given array.

    • Iterate through the array from index 0 to n-k.

    • For each subarray of size k, find the maximum element.

    • Store the maximum elements in a separate array.

    • Return the array of maximum elements.

  • Answered by AI
  • Q4. Given Two sorted array of size size n each. Find the Kth largest element in these two array (Expected Time Complexity Log(n))
  • Ans. 

    To find the Kth largest element in two sorted arrays, we can use the merge step of merge sort algorithm.

    • Merge the two arrays into a single sorted array using a modified merge sort algorithm.

    • Return the Kth element from the merged array.

  • Answered by AI
  • Q5. Website having several web-pages. And also there are lot many user who are accessing the web-site. say user 1 has access pattern : x->y->z->a->b->c->d->e->f user 2 has access pattern : z->a->b->c->d user 3...
  • Q6. Given two array , one of size m+n and contains m element and other position are empty , 2nd array is of size n and contains n element. both array are sorted , now merge the second array to first one such t...
  • Ans. 

    Merge two sorted arrays into one sorted array with expected time complexity of (m+n).

    • Use a two-pointer approach to compare elements from both arrays and merge them into the first array.

    • Start comparing elements from the end of both arrays and place the larger element at the end of the first array.

    • Continue this process until all elements from the second array are merged into the first array.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 90 minutes

Skills: Algorithm , OS, DBMS, data structure
College Name: NIT BHOPAL

Skills evaluated in this interview

Banking Interview Questions & Answers

ICICI Bank user image Anonymous

posted on 24 May 2015

Interview Questionnaire 

8 Questions

  • Q1. Project finance questions based on lenders perspective, borrowers perspective, loan syndication
  • Q2. How to decide on limit of debt etc
  • Q3. Comercial bank management questions. Gross NPA, Net NPA, Provisions, NIM, Other performnace measures of banks etc
  • Q4. Questions based on whatever Finance points you have mentioned on your CV
  • Q5. They asked some sector specific knowledge related to summer internship and workexperience
  • Q6. The interviewers asked me why did I chose to specialise in Finance
  • Q7. They asked me the relevance of your previous work ex with the profiles applied for
  • Q8. Mostly other questions were CV based

Interview Preparation Tips

Round: HR Interview
Experience: I had a good attitude in the interview, was always confident and smiling even when they were trying to put stress. Secondly i was very true and genuine in whatever answers I gave and that worked positive for me

General Tips: For interview which was mostly CV based it is important to know every line of your interview. Some people wrote projects on their CV which they were not through with. So its very important to be aware of each and every line of your CV.Don’t be very aggresive and don’t enter into unnecessary details regarding the job. Be calm, humble and flexible during your Interview. speak few good points in GD and don’t make it too noisy.
Skills: Banking, Economics
College Name: NA

Tell us how to improve this page.

People are getting interviews through

based on 1 One Click LCA 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.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Compare One Click LCA with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
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