AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

LogBase

Compare button icon Compare button icon Compare
5.0

based on 1 Review

i

This rating is based on a small number of reviews, so it may not fully reflect the overall employee experience.
  • About
  • Reviews
    1
  • Salaries
    29
  • Interviews
    2
  • Jobs
    -
  • Benefits
    -
  • Photos
    -

Filter interviews by

LogBase Interview Questions and Answers

Updated 5 Jun 2024

LogBase Interview Experiences

2 interviews found

Full Stack Developer Interview Questions & Answers

user image Achyuth R

posted on 5 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Conding + aptitude round where it is pretty basic questions and we can answer in any language

Round 2 - Technical 

(2 Questions)

  • Q1. What is DOM in react js?
  • Ans. 

    DOM in React JS stands for Document Object Model, representing the structure of a webpage as a tree of objects.

    • DOM stands for Document Object Model

    • In React JS, the virtual DOM is used to improve performance by updating only the necessary parts of the actual DOM

    • Changes to the virtual DOM are compared with the actual DOM and only the differences are updated

  • Answered by AI
    Add your answer
  • Q2. String questions like find first substring where it is a palindrome
  • Ans. 

    Find the first substring in a given string that is a palindrome.

    • A palindrome reads the same forwards and backwards, e.g., 'racecar'.

    • Iterate through all substrings of the string and check if they are palindromes.

    • Use two pointers to check if a substring is a palindrome efficiently.

    • Example: For 'babad', the first palindrome is 'bab' or 'aba'.

    • Return the first found palindrome or an empty string if none exists.

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Full Stack Developer Interview Questions & Answers

user image Anonymous

posted on 30 Aug 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 - Aptitude Test 

Logical - 20
Mathematical - 20
Technical - 20
Coding - 2

Round 3 - One-on-one 

(1 Question)

  • Q1. I) 5 Programming questions ii) Data structures - stack iii) Mostly based on resume
  • Add your answer
Round 4 - Coding Test 

After 1 week, They told us to learn some of the contents like HTML, CSS and javascript in any platform, Based on the learning Platform, They will give you the task that and asked you submit within 4 hrs

Round 5 - HR 

(1 Question)

  • Q1. I) How is interview experience ? ii) Are You intrested in our company ?
  • Ans. 

    The interview experience was positive and I am interested in the company.

    • The interview process was well-structured and professional.

    • The interviewers were knowledgeable and asked relevant questions.

    • I had the opportunity to showcase my skills and experience.

    • The company's values and culture align with my own.

    • I am excited about the potential growth and opportunities within the company.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Complete some of software projects and add in that resume.
In coding round, Web Knowledge and logic are really important
Anonymous

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about LogBase?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Full Stack Developer Interview Questions & Answers

Cognizant user image Anonymous

posted on 5 Jul 2021

I applied via Recruitment Consultant and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About springboot ,and architecture of your current project, design patterns . 1st round would be on Angular7 and basic questions.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was very nice , they will guide you whenever I was stuck on any problems.Believe in yourself ,you are the best!
Anonymous
company Logo

Full Stack Developer Interview Questions & Answers

HCLTech user image Anonymous

posted on 4 Jan 2022

I applied via LinkedIn and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic of nodejs questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Depends on client Like diff between Observable and promise
Diff b/w let and var const
Some IQ questions.
Why nodejs is single threads
Anonymous
company Logo

Full Stack Developer Interview Questions & Answers

Capgemini user image Anonymous

posted on 9 Jun 2021

Interview Questionnaire 

2 Questions

  • Q1. How to create objects
  • Ans. 

    Objects can be created using constructors or object literals.

    • Use the 'new' keyword with a constructor function to create an object

    • Use object literals to create objects with predefined properties

    • Use Object.create() to create an object with a specified prototype

    • Use class syntax to create objects with methods and properties

  • Answered by AI
    Add your answer
  • Q2. Can you create a circle using css
  • Add your answer

Skills evaluated in this interview

Anonymous
company Logo

Full Stack Developer Interview Questions & Answers

Cognizant user image Anonymous

posted on 18 Sep 2021

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Asked about project I was worked, technology stack, etc. Write code to filter a list using java 8, some mongodb related questions.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - My profile was of a backend developer but interviewer wanted a developer with full stack experience.
Anonymous
company Logo

Full Stack Developer Interview Questions & Answers

Amazon user image Anonymous

posted on 11 Feb 2022

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Add your answer
  • Q2. I am JaiMangal I live in sirsa haryana
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I am JaiMangal I live in the
Sirsa haryana
Anonymous
Are these interview questions helpful?
company Logo

Full Stack Developer Interview Questions & Answers

Tech Mahindra user image Anonymous

posted on 23 Nov 2021

I applied via Recruitment Consultant and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Self introduction
  • Add your answer
  • Q2. Questions on c,java,sql
  • Add your answer
  • Q3. Questions on coding algorithms
  • Add your answer
  • Q4. Self introduction
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident on what you speak
show your sincerity
Anonymous
company Logo

Full Stack Developer Interview Questions & Answers

HCLTech user image Anonymous

posted on 23 Dec 2021

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Html, css, java
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Give some time to tell the answer
Anonymous
company Logo

Full Stack Developer Interview Questions & Answers

Capgemini user image Anonymous

posted on 1 Mar 2022

I applied via Job Fair and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

1 pm

Round 2 - Technical 

(1 Question)

  • Q1. 1. Diffrent between c&c++ 2. Oops concept 3. Constructor &deconstructor 4. Event handling
  • Add your answer
Round 3 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and market standards for a Full Stack Developer.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries.

    • Consider my experience level: With 5 years of experience, I would expect a salary in the range of $80,000 to $100,000.

    • Factor in location: Salaries can vary significantly based on the cost of living in diff...

  • Answered by AI
    Add your answer
  • Q2. Why should we hire you?
  • Add your answer
  • Q3. What is your family background?
  • Add your answer
  • Q4. What are your strengths and weaknesses?
  • Add your answer
  • Q5. Tell me about yourself.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Staff of by thinking them for their time and the opportunity.
Anonymous

LogBase Interview FAQs

How many rounds are there in LogBase interview?
LogBase interview process usually has 3-4 rounds. The most common rounds in the LogBase interview process are Coding Test, Resume Shortlist and Aptitude Test.
What are the top questions asked in LogBase interview?

Some of the top questions asked at the LogBase interview -

  1. String questions like find first substring where it is a palindr...read more
  2. what is DOM in react ...read more
  3. i) 5 Programming questions ii) Data structures - stack iii) Mostly based on res...read more

Tell us how to improve this page.

Interview Questions for Popular Designations

  • Senior Executive Interview Questions
  • Executive Interview Questions
  • Analyst Interview Questions
  • Team Lead Interview Questions
  • Senior Engineer Interview Questions
  • Consultant Interview Questions
  • Java Developer Interview Questions
  • Accountant Interview Questions
  • Show more
  • Data Analyst Interview Questions
  • System Engineer Interview Questions

Overall Interview Experience Rating

5/5

based on 1 interview experience

Interview Questions from Similar Companies

TCS
TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

LogBase Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
LogBase Salaries in India
Product Manager
4 salaries
unlock blur

₹5.2 L/yr - ₹9 L/yr

Customer Support Executive
4 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Customer Success Manager
4 salaries
unlock blur

₹3.8 L/yr - ₹4.6 L/yr

Explore more salaries
Compare LogBase with
TCS

TCS

3.6
Compare
Accenture

Accenture

3.7
Compare
Wipro

Wipro

3.7
Compare
Cognizant

Cognizant

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • LogBase Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter