Upload Button Icon Add office photos
Engaged Employer

i

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

Full Creative Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 119 Reviews

Filter interviews by

Full Creative Full Stack Developer Interview Questions and Answers

Updated 20 Nov 2022

Full Creative Full Stack Developer Interview Experiences

1 interview found

I applied via campus placement at Hyderabad Institute of Technology & Management, Hyderabad and was interviewed in May 2022. There were 4 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 - Assignment 

There was a assignment based on technical questions

Round 3 - Technical 

(3 Questions)

  • Q1. The 2nd round is technical ... The interviewer asked to ... 1) introduce ur self 2) basic java questions 3)Oops concepts in brief 4) some coding examples
  • Q2. Tell me about oops concepts
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions together

    • Inheritance - acquiring properties and behavior of parent class

    • Polymorphism - ability to take multiple forms

    • Abstraction - hiding implementation details

    • Example: A car is an object that encapsulates data like speed and functions like accelerate and brake

    • Example: A child class inherits properties ...

  • Answered by AI
  • Q3. Remove duplicates without using inbuilt methods
  • Ans. 

    Removing duplicates without using inbuilt methods in JavaScript

    • Create an empty array to store unique values

    • Loop through the original array

    • Check if the current element exists in the unique array

    • If not, push it to the unique array

    • Return the unique array

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Explained about the company , role and the package

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect with basics and oops
Practice the various examples

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at G L Bajaj Institute of Technology & Management, Greater Noida and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

They asked some general Quantitative and logical questions and code snippets.

Round 2 - Technical 

(2 Questions)

  • Q1. String Reverse and Two Sum
  • Q2. Related to my projects and Tech Stacks
Round 3 - Technical 

(2 Questions)

  • Q1. This is the Second technical round. The interviewer asked about everything from my project.
  • Q2. Asked some sql queries like joins and set operation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and Understand the business idea of your Project and Tech Stacks
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning, grammar, and coding: two basic level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Question on core Java
  • Q2. Question on SQL and PLSQL
  • Q3. Resume based question and on project
Round 3 - HR 

(2 Questions)

  • Q1. Resume and project based question
  • Q2. What do you like about your current company, and why do you want to join our organization?
  • Ans. 

    I appreciate the collaborative team environment and innovative projects at my current company, and I am excited about the opportunities for growth and learning at your organization.

    • Collaborative team environment fosters creativity and productivity

    • Innovative projects challenge me to learn and grow

    • Excited about the opportunities for growth and learning at your organization

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. I don't know why they rejected me
  • Q2. What ever they asked me for coding part the output is correct and logic is also correct
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. Tell me about
  • Q2. Your self they are asking
  • Q3. What is your weakness
  • Q4. Any questions ask for me
  • Q5. All the best future
Round 2 - Coding Test 

Coding for international

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

60mintues DSA level coding exam

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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. Explain basics of c#
  • Ans. 

    C# is a programming language developed by Microsoft for building a wide range of applications on the .NET framework.

    • C# is an object-oriented language with features like classes, inheritance, and polymorphism.

    • It is strongly typed, meaning variables must be declared with a specific data type.

    • C# supports modern programming concepts like async/await for asynchronous programming.

    • It is commonly used for developing desktop, w...

  • Answered by AI
  • Q2. C# basics oops sql server

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basics

Skills evaluated in this interview

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Path Queries

    You are given a weighted, undirected graph with ‘V’ vertices numbered from 1 to ‘V’ and ‘E’ bidirectional edges.

    You have to answer ‘Q’ queries. Every query has two integers, ‘u’, ‘v’, repre...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered by CodingNinjas
  • Q2.  Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge so...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered by CodingNinjas
  • Q3. Rat In a Maze: All Paths

    You are given a 'N' * 'N' maze with a rat placed at 'MAZE[0][0]'. Find and print all paths that rat can follow to reach its destination i.e. 'MAZE['...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Full Creative Interview FAQs

How many rounds are there in Full Creative Full Stack Developer interview?
Full Creative interview process usually has 4 rounds. The most common rounds in the Full Creative interview process are Resume Shortlist, Assignment and Technical.
How to prepare for Full Creative Full Stack Developer 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 Full Creative. The most common topics and skills that interviewers at Full Creative expect are GIT, Java, Javascript, Core Java and HTML.
What are the top questions asked in Full Creative Full Stack Developer interview?

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

  1. Remove duplicates without using inbuilt meth...read more
  2. Tell me about oops conce...read more
  3. The 2nd round is technical ... The interviewer asked to ... 1) introduce ur sel...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Full Creative interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Full Creative Full Stack Developer Salary
based on 14 salaries
₹4 L/yr - ₹13.3 L/yr
9% less than the average Full Stack Developer Salary in India
View more details

Full Creative Full Stack Developer Reviews and Ratings

based on 2 reviews

3.3/5

Rating in categories

5.0

Skill development

4.2

Work-Life balance

3.3

Salary & Benefits

5.0

Job Security

5.0

Company culture

4.2

Promotions/Appraisal

4.0

Work Satisfaction

Explore 2 Reviews and Ratings
Software Engineer
57 salaries
unlock blur

₹5 L/yr - ₹20.5 L/yr

Product Expert
40 salaries
unlock blur

₹2.5 L/yr - ₹6.5 L/yr

Junior Software Engineer
38 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Client Account Manager
34 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Software Developer
22 salaries
unlock blur

₹4 L/yr - ₹14.2 L/yr

Explore more salaries
Compare Full Creative with

Wipro

3.7
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

HCLTech

3.5
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