Upload Button Icon Add office photos
Engaged Employer

i

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

Influocial Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Influocial Technologies Creative Designer Interview Questions and Answers

Updated 29 Sep 2022

Influocial Technologies Creative Designer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed before Sep 2021. 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 - Case Study 

They throughly checked my previous works and did a creative for an example

Round 3 - Aptitude Test 

HR was calm and they identified my ups and downs

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be acknowledged your ups and downs. They will help you to pick up

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. General question
  • Q2. Work experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Related to previous work
  • Q2. Related to team management

I applied via LinkedIn and was interviewed in Oct 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 - Assignment 

Social media task given on sports event

Round 3 - Case Study 

Study the target group and solve the assignment

Interview Preparation Tips

Topics to prepare for 3 Minds Digital Graphic Designer interview:
  • related to job profile
Interview preparation tips for other job seekers - this place has quite friendly work culture. and people can explore new things
Interview experience
5
Excellent
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 - HR 

(2 Questions)

  • Q1. Are you available for a full time job in mumbai ?
  • Q2. Are you immediately join ?

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 rounds in my interview.
The process started with resume then 2nd round started with test and 3rd round ended with some discussion. I would like to thanks HR team for being constantly in touch with me.

I applied via LinkedIn 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 - One-on-one 

(1 Question)

  • Q1. How long you were working as a graphic designer
Round 3 - Technical 

(1 Question)

  • Q1. To make adaptations for ZEE5
  • Ans. 

    To make adaptations for ZEE5

    • Understand the brand guidelines and target audience

    • Create designs that are visually appealing and engaging

    • Ensure the designs are optimized for various platforms and devices

    • Collaborate with the marketing and content teams to create effective campaigns

    • Stay up-to-date with the latest design trends and technologies

    • Examples: social media graphics, website banners, email newsletters

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 3minds digital best place to work for the one who loves creativity
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2023. 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 - Assignment 

To create creative artworks

Round 3 - HR 

(1 Question)

  • Q1. Discussion about work

I applied via Campus Placement and was interviewed in Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions from SQL, Python, Excel, Tableau and from my Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your projects properly
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between union and union all in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI
  • Q2. How to show top 5 in pandas?
  • Ans. 

    To show top 5 in pandas, use the nlargest() function.

    • Use the nlargest() function with the 'n' parameter set to 5 to get the top 5 values in a pandas DataFrame.

    • For example: df['column_name'].nlargest(5) will return the top 5 values in the specified column.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. If we have 3 numerical columns, which chart is a better representation these column?
  • Ans. 

    A scatter plot is a better representation for 3 numerical columns.

    • Use a scatter plot to show the relationship between the numerical columns.

    • Scatter plots are effective for visualizing correlations and patterns in data.

    • Each point on the plot represents a data point with values from all 3 columns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Omnicom Media Group Data Analyst interview:
  • SQL Server
  • Pandas
  • Power Bi

Skills evaluated in this interview

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

Easy leetcode data structure question

Round 3 - Technical 

(1 Question)

  • Q1. Write working code for calling a rest API, design rate limiter
  • Ans. 

    Code for calling a REST API and designing a rate limiter

    • Use a library like requests or axios to make the API call

    • Implement a token bucket algorithm for rate limiting

    • Set a maximum number of requests per second and queue excess requests

    • Consider using a distributed rate limiter for scalability

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Design Database schema for instagram
  • Ans. 

    Design a database schema for Instagram.

    • Create tables for users, posts, comments, likes, and follows.

    • Use primary and foreign keys to establish relationships between tables.

    • Store user data such as username, email, and password securely.

    • Include fields for post content, location, and timestamp.

    • Track likes and comments on posts.

    • Implement a notification system for follows and likes.

    • Consider scalability and performance in the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All round was smooth and interviewer were friendly.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Campaign building
  • Q2. What is Ad network and Ad exchange
  • Ans. 

    Ad network is a platform that connects advertisers with publishers to display ads. Ad exchange is a marketplace for buying and selling ad inventory.

    • Ad network connects advertisers with publishers to display ads

    • Ad exchange is a marketplace for buying and selling ad inventory

    • Ad network typically charges a commission on ad spend

    • Ad exchange uses real-time bidding to determine the price of ad inventory

    • Examples of ad network...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always know about each and every term that you write in your resume. Do not brag about something that you don't know. Be transparent and calculative about your knowledge and offer.

Skills evaluated in this interview

Influocial Technologies Interview FAQs

How many rounds are there in Influocial Technologies Creative Designer interview?
Influocial Technologies interview process usually has 3 rounds. The most common rounds in the Influocial Technologies interview process are Resume Shortlist, Case Study and Aptitude Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

3 Minds Digital Interview Questions
4.4
 • 65 Interviews
Moris Media Interview Questions
4.3
 • 24 Interviews
Z1 Tech Interview Questions
4.0
 • 11 Interviews
Bikayi Interview Questions
2.9
 • 10 Interviews
Xapads Media Interview Questions
4.3
 • 10 Interviews
Jivox Interview Questions
3.8
 • 9 Interviews
Amitoje India Interview Questions
4.3
 • 9 Interviews
View all
Compare Influocial Technologies with

Omnicom Media Group

2.9
Compare

Z1 Tech

4.0
Compare

7Search PPC

4.8
Compare

Bikayi

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