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
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about Lemma Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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.
Are these interview questions helpful?

I appeared for an interview in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I applied for an internship in your company through internshala.com . I got an email telling me that I was shortlisted it and now I have to fill this in order to move to the next round

I appeared for an interview in Jul 2017.

Interview Questionnaire 

1 Question

  • Q1. The first question was to introduce yourself and if have a past working experience then what was your profile in past internship?

Interview Preparation Tips

Round: Resume Shortlist
Experience: Hi, i applied from naukri.com for an internship in Ambition box and i got a mail that my resume got shortlisted and i have to revert them with my availability for an internship
Tips: always check your mail on time so that u don't miss it

Round: HR Interview
Experience: In the HR round u i was asked about my experience and learning about my previous internship and what do i know about digital marketing because that was my interest area.
Tips: Be confident and precise in your answers

Round: Test
Experience: i was asked to write about any topic in 15 minutes just to evaluate my writing skills and my idea of writing.
Tips: Be creative,quick and natural
Duration: 10 minutes
Total Questions: -3

Round: Group Activity
Experience: we have to present about in topic in front it can b any political or technical topic.so i present a technical topic
Tips: be confident,expressive and clear

Skills: Communication And Confidence, General Awareness, Inter Person Communication Skills, Interaction Skills
College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)

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