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 Operations Intern Interview Questions and Answers

Updated 17 Oct 2022

Full Creative Operations Intern Interview Experiences

1 interview found

I was interviewed in Sep 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 - 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.

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

English amplitude question asked

Round 2 - Technical 

(2 Questions)

  • Q1. Basic question on HTML css
  • Q2. Basic of HTML code
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Did you add anything creative to the audit process in your previous experience?
Round 2 - One-on-one 

(1 Question)

  • Q1. What are your areas of expertise?
Round 3 - HR 

(1 Question)

  • Q1. Why do you think we should hire you

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. Merge overlapping intervals

    Given 'N' number of intervals, where each interval contains two integers denoting the boundaries of the interval. The task is to merge all the overlapping intervals and ...

  • Ans. Brute Force
    1. We are given the function MERGEINTERVALS(), which takes a 2D vector representing the vector of intervals and returns another 2D vector which is the vector of merged intervals.
    2. We create another function ISOVERLAP() to check if the current interval overlaps with the other interval.
    3. Now we create an empty 2D vector “RES” to store finally merged intervals and another boolean vector “VIS” to mark if the current in...
  • Answered by CodingNinjas
  • Q2. Rat in a Maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered by CodingNinjas
  • Q3. Permutations of a String

    You are given a string 'STR' consisting of lowercase English letters. Your task is to return all permutations of the given string in lexicographically increasing order.

    S...

  • Ans. Backtracking

    The idea is to fix a character at a position and then find the permutations for rest of the characters.

    Make a list ‘ans’ which will contain the permutations of the given string.

     

    Algorithm:

    Let’s define a function generatePermutaionsHelper(Str, l, r). This function generates the permutations of the substring which starts from index  ‘l’ and ends at index  ‘r’.

    • Call the function: generatePermutai...
  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure. 
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. Merge overlapping intervals

    Given 'N' number of intervals, where each interval contains two integers denoting the boundaries of the interval. The task is to merge all the overlapping intervals and ...

  • Ans. Brute Force
    1. We are given the function MERGEINTERVALS(), which takes a 2D vector representing the vector of intervals and returns another 2D vector which is the vector of merged intervals.
    2. We create another function ISOVERLAP() to check if the current interval overlaps with the other interval.
    3. Now we create an empty 2D vector “RES” to store finally merged intervals and another boolean vector “VIS” to mark if the current in...
  • Answered by CodingNinjas
  • Q2. Rat in a Maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure.
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Dec 2020.

Round 1 - Assignment 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

  • Q1. Two Sum

    You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

    Note:

    We cannot use th...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered by CodingNinjas
  • Q2. Operating Systems

    What is a semaphore?

    What is deadlock?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Birla Institute of Technology, Mesra. Eligibility criterianoLido Learning interview preparation:Topics to prepare for the interview - Data structures, Big O Notation, Trees Sorting and search algorithms, HeapsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Have projects on your resume.
Tip 2 : Good to have internships
Tip 3 : Practice a lot

Application resume tips for other job seekers

Tip 1 : Have good projects
Tip 2 : Have knowledge of everything you wrote

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before May 2021. There were 2 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 

(1 Question)

  • Q1. Tell me about urself

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep in mind your goals clarity should be must.

I was interviewed before Jun 2016.

Interview Questionnaire 

5 Questions

  • Q1. Knowledge of Java
  • Q2. Knowledge of Python
  • Q3. Knowledge of PHP
  • Q4. My team working skills
  • Q5. Ability to handle pressure
  • Ans. 

    I have the ability to handle pressure effectively.

    • I remain calm and focused in high-pressure situations.

    • I prioritize tasks and manage my time efficiently.

    • I seek support and guidance from team members when needed.

    • I maintain a positive attitude and adapt to changing circumstances.

    • I have successfully completed projects under tight deadlines.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: The interview was interactive and the interviewers seemed interested for every answer I gave even if it was a wrong one. They corrected me at every step.

Round: Technical + HR Interview
Experience: This was basically for testing my moral towards working and how i cope up with other colleagues.

College Name: Ramaiah Institute Of Technology

Full Creative Interview FAQs

How many rounds are there in Full Creative Operations Intern interview?
Full Creative interview process usually has 5 rounds. The most common rounds in the Full Creative interview process are HR, Resume Shortlist and Aptitude Test.
What are the top questions asked in Full Creative Operations Intern interview?

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

  1. They will check your communication skil...read more
  2. Again intro. And some gk questi...read more
  3. Hr will check your communication skil...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 780 Interviews
TransUnion Interview Questions
4.0
 • 87 Interviews
View all
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