Upload Button Icon Add office photos

Filter interviews by

GitLab Fullstack Software Engineer Interview Questions and Answers

Updated 18 Dec 2024

GitLab Fullstack Software Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reviewing and improving merge request and system design
  • Ans. 

    Reviewing and improving merge request and system design

    • Ensure clear and detailed documentation for each merge request

    • Review code for best practices, performance optimizations, and potential bugs

    • Collaborate with team members to discuss and improve system design

    • Use tools like code review platforms and design documentation tools

    • Implement automated testing to catch issues early

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. There were multiple one on ones to match teams
Round 3 - One-on-one 

(1 Question)

  • Q1. One nore one on one with director level

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Demonstrate Function Overriding.
  • Ans. 

    Function Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • In Function Overriding, a subclass can provide a specific implementation of a method that is already defined in its parent class.

    • The method in the subclass must have the same name, return type, and parameters as the method in the parent class to ove...

  • Answered by AI
  • Q2. Linq query with order by
  • Ans. 

    Using LINQ query to order data in C#

    • Use the OrderBy method to sort data in ascending order

    • Use the OrderByDescending method to sort data in descending order

    • You can also use ThenBy and ThenByDescending for secondary sorting

  • Answered by AI
  • Q3. What is Out Parameter with example
  • Ans. 

    Out parameter is used to pass data out of a method or function.

    • Out parameters are used when a method needs to return multiple values.

    • They are declared using the 'out' keyword in C#.

    • Example: void CalculateArea(int length, int width, out int area) { area = length * width; }

  • Answered by AI
  • Q4. Authentication and autherization, JWT Tocken
  • Q5. Reflection in C#
  • Ans. 

    Reflection in C# allows for inspecting and manipulating metadata of types at runtime.

    • Reflection is used to dynamically create instances of types, access properties, and invoke methods.

    • Examples include using reflection to load assemblies at runtime, inspect attributes of types, and generate code dynamically.

    • Reflection can be slow and should be used judiciously due to performance overhead.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Dot Net Fullstack Developer interview:
  • OOPS
  • SQL
  • Javascript
Interview preparation tips for other job seekers - Basics of OOPS SQL JS will do.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Java overloading overriding differences
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters, while overriding is implementing a method in a subclass with the same signature as in the superclass.

    • Overloading allows different methods to have the same name but different parameters.

    • Overriding involves implementing a method in a subclass with the same signature as in the superclass.

    • Overloading is determined at compile time based on t...

  • Answered by AI
  • Q2. Angular decorators
  • Q3. Angular services

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 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 - Aptitude Test 

Train and time and work

Round 3 - Technical 

(3 Questions)

  • Q1. Python fullstack
  • Q2. Introduction,projects,skills,strenths,habies,goles
  • Q3. Python fullstack with django

Interview Preparation Tips

Topics to prepare for Infosys Python Fullstack Developer interview:
  • about myself
  • my skills
  • strenths
  • projectwork
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Coding Test 

Dependency Injection, Palindrome, No of letters in a string, Deployment, SQL joins

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

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Use of interface in real world
  • Ans. 

    Interfaces in real world help in achieving abstraction and decoupling, allowing for flexibility and scalability in software development.

    • Interfaces allow for multiple implementations of a common set of methods, promoting code reusability.

    • Interfaces help in achieving loose coupling between different components of a system, making it easier to maintain and extend.

    • Interfaces enable polymorphism, where objects can be treate...

  • Answered by AI
  • Q2. Asked about certifications and related questions
Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join this organisation
  • Q2. What is your Expected CTC
  • Ans. 

    My expected CTC is based on my experience, skills, and the market rate for Dot Net Fullstack Developers.

    • Consider my years of experience in Dot Net development

    • Factor in my expertise in fullstack development technologies like Angular and React

    • Research the current market rate for Dot Net Fullstack Developers in the location of the job

    • Provide a range rather than a specific number to allow for negotiation

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

(9 Questions)

  • Q1. What is sychronization ?
  • Ans. 

    Synchronization is the process of coordinating multiple threads to ensure safe and consistent access to shared resources.

    • Synchronization is used to prevent race conditions and ensure thread safety.

    • It can be achieved using synchronized blocks or methods.

    • Synchronization can cause performance issues if not used properly.

    • Example: Synchronizing access to a shared counter variable in a multi-threaded application.

  • Answered by AI
  • Q2. What is encapsulation ?
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing access to only necessary information.

    • Encapsulation is achieved through access modifiers such as public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • Encapsulation provides better control over the data and prevents unauthorized access.

    • Example: A class with private variables and public methods to access the...

  • Answered by AI
  • Q3. What is interface in java ?
  • Ans. 

    An interface in Java is a collection of abstract methods and constants that can be implemented by a class.

    • Interfaces are used to achieve abstraction and provide a way to implement multiple inheritance in Java.

    • All methods in an interface are abstract by default and cannot have a body.

    • A class can implement multiple interfaces but can only extend one class.

    • Interfaces can also have default and static methods with a body.

    • Ex...

  • Answered by AI
  • Q4. What is collection framework?
  • Ans. 

    Collection framework is a set of classes and interfaces that provide a way to store and manipulate groups of objects.

    • It provides interfaces like List, Set, Queue, etc. for storing collections of objects.

    • It also provides classes like ArrayList, HashSet, PriorityQueue, etc. that implement these interfaces.

    • It allows easy manipulation of collections using methods like add, remove, contains, etc.

    • It provides algorithms like ...

  • Answered by AI
  • Q5. What is diffrence between Arraylist and vector ?
  • Ans. 

    ArrayList is not synchronized while Vector is synchronized.

    • ArrayList is faster than Vector as it is not synchronized.

    • Vector is thread-safe while ArrayList is not.

    • Vector is a legacy class while ArrayList is not.

    • Vector can grow by a specified amount while ArrayList grows by 50% of its size.

    • Example: ArrayList list = new ArrayList<>(); Vector vector = new Vector<>();

    • Example: list.add(1); vector.add(1);

    • Example: list.get(0);

  • Answered by AI
  • Q6. What are the legacy classes in java?
  • Ans. 

    Legacy classes in Java are the classes that have been replaced by newer versions but are still supported for backward compatibility.

    • Legacy classes are part of the Java API and are still supported for backward compatibility.

    • They have been replaced by newer versions but are still used in older applications.

    • Examples of legacy classes include Vector, Hashtable, and Enumeration.

    • Legacy classes are not recommended for use in ...

  • Answered by AI
  • Q7. What is joins in SQL ?
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables in a single query.

    • There are different types of joins such as inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables, left join returns all rows from the left table and matching rows from the right table, right join returns...

  • Answered by AI
  • Q8. What is autoboxing and auto-unboxing ?
  • Ans. 

    Autoboxing is the automatic conversion of primitive data types to their corresponding object wrapper classes.

    • Autoboxing allows primitive data types to be used as objects.

    • Auto-unboxing is the reverse process of autoboxing.

    • Autoboxing and auto-unboxing are performed automatically by the compiler.

    • Example: int i = 10; Integer j = i; // autoboxing

    • Example: Integer j = 10; int i = j; // auto-unboxing

  • Answered by AI
  • Q9. Difference between where clause and having clause in SQL ?
  • Ans. 

    Where clause filters rows before grouping, having clause filters groups after grouping.

    • Where clause is used to filter rows based on a condition before grouping.

    • Having clause is used to filter groups based on a condition after grouping.

    • Where clause is used with SELECT, UPDATE, DELETE statements.

    • Having clause is used with SELECT statement and GROUP BY clause.

    • Where clause cannot contain aggregate functions.

    • Having clause c...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Solid principles
Round 2 - One-on-one 

(1 Question)

  • Q1. How to handle stressful scenarios
  • Ans. 

    Handling stressful scenarios involves staying calm, prioritizing tasks, seeking support, and practicing self-care.

    • Stay calm and take deep breaths to manage emotions

    • Prioritize tasks based on urgency and importance

    • Seek support from colleagues, mentors, or counselors

    • Practice self-care activities like exercise, meditation, or hobbies

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Company Website and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Ans. •I'm Akashdeep Prasad. • I'm in my early twenties. • I'm born and brought up in Mumbai, Andheri but currently I'm reside in Thane. - Now, coming to my highest qualification :- • I have completed my graduation in Bachelor of Science in Information Technology from University of Mumbai. - I like to share my certification with you :- • I'm certified Java Full Stack Developer. - Sir, I like to share my hobbies with you :...
  • Answered Anonymously
  • Q2. Why should I hire you ?
  • Q3. What is your salary expectation?
Round 2 - Technical 

(1 Question)

  • Q1. I forgot question
Round 3 - Technical 

(1 Question)

  • Q1. I can't remember what questions asked

Interview Preparation Tips

Topics to prepare for TCS Fullstack Java Developer interview:
  • Java
Interview preparation tips for other job seekers - The job seekers is good and friendly.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Mar 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. How to add dependency
  • Ans. 

    To add a dependency, you need to specify it in the project's build file.

    • Open the build file (pom.xml for Maven or build.gradle for Gradle)

    • Add the dependency in the appropriate section

    • Save the file and run the build command to download and install the dependency

    • Example: com.example example-library 1.0.0

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. It asked mr about scenario based question

Skills evaluated in this interview

GitLab Interview FAQs

How many rounds are there in GitLab Fullstack Software Engineer interview?
GitLab interview process usually has 3 rounds. The most common rounds in the GitLab interview process are One-on-one Round and Technical.
What are the top questions asked in GitLab Fullstack Software Engineer interview?

Some of the top questions asked at the GitLab Fullstack Software Engineer interview -

  1. reviewing and improving merge request and system des...read more
  2. there were multiple one on ones to match te...read more
  3. one nore one on one with director le...read more

Tell us how to improve this page.

GitLab Fullstack Software Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
View all
Software Engineer
3 salaries
unlock blur

₹55 L/yr - ₹60 L/yr

Senior Financial Analyst
3 salaries
unlock blur

₹26 L/yr - ₹64 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹5 L/yr - ₹45 L/yr

Front end Engineer
3 salaries
unlock blur

₹56 L/yr - ₹73 L/yr

Senior Pricing Analyst
3 salaries
unlock blur

₹35 L/yr - ₹54 L/yr

Explore more salaries
Compare GitLab with

GitHub

4.5
Compare

Atlassian

3.6
Compare

JFrog

4.1
Compare

CircleCI

3.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview