Upload Button Icon Add office photos
Engaged Employer

i

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

Grazitti Interactive Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Grazitti Interactive Interview Questions, Process, and Tips

Updated 2 Jan 2025

Top Grazitti Interactive Interview Questions and Answers

View all 11 questions

Grazitti Interactive Interview Experiences

Popular Designations

19 interviews found

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

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions relatated to the resume skills.
  • Q2. Sql questions with basic.
Round 2 - HR 

(1 Question)

  • Q1. Basic HR Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your skills, brush up your basics.

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 (197)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Difference between Marketing & Sales
  • Ans. 

    Marketing focuses on creating demand for a product or service, while sales involves closing deals and generating revenue.

    • Marketing involves activities such as market research, advertising, branding, and lead generation.

    • Sales involves activities such as prospecting, qualifying leads, negotiating, and closing deals.

    • Marketing aims to create awareness and interest in a product or service, while sales aims to convert that i...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Experience as a Marketer

Product Marketing Specialist 2 Interview Questions asked at other Companies

Q1. Difference between Marketing & Sales
View answer (1)
Grazitti Interactive Interview Questions and Answers for Freshers
illustration image

Content Writer Interview Questions & Answers

user image Shreya Khanduja

posted on 30 May 2024

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

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

Round 1 - Assignment 

Writing Assignment on Online Communities

Round 2 - One-on-one 

(1 Question)

  • Q1. One on one round with the manager where they ask about your skills and experience
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Content Writer Interview Questions asked at other Companies

Q1. What are the steps to follow to write good content?
View answer (5)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about your projects, Basics of JavaScript questions which contains of filter, map ,reduce. then questions realted to react js which were about props, nested components, redux and hooks
Round 2 - HR 

(1 Question)

  • Q1. Generic hr questions and then salary discussion

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Grazitti Interactive interview questions for popular designations

 Software Engineer

 (3)

 Data Analyst

 (2)

 Software Developer

 (2)

 Web Developer

 (2)

 Software Engineer Trainee

 (1)

 Product Manager

 (1)

 Content Writer

 (1)

 Senior Software Engineer

 (1)

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

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Print a square with stars on the border of it in Java
  • Ans. 

    Print a square with stars on the border in Java

    • Create a nested loop to iterate through rows and columns

    • Print stars for the first and last rows, and first and last columns

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Get interview-ready with Top Grazitti Interactive Interview Questions

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Jun 2022

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. One question on SQL One on Pandas One related to Python data structure ( Lists and string)
Round 2 - HR 

(1 Question)

  • Q1. It's a simple one. HR just wanted to know when can you join and the salary they can offer

Interview Preparation Tips

Interview preparation tips for other job seekers - SQL should be good.
Giving answers with confidence pays well.

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Jobs at Grazitti Interactive

View all

I applied via Walk-in

Interview Questionnaire 

4 Questions

  • Q1. Write a program to check if a string is a palindrome or not.
  • Ans. 

    A program to check if a string is a palindrome or not.

    • A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • To check if a string is a palindrome, we can compare the characters from the beginning and end of the string.

    • If the characters match for all positions, the string is a palindrome.

    • We can ignore spaces, punctuation, and case sensitivity when checking for pa

  • Answered by AI
  • Q2. What is a constructor.
  • Ans. 

    A constructor is a special method that is used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • They can be used to set initial values for object properties.

    • Constructors can be overloaded to accept different parameters.

    • Example: public class Person { public Person(String name) { this.name = name; } }

  • Answered by AI
  • Q3. What is the use of main function.
  • Ans. 

    Main function is the entry point of a program. It is used to execute the code in the program.

    • Main function is required in every program written in C, C++, Java, etc.

    • It is the first function to be executed when the program starts.

    • It can take command line arguments.

    • It returns an integer value to the operating system.

    • Example: int main() { // code to be executed }

  • Answered by AI
  • Q4. What are static variables
  • Ans. 

    Static variables are variables that are associated with a class, not with an instance of the class.

    • Static variables are declared using the 'static' keyword.

    • They are initialized only once, at the start of the program.

    • They can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of the class.

    • Examples include a counter variable to keep track of the number of instances creat...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I would suggest that the candidate should brush up the basics of coding concepts and oops concepts before going for the interviews.

Skills evaluated in this interview

Salesforce Trainee Interview Questions asked at other Companies

Q1. Write a program to check if a string is a palindrome or not.
View answer (2)

I applied via LinkedIn and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic Python Questions
  • Q2. Machine learning : Prediction vs recommendation
  • Ans. 

    Prediction is about estimating a value while recommendation is about suggesting an item.

    • Prediction involves estimating a value or outcome based on input data.

    • Recommendation involves suggesting an item or action based on user preferences or behavior.

    • Prediction is used in applications like weather forecasting, stock market analysis, and fraud detection.

    • Recommendation is used in applications like movie or product recommen...

  • Answered by AI
  • Q3. Front end : Basic HTML and CSS questions like div,span / adding forms etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident , go through basics well and know about your project

Skills evaluated in this interview

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)

I applied via Job Portal and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. MVVM, Dependency Injection

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through basics of Android, Kotlin and Java

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Grazitti Interactive Interview FAQs

How many rounds are there in Grazitti Interactive interview?
Grazitti Interactive interview process usually has 2-3 rounds. The most common rounds in the Grazitti Interactive interview process are Technical, HR and Aptitude Test.
How to prepare for Grazitti Interactive 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 Grazitti Interactive. The most common topics and skills that interviewers at Grazitti Interactive expect are Javascript, Adobe, Social Media, HTML and IT Services.
What are the top questions asked in Grazitti Interactive interview?

Some of the top questions asked at the Grazitti Interactive interview -

  1. Write a program to check if a string is a palindrome or n...read more
  2. What is the use of main functio...read more
  3. Do you know how to perform integrations in Mark...read more
How long is the Grazitti Interactive interview process?

The duration of Grazitti Interactive interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Grazitti Interactive

No Jobs

SALARIES

Grazitti Interactive

JOBS

Grazitti Interactive

No Jobs

INTERVIEWS

BSH Home Appliances Group

No Interviews

SALARIES

BSH Home Appliances Group

SALARIES

Grazitti Interactive

SALARIES

OneBanc Technologies

INTERVIEWS

BSH Home Appliances Group

No Interviews

LIST OF COMPANIES

Council Of Architecture

Overview

JOBS

BSH Home Appliances Group

No Jobs

Tell us how to improve this page.

Grazitti Interactive Interview Process

based on 18 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
ITC Infotech Interview Questions
3.6
 • 334 Interviews
View all

Grazitti Interactive Reviews and Ratings

based on 171 reviews

3.4/5

Rating in categories

3.1

Skill development

3.4

Work-life balance

3.3

Salary

3.5

Job security

3.2

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 171 Reviews and Ratings
Travel Executive

Mohali,

Chandigarh

+1

0-1 Yrs

₹ 0.8-1.75 LPA

Full Stack .Net Developer

Chandigarh,

Panchkula

4-9 Yrs

Not Disclosed

Soc Analyst

Mohali,

Chandigarh

+1

1-2 Yrs

₹ 4.00008-6 LPA

Explore more jobs
Software Engineer
221 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
111 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Salesforce Developer
74 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Marketing Automation Specialist
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Grazitti Interactive with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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