Upload Button Icon Add office photos

Filter interviews by

Zenoti Full Stack Software Developer Interview Questions and Answers

Updated 20 Dec 2024

Zenoti Full Stack Software Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions and 25 mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. SQL Related questions
  • Q2. Asp.net related questions basic

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How pagination work in jpa
  • Ans. 

    Pagination in JPA allows for retrieving a subset of results from a query by specifying a limit and offset.

    • Use the setFirstResult() method to specify the starting index of the results to retrieve

    • Use the setMaxResults() method to specify the maximum number of results to retrieve

    • Combine setFirstResult() and setMaxResults() to implement pagination in JPA queries

  • Answered by AI
  • Q2. How to create restful api
  • Ans. 

    To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

    • Define endpoints for different resources (e.g. /users, /products)

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Handle requests and responses in JSON format

    • Follow REST principles like statelessness, uniform interface, and client-server architecture

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. About technical questions
  • Q3. About current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Reasoning, maths, Devops, AI, ML

Round 2 - Technical 

(2 Questions)

  • Q1. What are semantic tags in HTML?
  • Ans. 

    Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

    • Semantic tags help search engines and screen readers understand the structure of a webpage.

    • Examples of semantic tags include

      ,
      ,
    • Using semantic tags improves SEO and accessibility of a website.

Answered by AI
  • Q2. Difference between Java and Javascript?
  • Ans. 

    Java is a statically typed programming language used for backend development, while JavaScript is a dynamically typed scripting language used for frontend development.

    • Java is a statically typed language, meaning variable types are explicitly declared and checked at compile time.

    • JavaScript is a dynamically typed language, meaning variable types are determined at runtime.

    • Java is typically used for backend development, se...

  • Answered by AI

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Technology related
    • Q2. Programming related
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (2 Questions)

    • Q1. How pagination work in jpa
    • Ans. 

      Pagination in JPA allows for retrieving a subset of results from a query by specifying a limit and offset.

      • Use the setFirstResult() method to specify the starting index of the results to retrieve

      • Use the setMaxResults() method to specify the maximum number of results to retrieve

      • Combine setFirstResult() and setMaxResults() to implement pagination in JPA queries

    • Answered by AI
    • Q2. How to create restful api
    • Ans. 

      To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

      • Define endpoints for different resources (e.g. /users, /products)

      • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

      • Handle requests and responses in JSON format

      • Follow REST principles like statelessness, uniform interface, and client-server architecture

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

    Round 1 - Technical 

    (3 Questions)

    • Q1. Tell me about your self
    • Q2. About technical questions
    • Q3. About current project

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I applied via Indeed and was interviewed in Aug 2024. There was 1 interview round.

    Round 1 - Technical 

    (4 Questions)

    • Q1. Triggers in sql
    • Ans. 

      Triggers in SQL are special stored procedures that are automatically executed when certain events occur in a database.

      • Triggers can be used to enforce business rules, maintain referential integrity, and audit changes to data.

      • There are two main types of triggers: DML triggers (executed in response to data manipulation language events) and DDL triggers (executed in response to data definition language events).

      • Examples of ...

    • Answered by AI
    • Q2. Char vs varchar
    • Ans. 

      char is fixed length, varchar is variable length

      • char stores fixed length strings, while varchar stores variable length strings

      • char pads with spaces to reach fixed length, varchar does not pad

      • char is faster for fixed length data, varchar is more flexible for variable length data

    • Answered by AI
    • Q3. Localisation in angular
    • Ans. 

      Localization in Angular involves translating the application into different languages and adapting to different regions.

      • Use Angular's built-in i18n tools to mark translatable text in templates

      • Create separate language files for each supported language

      • Use ngx-translate or similar libraries for dynamic language switching

    • Answered by AI
    • Q4. Design patterns in .dotnet core
    • Ans. 

      Design patterns in .NET Core are reusable solutions to common problems in software design.

      • Some common design patterns in .NET Core include Singleton, Factory, Observer, and Strategy.

      • Design patterns help in creating maintainable, scalable, and efficient code.

      • They promote code reusability and separation of concerns.

      • Examples: Singleton pattern ensures a class has only one instance, Factory pattern creates objects without ...

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Technology related
    • Q2. Programming related
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (2 Questions)

    • Q1. How to create restfull api
    • Ans. 

      To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

      • Define endpoints for different resources (e.g. /users, /products)

      • Use HTTP methods (GET, POST, PUT, DELETE) for CRUD operations

      • Handle requests and responses in JSON format

      • Follow REST principles like statelessness, uniform interface, and client-server architecture

    • Answered by AI
    • Q2. How to do pagination in jpa
    • Ans. 

      Pagination in JPA allows fetching a subset of results from a query.

      • Use the setFirstResult() method to set the starting index of the results to retrieve

      • Use the setMaxResults() method to set the maximum number of results to retrieve

      • Combine setFirstResult() and setMaxResults() to implement pagination

    • Answered by AI

    Skills evaluated in this interview

    Zenoti Interview FAQs

    How many rounds are there in Zenoti Full Stack Software Developer interview?
    Zenoti interview process usually has 2 rounds. The most common rounds in the Zenoti interview process are Coding Test and Technical.
    What are the top questions asked in Zenoti Full Stack Software Developer interview?

    Some of the top questions asked at the Zenoti Full Stack Software Developer interview -

    1. Asp.net related questions ba...read more
    2. SQL Related questi...read more

    Tell us how to improve this page.

    People are getting interviews through

    based on 1 Zenoti 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

    NTT Data Interview Questions
    3.9
     • 593 Interviews
    Apisero Interview Questions
    4.3
     • 72 Interviews
    TestingXperts Interview Questions
    4.1
     • 40 Interviews
    Simform Interview Questions
    3.5
     • 34 Interviews
    Stefanini Interview Questions
    2.9
     • 34 Interviews
    View all
    Software Engineer
    96 salaries
    unlock blur

    ₹8 L/yr - ₹25 L/yr

    Senior Product Specialist
    72 salaries
    unlock blur

    ₹12 L/yr - ₹28 L/yr

    Senior Software Engineer
    71 salaries
    unlock blur

    ₹11.6 L/yr - ₹31.5 L/yr

    Product Support Consultant
    38 salaries
    unlock blur

    ₹7.6 L/yr - ₹13.9 L/yr

    Senior Implementation Consultant
    34 salaries
    unlock blur

    ₹10.7 L/yr - ₹21.6 L/yr

    Explore more salaries
    Compare Zenoti with

    Tekwissen

    4.9
    Compare

    Collabera Technologies

    3.5
    Compare

    Damco Solutions

    4.1
    Compare

    In Time Tec Visionsoft

    4.1
    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