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

Updated 10 Mar 2024

Full Creative Intern Interview Experiences for Freshers

2 interviews found

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 & Answers

user image Anonymous

posted on 6 Jun 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 

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

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

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 Intern 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 One-on-one Round, HR and Aptitude Test.
What are the top questions asked in Full Creative Intern interview for freshers?

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

  1. What are the data types available in j...read more
  2. Program to sort numb...read more
  3. Program on inherita...read more

Tell us how to improve this page.

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 34 Interviews
Infosys Intern Interview Questions
3.7
 • 22 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
HCLTech Intern Interview Questions
3.5
 • 7 Interviews
Mphasis Intern Interview Questions
3.4
 • 2 Interviews
View all
Full Creative Intern Salary
based on 4 salaries
₹1 L/yr - ₹4 L/yr
39% less than the average Intern Salary in India
View more details

Full Creative Intern Reviews and Ratings

based on 6 reviews

4.1/5

Rating in categories

5.0

Skill development

4.1

Work-Life balance

3.7

Salary & Benefits

3.3

Job Security

4.5

Company culture

3.3

Promotions/Appraisal

4.6

Work Satisfaction

Explore 6 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