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 and Answers for Freshers

Updated 22 Apr 2025
Popular Designations

21 Interview questions

An Intern was asked
Q. Write a program demonstrating 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 met...

View all Intern interview questions
An Intern was asked
Q. Write a 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

View all Intern interview questions
An Intern was asked
Q. 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';

View all Intern interview questions
A Software Developer Intern was asked
Q. What is the software development life cycle?
Ans. 

Software development life cycle is a process used by software developers to design, develop, test, and deploy software applications.

  • It consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

  • Each phase has its own set of activities and deliverables.

  • Examples of software development life cycle models include Waterfall, Agile, and DevOps.

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. What is the difference between frontend and backend?
Ans. 

Frontend is the client-side of an application that users interact with, while backend is the server-side that manages data and logic.

  • Frontend is responsible for the user interface and user experience.

  • Backend is responsible for server-side logic, database operations, and authentication.

  • Frontend technologies include HTML, CSS, and JavaScript, while backend technologies include Node.js, Python, and Java.

  • Examples of f...

View all Software Developer Intern interview questions
A Fullstack Developer Intern was asked
Q. What is useState in React?
Ans. 

useState is a hook in React that allows functional components to have state variables.

  • useState is a built-in hook in React.

  • It allows functional components to have state variables.

  • It takes an initial state value and returns an array with the current state value and a function to update it.

  • The state can be updated using the function returned by useState.

  • Example: const [count, setCount] = useState(0);

View all Fullstack Developer Intern interview questions
A Test Engineer was asked
Q. What is assertion in Selenium?
Ans. 

Assertion in Selenium is a command that verifies if the expected result matches the actual result of a test step.

  • Assertions are used to validate the behavior of a web application under test.

  • They help in identifying defects early in the development cycle.

  • Selenium provides various assertion methods like assertEquals, assertTrue, assertFalse, etc.

  • If the assertion fails, the test case is marked as failed and the execu...

View all Test Engineer interview questions
Are these interview questions helpful?
A Test Engineer was asked
Q. How can you select a box using Selenium?
Ans. 

To select a box using Selenium, we can use the findElement() method with appropriate locator strategies.

  • Identify the element using a unique locator such as ID, name, class name, etc.

  • Use the findElement() method to locate the element on the web page.

  • Perform actions on the element using various methods such as click(), sendKeys(), etc.

  • Example: WebElement checkbox = driver.findElement(By.id("checkbox_id")); checkbox....

View all Test Engineer interview questions
A Test Engineer was asked
Q. Write test cases for login functionality, excluding the four standard cases of correct and incorrect username and password combinations.
Ans. 

Test cases for login functionality excluding correct and incorrect username and password.

  • Test for login with blank username and password fields

  • Test for login with valid username and blank password field

  • Test for login with blank username and valid password field

  • Test for login with invalid username and valid password field

  • Test for login with valid username and invalid password field

  • Test for login with special charac...

View all Test Engineer interview questions
A Test Engineer was asked
Q. What are the locators in Selenium?
Ans. 

Locators in Selenium are used to identify web elements on a web page.

  • Locators are used to find web elements based on their attributes like ID, class, name, etc.

  • Some commonly used locators in Selenium are ID, Name, Class Name, Tag Name, Link Text, and Partial Link Text.

  • For example, driver.findElement(By.id("username")) will find the element with ID attribute as "username".

View all Test Engineer interview questions

Full Creative Interview Experiences for Freshers

16 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(3 Questions)

  • Q1. Are you willing to relocate?
  • Q2. Are you comfortable with the night shift?
  • Q3. Are you comfortable with onsite interview?
Round 2 - Assignment 

English written communication assessment

Round 3 - Team lead 

(4 Questions)

  • Q1. What new things can you tell me about yourself which are not in your resume?
  • Q2. What is your career plan for the next 3 years?
  • Q3. What research have you done about the company?
  • Q4. Any challenges the team will be facing because of you?

Interview Preparation Tips

Topics to prepare for Full Creative Customer Support Representative interview:
  • Company website
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - English Test using mobile app 

(1 Question)

  • Q1. I was shortlisted for the 1st round i.e a english test using a mobile app to test one's english proficiency.
Round 2 - One-on-one 

(1 Question)

  • Q1. Upon completing the English Test, I was shortlisted for the round -2, a video call interview with the HR recruiter. Questions: 1. What are your Hobbies? 2. How will you handle a rude customer? 3. What is...

Interview Preparation Tips

Topics to prepare for Full Creative Chat Support Executive interview:
  • Basic customer support role que
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Mar 2023. 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 - Group Discussion 

They asked about "Banned Chinese app is good or bad?

Round 3 - HR 

(1 Question)

  • Q1. Tell about yourself? Why should I hire you?
Round 4 - Technical 

(3 Questions)

  • Q1. What is Hoisting? What is closure?
  • Ans. 

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Hoisting applies to variable declarations and function declarations

    • Variables are initialized with undefined and functions are fully defined

    • Hoisting only moves the declarations, not the assignments

    • Example: console.log(x); var x = 5; // Output: undefined

    • Closure is a function that has access to its outer functi...

  • Answered by AI
  • Q2. What is box model? Center the input tag?
  • Ans. 

    Box model is a way of representing HTML elements as rectangular boxes with content, padding, border, and margin.

    • The box model consists of content, padding, border, and margin.

    • Content is the actual content of the element.

    • Padding is the space between the content and the border.

    • Border is the line that surrounds the padding and content.

    • Margin is the space between the border and other elements.

    • To center an input tag, set ma...

  • Answered by AI
  • Q3. What is useState in react?
  • Ans. 

    useState is a hook in React that allows functional components to have state variables.

    • useState is a built-in hook in React.

    • It allows functional components to have state variables.

    • It takes an initial state value and returns an array with the current state value and a function to update it.

    • The state can be updated using the function returned by useState.

    • Example: const [count, setCount] = useState(0);

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Full Creative Fullstack Developer Intern interview:
  • Data Structures
  • Algorithms
  • Front End
Interview preparation tips for other job seekers - Go through the interview questions from edureka before your Interview,
Practice some coding problem,

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Feb 2023. There were 5 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 - Group Discussion 

Simple topics like social media, AI etc...

Round 3 - Technical 

(3 Questions)

  • Q1. Five MCQ java based questions
  • Q2. What is the difference between frontend and backend?
  • Ans. 

    Frontend is the client-side of an application that users interact with, while backend is the server-side that manages data and logic.

    • Frontend is responsible for the user interface and user experience.

    • Backend is responsible for server-side logic, database operations, and authentication.

    • Frontend technologies include HTML, CSS, and JavaScript, while backend technologies include Node.js, Python, and Java.

    • Examples of fronte...

  • Answered by AI
  • Q3. What is software development life cycle?
  • Ans. 

    Software development life cycle is a process used by software developers to design, develop, test, and deploy software applications.

    • It consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables.

    • Examples of software development life cycle models include Waterfall, Agile, and DevOps.

  • Answered by AI
Round 4 - Coding Test 

Arrange string in ascending order and descending order

Round 5 - HR 

(1 Question)

  • Q1. Discussed only about the package

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in your basics

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Group Discussion 

A topic is given as usual and once you prove yourself and by adding good points you would be moved to the next round

Round 2 - Aptitude Test 

Laptops were provided for every individual and based on the test score you would move on the next round.

Round 3 - Technical 

(1 Question)

  • Q1. Prior experiences and how one would deal with real life situations.
Round 4 - One-on-one 

(1 Question)

  • Q1. The final round is a general round which they ask about your interest and why you would be the best suitable personel for the role

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to any position the company has to offer. Be bold to speak up and make sure to think before you talk instead of just giving random answers.

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 31 Dec 2022

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

I applied via Recruitment Consulltant and was interviewed in Jul 2022. 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 

Very normal, easiest one and some coding they have asked, and with some manual question

Round 3 - Technical 

(5 Questions)

  • Q1. Easiest one and some coding they have asked with some manual testing.
  • Q2. 1. What are the locators in selenium?
  • Ans. 

    Locators in Selenium are used to identify web elements on a web page.

    • Locators are used to find web elements based on their attributes like ID, class, name, etc.

    • Some commonly used locators in Selenium are ID, Name, Class Name, Tag Name, Link Text, and Partial Link Text.

    • For example, driver.findElement(By.id("username")) will find the element with ID attribute as "username".

  • Answered by AI
  • Q3. 2. Write test cases for login functionality except 4 correct and incorrect password and username
  • Ans. 

    Test cases for login functionality excluding correct and incorrect username and password.

    • Test for login with blank username and password fields

    • Test for login with valid username and blank password field

    • Test for login with blank username and valid password field

    • Test for login with invalid username and valid password field

    • Test for login with valid username and invalid password field

    • Test for login with special characters ...

  • Answered by AI
  • Q4. 3. What is assertion in selenium?
  • Ans. 

    Assertion in Selenium is a command that verifies if the expected result matches the actual result of a test step.

    • Assertions are used to validate the behavior of a web application under test.

    • They help in identifying defects early in the development cycle.

    • Selenium provides various assertion methods like assertEquals, assertTrue, assertFalse, etc.

    • If the assertion fails, the test case is marked as failed and the execution ...

  • Answered by AI
  • Q5. 4. How can u select a box using selenium?
  • Ans. 

    To select a box using Selenium, we can use the findElement() method with appropriate locator strategies.

    • Identify the element using a unique locator such as ID, name, class name, etc.

    • Use the findElement() method to locate the element on the web page.

    • Perform actions on the element using various methods such as click(), sendKeys(), etc.

    • Example: WebElement checkbox = driver.findElement(By.id("checkbox_id")); checkbox.click...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very tough to crack interview. But not that much tough as Zoho, Infosys

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Oct 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 - Assignment 

A assignment test on basic grammar.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourself.
  • Ans. 

    I am a motivated and detail-oriented individual with a strong interest in business operations.

    • I have completed coursework in operations management and supply chain management.

    • I have experience working in a fast-paced retail environment, where I developed strong organizational and problem-solving skills.

    • I am proficient in using various software tools, such as Microsoft Excel and project management software.

    • I am a team p...

  • Answered by AI
  • Q2. Why are you suitable for this internship?
  • Ans. 

    I am suitable for this internship because of my strong analytical skills, attention to detail, and ability to work well in a team.

    • I have a strong background in business operations and have completed relevant coursework in my degree program.

    • I have experience analyzing data and identifying areas for improvement in business processes.

    • I am highly organized and detail-oriented, ensuring accuracy and efficiency in my work.

    • I ...

  • Answered by AI

I applied via Company Website and was interviewed in Jul 2022. 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 - HR 

(2 Questions)

  • Q1. Data Types In Javascript
  • Ans. 

    Data types in JavaScript include primitive and object types.

    • Primitive types include string, number, boolean, null, undefined, and symbol.

    • Object types include arrays, functions, and objects.

    • Typeof operator can be used to determine the type of a variable.

    • Type coercion can occur when different types are used together.

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

    Javascript is a scripting language used for web development, while Java is a general-purpose programming language.

    • Javascript is interpreted, while Java is compiled

    • Javascript is used for client-side scripting, while Java is used for server-side programming

    • Javascript is loosely typed, while Java is strongly typed

    • Javascript has a prototype-based object model, while Java has a class-based object model

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. What is a linkedlist and its pros ?
  • Ans. 

    A linked list is a linear data structure where each element is a separate object with a pointer to the next element.

    • Linkedlist allows for efficient insertion and deletion of elements

    • It can be used to implement stacks, queues, and graphs

    • Traversal is slower compared to arrays

    • Examples include singly linked list, doubly linked list, and circular linked list

  • Answered by AI
  • Q2. What is this in javascript ?
  • Ans. 

    This could refer to anything in javascript, please provide more context.

    • Please provide more context for a specific answer.

    • It could be a variable, function, object, or any other javascript construct.

    • Without more information, it is impossible to provide a specific answer.

  • Answered by AI
  • Q3. What is temporal deadzone ?
  • Ans. 

    Temporal dead zone is a behavior in JavaScript where a variable cannot be accessed before it is declared.

    • Variables declared with let and const are hoisted but cannot be accessed before their declaration

    • Trying to access a variable in its temporal dead zone results in a ReferenceError

    • Temporal dead zone is a feature introduced in ES6 to improve JavaScript's scoping mechanism

  • Answered by AI
  • Q4. What is React Vdom ?
  • Ans. 

    React Vdom is a virtual representation of the actual DOM used by React to optimize rendering performance.

    • Vdom is a lightweight copy of the actual DOM tree.

    • React compares the previous and current Vdom trees to determine the minimum number of changes required to update the actual DOM.

    • This approach reduces the number of DOM manipulations and improves performance.

    • Vdom can be created using React.createElement() or JSX synta...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Full Creative Fullstack Developer Intern interview:
  • React.Js
  • Javascript
  • Data Structures
Interview preparation tips for other job seekers - Keep the basics clear and move with the approach you have

Skills evaluated in this interview

I applied via Campus Placement 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

Intern Interview Questions & Answers

user image Anonymous

posted on 10 Mar 2024

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

I appeared for an interview 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

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 Full Creative?
Ask anonymously on communities.

Full Creative Interview FAQs

How many rounds are there in Full Creative interview for freshers?
Full Creative interview process for freshers usually has 3-4 rounds. The most common rounds in the Full Creative interview process for freshers are HR, Resume Shortlist and Technical.
How to prepare for Full Creative interview for freshers?
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, Excel, Analytics, Presentation Skills and Analytical skills.
What are the top questions asked in Full Creative interview for freshers?

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

  1. What is a linkedlist and its pro...read more
  2. What is Hoisting? What is closu...read more
  3. 4. How can u select a box using seleni...read more
What are the most common questions asked in Full Creative HR round for freshers?

The most common HR questions asked in Full Creative interview are for freshers -

  1. Why are you looking for a chan...read more
  2. What is your family backgrou...read more
  3. Share details of your previous j...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.

Overall Interview Experience Rating

3.6/5

based on 8 interview experiences

Difficulty level

Easy 29%
Moderate 71%

Duration

Less than 2 weeks 86%
2-4 weeks 14%
View more

Interview Questions from Similar Companies

BCD Travel Interview Questions
4.3
 • 113 Interviews
DISH TV Interview Questions
3.5
 • 65 Interviews
MagicPin Interview Questions
2.6
 • 58 Interviews
Lido Learning Interview Questions
2.2
 • 55 Interviews
Athena BPO Interview Questions
3.2
 • 53 Interviews
View all

Full Creative Reviews and Ratings

based on 140 reviews

3.0/5

Rating in categories

3.4

Skill development

3.0

Work-life balance

3.1

Salary

2.7

Job security

2.9

Company culture

2.6

Promotions

2.9

Work satisfaction

Explore 140 Reviews and Ratings
Software Engineer
62 salaries
unlock blur

₹9.9 L/yr - ₹18.2 L/yr

Product Expert
41 salaries
unlock blur

₹2.5 L/yr - ₹7 L/yr

Junior Software Engineer
41 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Client Account Manager
39 salaries
unlock blur

₹4 L/yr - ₹6.8 L/yr

Software Developer
32 salaries
unlock blur

₹5.2 L/yr - ₹14.1 L/yr

Explore more salaries
Compare Full Creative with

Reliance Communications

4.0
Compare

ZF Steering Gear

3.7
Compare

DISH TV

3.5
Compare

Coca-Cola Company

4.1
Compare
write
Share an Interview