Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Lemma Technologies Team. If you also belong to the team, you can get access from here

Lemma Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Lemma Technologies Interview Questions and Answers

Updated 16 Apr 2025
Popular Designations

9 Interview questions

An Ad Operations Manager was asked 2mo ago
Q. How many campaigns have you monitored and set up?
Ans. 

I have monitored and set up over 50 campaigns across various platforms, optimizing for performance and engagement.

  • Managed 20+ digital ad campaigns for a major retail client, focusing on seasonal promotions.

  • Set up and monitored PPC campaigns on Google Ads, achieving a 30% increase in ROI.

  • Implemented A/B testing for email marketing campaigns, improving open rates by 15%.

  • Collaborated with creative teams to develop en...

View all Ad Operations Manager interview questions
A Senior Software Engineer Testing was asked
Q. Write a Java program to reverse a string using recursion.
Ans. 

A Java program that demonstrates string recursion.

  • Create a method that takes a string as input and recursively calls itself to manipulate the string.

  • Use base case to stop the recursion.

  • Example: public static String reverseString(String str) { if (str.isEmpty()) { return str; } else { return reverseString(str.substring(1)) + str.charAt(0); } }

View all Senior Software Engineer Testing interview questions
A Senior Software Engineer Testing was asked
Q. What are the methods in Selenium?
Ans. 

Methods in Selenium are actions that can be performed on web elements to automate testing.

  • findElement() - Locates a single web element on the page

  • findElements() - Locates multiple web elements on the page

  • sendKeys() - Enters text into an input field

  • click() - Clicks on a web element

  • getText() - Retrieves the text of a web element

View all Senior Software Engineer Testing interview questions
A Senior Software Engineer Testing was asked
Q. What is the Bug Life Cycle?
Ans. 

Bug Life Cycle is the process of a bug from identification to resolution in software testing.

  • Bug is identified by tester

  • Bug is reported in bug tracking tool

  • Bug is assigned to developer

  • Developer fixes the bug

  • Bug is re-tested by tester

  • Bug is closed if fixed or reopened if not

View all Senior Software Engineer Testing interview questions
A Senior Software Engineer Testing was asked
Q. Explain the Real Time Framework you have worked on.
Ans. 

Real Time Framework is a testing framework used for automation testing of real-time applications.

  • Real Time Framework is designed specifically for testing real-time applications.

  • It allows for automation testing of applications that require real-time data processing.

  • The framework provides tools and features to simulate real-time scenarios and test the application's response.

  • It helps in identifying performance issues...

View all Senior Software Engineer Testing interview questions
A Senior Software Engineer Testing was asked
Q. Which OOP concepts have been used in the Selenium framework?
Ans. 

Encapsulation, Inheritance, Polymorphism, and Abstraction are the OOP concepts used in Selenium framework.

  • Encapsulation: Used to hide the internal implementation details of the classes. For example, using private variables and methods to restrict access.

  • Inheritance: Allows classes to inherit properties and behavior from other classes. For example, creating a base test class with common methods and properties.

  • Polym...

View all Senior Software Engineer Testing interview questions
A Technical Support Engineer was asked
Q. What are rows and columns?
Ans. 

A row and column are fundamental concepts in tabular data structures, representing horizontal and vertical arrangements of data respectively.

  • A row is a horizontal arrangement of data in a table or spreadsheet.

  • A column is a vertical arrangement of data in a table or spreadsheet.

  • Rows and columns intersect to form cells, which contain individual data values.

  • In a database table, each row represents a single record, wh...

View all Technical Support Engineer interview questions
Are these interview questions helpful?
A Technical Support Engineer was asked
Q. What is Excel And What is OS
Ans. 

Excel is a spreadsheet program used for data analysis and manipulation.

  • Excel is a Microsoft Office application.

  • It allows users to create and organize data in rows and columns.

  • It supports various mathematical and statistical functions.

  • Excel can be used for tasks like budgeting, financial analysis, and data visualization.

  • It offers features like charts, graphs, and pivot tables.

  • Formulas and macros can be used to auto...

View all Technical Support Engineer interview questions
An Ad Operations Manager was asked 2mo ago
Q. Live campaign configaration techniques
Ans. 

Effective live campaign configuration ensures optimal ad performance and audience targeting.

  • Define clear campaign objectives, such as brand awareness or lead generation.

  • Segment your audience based on demographics, interests, and behaviors.

  • Utilize A/B testing to compare different ad creatives and placements.

  • Set up tracking parameters to measure campaign performance accurately.

  • Adjust bids and budgets dynamically bas...

View all Ad Operations Manager interview questions

Lemma Technologies Interview Experiences

5 interviews found

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 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 - HR 

(3 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a Technical Support Engineer with experience in troubleshooting and resolving technical issues.

    • Experience in providing technical support to customers

    • Proficient in diagnosing and resolving hardware and software issues

    • Strong knowledge of operating systems and networking protocols

    • Excellent communication and problem-solving skills

    • Ability to work under pressure and meet deadlines

  • Answered by AI
  • Q2. What is Excel And What is OS
  • Ans. 

    Excel is a spreadsheet program used for data analysis and manipulation.

    • Excel is a Microsoft Office application.

    • It allows users to create and organize data in rows and columns.

    • It supports various mathematical and statistical functions.

    • Excel can be used for tasks like budgeting, financial analysis, and data visualization.

    • It offers features like charts, graphs, and pivot tables.

    • Formulas and macros can be used to automate ...

  • Answered by AI
  • Q3. What is a row and columns
  • Ans. 

    A row and column are fundamental concepts in tabular data structures, representing horizontal and vertical arrangements of data respectively.

    • A row is a horizontal arrangement of data in a table or spreadsheet.

    • A column is a vertical arrangement of data in a table or spreadsheet.

    • Rows and columns intersect to form cells, which contain individual data values.

    • In a database table, each row represents a single record, while e...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Lemma Technologies Technical Support Engineer interview:
  • Communication Skills
  • knowledge fusion
  • English
Interview preparation tips for other job seekers - Be confident to the interview you confidence is your power to crack the interview and get dream job

Skills evaluated in this interview

Senior Software Engineer Testing Interview Questions & Answers

user image Ninad Ravindra Kulkarni

posted on 26 Apr 2024

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain Real Time Framework worked on?
  • Ans. 

    Real Time Framework is a testing framework used for automation testing of real-time applications.

    • Real Time Framework is designed specifically for testing real-time applications.

    • It allows for automation testing of applications that require real-time data processing.

    • The framework provides tools and features to simulate real-time scenarios and test the application's response.

    • It helps in identifying performance issues and ...

  • Answered by AI
  • Q2. Java program of string recursion
  • Ans. 

    A Java program that demonstrates string recursion.

    • Create a method that takes a string as input and recursively calls itself to manipulate the string.

    • Use base case to stop the recursion.

    • Example: public static String reverseString(String str) { if (str.isEmpty()) { return str; } else { return reverseString(str.substring(1)) + str.charAt(0); } }

  • Answered by AI
  • Q3. What is Bug Life Cycle?
  • Ans. 

    Bug Life Cycle is the process of a bug from identification to resolution in software testing.

    • Bug is identified by tester

    • Bug is reported in bug tracking tool

    • Bug is assigned to developer

    • Developer fixes the bug

    • Bug is re-tested by tester

    • Bug is closed if fixed or reopened if not

  • Answered by AI
  • Q4. What are methods in selenium?
  • Ans. 

    Methods in Selenium are actions that can be performed on web elements to automate testing.

    • findElement() - Locates a single web element on the page

    • findElements() - Locates multiple web elements on the page

    • sendKeys() - Enters text into an input field

    • click() - Clicks on a web element

    • getText() - Retrieves the text of a web element

  • Answered by AI
  • Q5. Which oops concepts have been used in selenium framework?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, and Abstraction are the OOP concepts used in Selenium framework.

    • Encapsulation: Used to hide the internal implementation details of the classes. For example, using private variables and methods to restrict access.

    • Inheritance: Allows classes to inherit properties and behavior from other classes. For example, creating a base test class with common methods and properties.

    • Polymorphi...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions asked on multithreading only. use join and fork .
  • Q2. Project discussion
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain IAB oRTB 2.5 protocol?
  • Ans. 

    IAB oRTB 2.5 is a protocol used in programmatic advertising to facilitate real-time bidding between advertisers and publishers.

    • IAB oRTB 2.5 stands for Interactive Advertising Bureau OpenRTB 2.5.

    • It is a standardized protocol that enables communication between demand-side platforms (DSPs) and supply-side platforms (SSPs) in programmatic advertising.

    • The protocol allows advertisers to bid in real-time for ad impressions on...

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

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. How many campaigns have you monitored and set up?
  • Ans. 

    I have monitored and set up over 50 campaigns across various platforms, optimizing for performance and engagement.

    • Managed 20+ digital ad campaigns for a major retail client, focusing on seasonal promotions.

    • Set up and monitored PPC campaigns on Google Ads, achieving a 30% increase in ROI.

    • Implemented A/B testing for email marketing campaigns, improving open rates by 15%.

    • Collaborated with creative teams to develop engagin...

  • Answered by AI
  • Q2. Live campaign configaration techniques
  • Ans. 

    Effective live campaign configuration ensures optimal ad performance and audience targeting.

    • Define clear campaign objectives, such as brand awareness or lead generation.

    • Segment your audience based on demographics, interests, and behaviors.

    • Utilize A/B testing to compare different ad creatives and placements.

    • Set up tracking parameters to measure campaign performance accurately.

    • Adjust bids and budgets dynamically based on...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Lemma Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

I was attended for technical f2f round for Android app developer, they asked to develop sample app with large json parsing in grid view. It's good and nice.

Round 2 - Technical 

(1 Question)

  • Q1. Once you successfully implemented coding, they will take technical f2f round. It will mainly in all topics of android.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more coding questions in all advanced topics and logical questions

I applied via Naukri.com and was interviewed in Sep 2019. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Question 1)Tell me about yourself and qualifications?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and experience in web development.

    • Recent graduate with a degree in Computer Science

    • Experience in web development

    • Strong problem-solving skills

    • Proficient in programming languages such as Java, JavaScript, and HTML/CSS

  • Answered by AI
  • Q2. Question 2)What are your hobbies?
  • Ans. 

    My hobbies include reading, hiking, and playing the guitar.

    • Reading: I enjoy reading fiction and non-fiction books in my free time.

    • Hiking: I love exploring nature trails and challenging myself with new hikes.

    • Playing the guitar: I have been playing the guitar for several years and enjoy learning new songs.

  • Answered by AI
  • Q3. Question 3)What do you know about our company?
  • Ans. 

    Our company is a leading tech startup specializing in AI-driven solutions for businesses.

    • Specializes in AI-driven solutions for businesses

    • Considered a leading tech startup in the industry

    • Known for innovative and cutting-edge technology

    • Has a strong focus on research and development

    • Provides services to a wide range of industries

  • Answered by AI
  • Q4. Question 4) Why do you want to join our company?
  • Ans. 

    I want to join your company because of its innovative projects, strong company culture, and opportunities for growth.

    • Innovative projects that align with my interests and skills

    • Strong company culture that values collaboration and employee development

    • Opportunities for growth and advancement within the company

  • Answered by AI
  • Q5. Question 5) Tell me about your training and projects you have done in college?
  • Ans. 

    I completed various training programs and projects during my college years, gaining hands-on experience in different areas.

    • Completed a training program in data analysis using Python and R

    • Developed a mobile application for a class project using Java and Android Studio

    • Participated in a research project on renewable energy sources

    • Completed an internship at a local software company, working on web development projects

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Start by researching about the company and job profile you applied for. Practice common interview questions. Be confident. Ask questions at the end of the interview. Remember your CV details. Arrive on time and stay relaxed.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2022.

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 - One-on-one 

(2 Questions)

  • Q1. Why would you like to join us
  • Q2. Why would u like to join us
  • Ans. 

    I admire your company's commitment to innovation and employee development, making it an ideal place for my career growth.

    • Your company's reputation for excellence in customer service aligns with my passion for delivering high-quality support.

    • I am impressed by your recent initiatives in sustainability, which resonate with my values and desire to contribute positively to the community.

    • The opportunity for professional deve...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If your looking for your carrier and future then a company to work for

I applied via Campus Placement and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Linked List, Stack, BST

Interview Preparation Tips

Interview preparation tips for other job seekers - be ready with ds algo and have some side projects

I applied via Naukri.com and was interviewed in Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1) Tell About Yourself
  • Ans. 

    I am a motivated and enthusiastic individual with a strong passion for learning and gaining practical experience in the field of [field].

    • I am currently pursuing a degree in [field] at [university].

    • I have completed internships at [company] and [company], where I gained valuable skills in [specific skills].

    • I am proficient in [programming languages/tools] and have experience in [relevant experience].

    • I am a quick learner a...

  • Answered by AI
  • Q2. What are your future plans?
  • Ans. 

    I plan to gain valuable experience and skills through this internship and use it as a stepping stone for my future career.

    • I plan to learn as much as possible during this internship and apply the knowledge in my future endeavors.

    • I aim to develop strong professional relationships and network with industry experts.

    • I intend to explore different areas within the company to gain a well-rounded understanding of the business.

    • I...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1)Speak confidently.
2)Give honest answers.
3)Have a full knowledge about the company and your role in it.

Lemma Technologies Interview FAQs

How many rounds are there in Lemma Technologies interview?
Lemma Technologies interview process usually has 1-2 rounds. The most common rounds in the Lemma Technologies interview process are Technical, Resume Shortlist and HR.
How to prepare for Lemma Technologies 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 Lemma Technologies. The most common topics and skills that interviewers at Lemma Technologies expect are Salesforce, Ad Sales, B2B Sales, Media Sales and Corporate Sales.
What are the top questions asked in Lemma Technologies interview?

Some of the top questions asked at the Lemma Technologies interview -

  1. Which oops concepts have been used in selenium framewo...read more
  2. What is a row and colu...read more
  3. How many campaigns have you monitored and set ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2.8/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.8
 • 150 Interviews
Cogoport Interview Questions
3.1
 • 53 Interviews
HyperVerge Interview Questions
4.2
 • 26 Interviews
Treebo Hotels Interview Questions
3.2
 • 25 Interviews
Simpl Interview Questions
2.8
 • 17 Interviews
KrazyBee Interview Questions
3.7
 • 17 Interviews
Lokal App Interview Questions
3.7
 • 16 Interviews
MINTIFI Interview Questions
3.5
 • 15 Interviews
TripFactory Interview Questions
2.2
 • 15 Interviews
View all

Lemma Technologies Reviews and Ratings

based on 24 reviews

3.3/5

Rating in categories

3.0

Skill development

3.2

Work-life balance

3.4

Salary

2.8

Job security

3.1

Company culture

2.7

Promotions

3.1

Work satisfaction

Explore 24 Reviews and Ratings
Data Analyst
8 salaries
unlock blur

₹3.8 L/yr - ₹9.5 L/yr

Software Engineer
5 salaries
unlock blur

₹10 L/yr - ₹14.5 L/yr

Software Developer
5 salaries
unlock blur

₹5 L/yr - ₹7.6 L/yr

Associate Software Engineer
5 salaries
unlock blur

₹4.8 L/yr - ₹6.8 L/yr

Technical Support Engineer
5 salaries
unlock blur

₹1.8 L/yr - ₹7 L/yr

Explore more salaries
Compare Lemma Technologies with

Cogoport

3.1
Compare

Treebo Hotels

3.2
Compare

KrazyBee

3.7
Compare

Woodenstreet.com

3.2
Compare
write
Share an Interview