Upload Button Icon Add office photos

Filter interviews by

Shotformats Digital Production Interview Questions and Answers

Updated 7 Jun 2023

Shotformats Digital Production Interview Experiences

1 interview found

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

I applied via Hirist and was interviewed in Dec 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 - Technical 

(1 Question)

  • Q1. Mostly technology stack related questions
Round 3 - Case Study 

You should have a thorough understanding of the project you have worked on

Round 4 - HR 

(1 Question)

  • Q1. Mostly about the reason to change the company and salary structure

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 (170)

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Here is everything asked in round 1 after they ghosted me # Find if string contains all unique character. # STR1 = 'DDISCOVERY' return TRUE # STR2 = 'WARNER BROTHERS DISCOVERY' return FALSE # fro...
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is an LVM
  • Ans. 

    LVM stands for Logical Volume Manager, a tool used in Linux systems to manage disk space by creating logical volumes from physical volumes.

    • LVM allows for dynamic resizing of logical volumes without needing to unmount the filesystem

    • It provides features like striping, mirroring, and snapshots for data management

    • Common LVM commands include pvcreate, vgcreate, lvcreate, lvextend, lvreduce

    • Example: Creating a new logical vol...

  • Answered by AI
  • Q2. How to check the open ports
  • Ans. 

    To check open ports, use tools like netstat, nmap, or telnet

    • Use netstat command to display all open ports on a system

    • Use nmap tool to scan for open ports on a remote system

    • Use telnet command to check if a specific port is open on a remote host

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is a file storage and block storage
  • Ans. 

    File storage stores data in files and folders, while block storage stores data in blocks or chunks.

    • File storage organizes data in a hierarchical structure of files and folders, similar to a traditional file system.

    • Block storage breaks data into blocks or chunks and stores them in a raw format without any file system structure.

    • File storage is commonly used for storing documents, images, videos, etc., while block storage...

  • Answered by AI
  • Q2. How do you troubleshoot a server
  • Ans. 

    To troubleshoot a server, start by checking for hardware issues, then move on to software problems and network connectivity.

    • Check hardware components such as power supply, CPU, RAM, and storage devices for any issues or failures.

    • Review system logs and error messages to identify any software-related issues or conflicts.

    • Verify network connectivity by checking cables, switches, routers, and firewall settings.

    • Use diagnosti...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There will be 3 -4 rounds of interviews.
It would be best if you prepared from the basics to the advanced level of the topic.
1st round will be an online test, the next rounds will be face-to-face(both video and in-person)
You have to tick all the boxes, for every skill they are looking. Even if you miss one skill or topic you will be gone.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Coding Test 

45 mins coding test having javascript and react questions

Round 2 - Technical 

(2 Questions)

  • Q1. Print the character and the count of character on UI whenever a keystroke happens , implement it in react
  • Ans. 

    Implement a feature in React to display the character and count of characters on UI on each keystroke.

    • Use state to store the input value and update it on each keystroke.

    • Use a function to count the characters in the input value and display the result on the UI.

    • Use event listeners to detect keystrokes and trigger the character count update.

  • Answered by AI
  • Q2. Questions about micro-frontend, web workers, best react practices
Round 3 - Technical 

(2 Questions)

  • Q1. How do you optimize frontend code
  • Ans. 

    Optimizing frontend code involves minimizing file sizes, reducing HTTP requests, using efficient algorithms, and implementing caching strategies.

    • Minimize file sizes by removing unnecessary code, using minification tools, and optimizing images.

    • Reduce HTTP requests by combining files, using sprites, and lazy loading resources.

    • Use efficient algorithms and data structures to improve performance.

    • Implement caching strategies...

  • Answered by AI
  • Q2. How do you collaborate in team
  • Ans. 

    I collaborate in team by actively participating in discussions, sharing ideas, providing feedback, and working together towards common goals.

    • Actively participate in team meetings and discussions

    • Share ideas and insights with team members

    • Provide constructive feedback on others' work

    • Collaborate on projects by dividing tasks and working together towards common goals

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. General strenghts and weakness questions
  • Q2. Past experience , conflict handling

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was fairly easy

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Two Pointer Technique question to get the highest sum from two sorted list by jumping from one list to another list on common element.
  • Q2. Combine two sorted array such as first element would be the lowest element and second would be the largest element as so on.
  • Ans. 

    Merge two sorted arrays with alternating lowest and highest elements.

    • Create a new array to store the result

    • Use two pointers to iterate through the two input arrays

    • Alternate between adding the lowest and highest elements to the result array

  • Answered by AI
Round 2 - LLD Round 

(1 Question)

  • Q1. Design SplitWise
  • Ans. 

    SplitWise is a platform for splitting expenses among friends or groups.

    • Allow users to create groups and add expenses

    • Calculate each user's share of the expenses

    • Send notifications to users for pending payments

    • Support multiple currencies for international groups

  • Answered by AI
Round 3 - System Design 

(1 Question)

  • Q1. Design API Rate Limiter
  • Ans. 

    Design API Rate Limiter to control the number of requests a user can make within a specific time frame.

    • Implement a token bucket algorithm to track and limit the number of requests per user.

    • Use a sliding window to track the time frame for request limits.

    • Consider using a distributed cache like Redis to store and manage request limits.

    • Provide appropriate error responses when the rate limit is exceeded.

    • Allow for customizat...

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Thapar Institute of Engineering and Technology (TIET) and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitutde test including maths and gk

Round 2 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Why non tech profile despite being from tech background?
  • Q3. How much would you rate yourself on excel out of 10?
  • Q4. What are your hobbies?
  • Q5. What software apart from excel do you know which may help you perform your duties better at this job?
  • Ans. 

    Apart from Excel, I am familiar with software like Jira, Trello, and Asana which can help in project management and task tracking.

    • Jira - for project management and issue tracking

    • Trello - for task management and collaboration

    • Asana - for project planning and team communication

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

SDE Interview Questions & Answers

Network 18 user image Mayank jain

posted on 23 Dec 2024

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Max subarray sum
  • Q2. Reverse linked list
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - HR 

(6 Questions)

  • Q1. Introduce yourself in breif ?
  • Ans. 

    I am a detail-oriented individual with a background in content moderation and a passion for ensuring online safety.

    • Experienced in reviewing and moderating user-generated content

    • Strong attention to detail and ability to identify inappropriate or harmful content

    • Familiar with content moderation guidelines and policies

    • Excellent communication skills for providing feedback and enforcing guidelines

    • Ability to work efficiently

  • Answered by AI
  • Q2. What you know about content moderation?
  • Ans. 

    Content moderation involves monitoring and reviewing user-generated content to ensure it meets community guidelines and standards.

    • Content moderation involves monitoring user-generated content on websites, social media platforms, forums, etc.

    • The goal is to ensure that the content complies with community guidelines, terms of service, and legal requirements.

    • Moderators review text, images, videos, and other forms of conten...

  • Answered by AI
  • Q3. Share your screen and type your native language news read it and explain in hindi to interviewer
  • Q4. Are able to work on night shift
  • Ans. 

    Yes, I am able to work on night shifts.

    • I am comfortable working during night hours

    • I have previous experience working night shifts

    • I am able to adjust my schedule to accommodate night shifts

  • Answered by AI
  • Q5. Are you able to work on this sallery
  • Ans. 

    Yes, I am able to work on this salary.

    • I am comfortable with the salary offered for this position.

    • I have reviewed the salary details and it meets my expectations.

    • I am confident in my ability to perform well in this role regardless of the salary.

  • Answered by AI
  • Q6. What you know about infoesearch ?
  • Ans. 

    Infosearch is the process of researching and gathering information from various sources.

    • Infosearch involves using search engines to find relevant information

    • It may also include searching through databases, libraries, and other resources

    • Infosearch is important for gathering accurate and up-to-date information for decision-making

    • Examples of infosearch include researching a topic for a school project or finding informatio

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infoesearch Ites Content Moderator interview:
  • youtube
Interview preparation tips for other job seekers - not very hard search question on youtube or ambition box.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Easy DSA questions 1-2, Array Strings
  • Q2. IOS Questions, Easy to Medium
Round 2 - Technical 

(2 Questions)

  • Q1. DSA 1-2 Questions Easy
  • Q2. Medium ios topics including cacheing, life cycle
Round 3 - Behavioral interview 

(2 Questions)

  • Q1. Behaviour based questions
  • Q2. STAR methodology related questions

Senior Specilist, Content and Data Partnerships Interview Questions & Answers

Gracenote user image Anonymous

posted on 8 May 2024

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. They will basic check for your communication and excel skills
  • Q2. They will ask you to explain about your work history and just be presentable during the interview
Round 2 - One-on-one 

(1 Question)

  • Q1. Take me through your profile? What do you know about Gracenote
Round 3 - HR 

(1 Question)

  • Q1. The HR is as opportunist as they can get. They will ask why you want to join gracenote to gauge your interest and they will ask you for your family background, etc. If you come from a good background plea...

Shotformats Digital Production Interview FAQs

How many rounds are there in Shotformats Digital Production interview?
Shotformats Digital Production interview process usually has 4 rounds. The most common rounds in the Shotformats Digital Production interview process are Resume Shortlist, Technical and Case Study.
How to prepare for Shotformats Digital Production 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 Shotformats Digital Production. The most common topics and skills that interviewers at Shotformats Digital Production expect are PHP, Codeigniter, JSON, Javascript and Laravel.

Tell us how to improve this page.

People are getting interviews through

based on 1 Shotformats Digital Production interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Pocket FM Interview Questions
3.1
 • 45 Interviews
Network 18 Interview Questions
3.4
 • 25 Interviews
View all

Shotformats Digital Production Reviews and Ratings

based on 67 reviews

2.3/5

Rating in categories

2.4

Skill development

2.1

Work-Life balance

2.1

Salary & Benefits

2.1

Job Security

2.2

Company culture

2.1

Promotions/Appraisal

2.1

Work Satisfaction

Explore 67 Reviews and Ratings
HR Manager
6 salaries
unlock blur

₹5.6 L/yr - ₹6 L/yr

Customer Care Executive
6 salaries
unlock blur

₹1.4 L/yr - ₹2.8 L/yr

Vice President Technology
5 salaries
unlock blur

₹48 L/yr - ₹60 L/yr

PHP Developer
5 salaries
unlock blur

₹1.8 L/yr - ₹1.9 L/yr

Customer Service Executive
5 salaries
unlock blur

₹1.2 L/yr - ₹3.1 L/yr

Explore more salaries
Compare Shotformats Digital Production with

Contiloe Entertainment

3.2
Compare

Balaji Telefilms

3.0
Compare

Eros International

2.7
Compare

Reliance Big Entertainment

3.1
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