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

Filter interviews by

Full Creative Interview Questions, Process, and Tips

Updated 27 Nov 2024

Top Full Creative Interview Questions and Answers

View all 30 questions

Full Creative Interview Experiences

Popular Designations

40 interviews found

Chat Process Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2023

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 - Group Discussion 

Work from home or work from office preferences

Round 3 - Aptitude Test 

Verbal,communication, voice passage and passage reading

Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself and what is your long term goal

Chat Process Interview Questions asked at other Companies

Q1. What is Empathy and sympathy, write a mali your a customer receive wrong product
View answer (10)

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:
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 - 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

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
Add answer

Junior client account manager Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Group Discussion 

Work from home or work from office preference

Round 3 - Aptitude Test 

Verbal, communication, passage reading and voice passage

Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself and what is your long term goal
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Java collections and streams
  • Q2. Unit testing in java
  • Ans. 

    Unit testing in Java is a software testing method where individual units or components of a software are tested in isolation.

    • Unit testing helps in identifying bugs early in the development process.

    • JUnit is a popular unit testing framework for Java.

    • Mockito is used for mocking dependencies in unit tests.

    • Unit tests should be fast, isolated, and repeatable.

    • Example: @Test annotation in JUnit is used to mark a method as a un

  • Answered by AI
  • Q3. Schema design for stack overflow
  • Ans. 

    Schema design for a stack overflow website

    • Use tables for users, questions, answers, comments, votes, tags

    • Establish relationships between tables (e.g. user_id in questions table)

    • Include fields like title, body, created_at, updated_at, etc.

    • Implement features like upvoting, downvoting, tagging, commenting

    • Consider indexing for faster search and retrieval

  • Answered by AI
  • Q4. Spring boot concepts
  • Q5. REST API concepts
Round 2 - HR 

(3 Questions)

  • Q1. Past Experience
  • Q2. Why switching jobs
  • Q3. What do you know about full
  • Ans. 

    Full stack development refers to the practice of developing both the front-end and back-end of a website or application.

    • Full stack developers are proficient in both front-end technologies like HTML, CSS, and JavaScript, as well as back-end technologies like Node.js, Python, or Java.

    • They are able to work on all aspects of a project, from designing user interfaces to managing databases and servers.

    • Examples of full stack ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Full Creative Software Engineer interview:
  • Java
  • Spring Boot
  • Database
  • System Design
  • Javascript
  • Core Java
  • cassandra
  • google cloud platform

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (185)

Full Creative interview questions for popular designations

 Client Account Manager

 (3)

 Product Expert

 (3)

 Chat Support Executive

 (2)

 Fullstack Developer Intern

 (2)

 Intern

 (2)

 Junior Software Engineer

 (2)

 Operations Analyst

 (2)

 Quality Analyst

 (2)

I applied via Company Website and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. 1) tell me about yourself 2) why your looking for intern opportunity 3) after general questions you will have to answer 10 MCQ through screen-sharing
Round 3 - Technical 

(1 Question)

  • Q1. 1) comfortable language 2) what is call by reference and call by value 3) is java pure object oriented 4) is pointers used in java 5) what is constructor 6) write a java program in online compiler
  • Ans. 

    Interview questions for full stack intern position

    • 1) Comfortable language - Java

    • 2) Call by reference - passing memory address, call by value - passing value

    • 3) Java is not pure object oriented as it supports primitive data types

    • 4) Pointers are not used in Java

    • 5) Constructor is a special method used to initialize objects

    • 6) Java program example: public class Main { public static void main(String[] args) { System.out.print

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - positivity and persistence are the key. Stay optimistic throughout the process

Skills evaluated in this interview

Fullstack Intern Interview Questions asked at other Companies

Q1. 1) comfortable language 2) what is call by reference and call by value 3) is java pure object oriented 4) is pointers used in java 5) what is constructor 6) write a java program in online compiler
View answer (1)

Get interview-ready with Top Full Creative Interview Questions

Intern Qa Automation Testing Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2022

I applied via Indeed

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basics of manual testing
  • Q2. Application Real time scenario

Interview Preparation Tips

Interview preparation tips for other job seekers - Best place for freshers, you can expect different work cluture, typing skills is mandatory also learning skills

Jobs at Full Creative

View all

Intern Interview Questions & Answers

user image Anonymous

posted on 10 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I was interviewed before Mar 2023.

Round 1 - Aptitude Test 

Easy aptitude questions on maths and english

Round 2 - One-on-one 

(3 Questions)

  • Q1. Program to sort numbers
  • Ans. 

    A program to sort numbers in an array

    • Use a sorting algorithm like bubble sort, selection sort, or quicksort

    • Iterate through the array and compare each element to sort them

    • Ensure the program handles edge cases like empty arrays or arrays with only one element

  • Answered by AI
  • Q2. What are the data types available in java
  • Ans. 

    Java supports various data types including primitive and reference types.

    • Primitive data types: int, double, char, boolean, etc.

    • Reference data types: String, Arrays, Classes, Interfaces, etc.

    • Examples: int num = 10; String name = "John"; char grade = 'A';

  • Answered by AI
  • Q3. Program on inheritance
  • Ans. 

    Inheritance in programming allows a class to inherit properties and behaviors from another class.

    • Inheritance promotes code reusability by allowing a new class to use the properties and methods of an existing class.

    • The class that is being inherited from is called the superclass or parent class, while the class that inherits is called the subclass or child class.

    • Subclasses can add their own unique properties and methods,...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Some questions about our projects and testing english skills

Skills evaluated in this interview

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

I was interviewed in Sep 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. They will check your communication skills.
  • Q2. Hr will check your communication skills.
Round 3 - Aptitude Test 

Make sure you prepare for quantitative aptitude and general aptitude( basic)

Round 4 - Assignment 

English proficiency test
If you got advance level you are good to go(C1:C2)

Round 5 - HR 

(1 Question)

  • Q1. Again intro. And some gk questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, and communicate your thoughts. Communication is the key to ace the interview.

Operations Intern Interview Questions asked at other Companies

Q1. Tell me about a decision for which data and analysis weren't sufficient to provide the right course and you had to rely on your judgement and instincts
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 6 Jun 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be honest with your years of experience. All information you share will be verified at the time of joining.
View all tips
Round 2 - Assignment 

Assignment for Quick Apps on your own

Round 3 - One-on-one 

(1 Question)

  • Q1. Review the task which you are given
Round 4 - HR 

(1 Question)

  • Q1. Explain about yourself and your background

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep yourself prepared and you will get a better interview experience

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

I applied via Campus Placement and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. Some basic tech questions based on the domain u choosed
Round 3 - Technical 

(1 Question)

  • Q1. Basics of html ,css, javascript
Round 4 - HR 

(1 Question)

  • Q1. I willl attend now thank you

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident . Don't be scared of you are a fresher they will be asking basics only all the best

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given Difference Problem Statement You are provided with an integer array ARR of size N along with two integers A and B. Your task is to determine if there exist two distinct indices in the array such that the absolute di... read more
View answer (1)

Full Creative Interview FAQs

How many rounds are there in Full Creative interview?
Full Creative interview process usually has 3-4 rounds. The most common rounds in the Full Creative interview process are HR, Resume Shortlist and Technical.
How to prepare for Full Creative 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 Communication Skills, Javascript, GIT, Java and PDF.
What are the top questions asked in Full Creative interview?

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

  1. 1) comfortable language 2) what is call by reference and call by value 3) is ja...read more
  2. What is a linkedlist and its pro...read more
  3. What is Hoisting? What is closu...read more
How long is the Full Creative interview process?

The duration of Full Creative interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Full Creative Interview Process

based on 31 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
BCD Travel Interview Questions
4.3
 • 111 Interviews
View all

Full Creative Reviews and Ratings

based on 126 reviews

3.3/5

Rating in categories

3.7

Skill development

3.2

Work-life balance

3.1

Salary

2.9

Job security

3.2

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 126 Reviews and Ratings
FULL Creative - Chat Support/ Night Shift

Chennai

1-4 Yrs

Not Disclosed

Explore more jobs
Software Engineer
60 salaries
unlock blur

₹5.6 L/yr - ₹20.5 L/yr

Junior Software Engineer
37 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Product Expert
35 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Client Account Manager
34 salaries
unlock blur

₹4 L/yr - ₹6.8 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.6
Compare

HCLTech

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