Upload Button Icon Add office photos

Filter interviews by

G NEXT MEDIA Developer Interview Questions and Answers

Updated 9 Mar 2022

G NEXT MEDIA Developer Interview Experiences

1 interview found

Developer Interview Questions & Answers

user image Anonymous

posted on 9 Mar 2022

I applied via Naukri.com and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Very good rounds

Round 2 - Technical 

(2 Questions)

  • Q1. Asked question on Android and oops
  • Q2. Oops , system design

Interview Preparation Tips

Interview preparation tips for other job seekers - be honest and try to be more clear with concept

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

One hour aptitude test based on the mathematics ,logical reasoning.

Round 2 - Technical 

(2 Questions)

  • Q1. One basic question on the language you know and one SQL is asked
  • Q2. SQL query questions

Interview Preparation Tips

Topics to prepare for Sportz Interactive Software Developer interview:
  • SQL
Interview preparation tips for other job seekers - Prepared for a SQL and you know language technical questions
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Behavioral 

(4 Questions)

  • Q1. Tell about yourself
  • Q2. Asking critical questions
  • Q3. I didn't like questions
  • Q4. I didn't like that company

Interview Preparation Tips

Interview preparation tips for other job seekers - Arihant publications not guided me well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What do you know about our company

Interview Preparation Tips

Interview preparation tips for other job seekers - they will ask about some finance knowledge and the rest is just a normal interview question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Which sq mm cable we can use for 10 hp motor?
  • Ans. 

    The cable size required for a 10 hp motor depends on the voltage and current rating of the motor.

    • The cable size should be selected based on the motor's full load current (FLC) and the voltage rating.

    • For a 10 hp motor, the FLC would typically be around 15-20 Amps.

    • A common cable size for a 10 hp motor operating at 415V could be 4 sq mm cable.

  • Answered by AI
  • Q2. Tell me about,how many you are electrically sound?
  • Ans. 

    I have a strong understanding of electrical systems and am capable of troubleshooting and problem-solving in this area.

    • I have a degree in Electrical Engineering

    • I have completed multiple projects involving electrical systems

    • I have experience working with electrical equipment and tools

    • I have a good understanding of electrical codes and regulations

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It's fine and easy , nothing hard question ,all are related to topics

Round 2 - HR 

(2 Questions)

  • Q1. A can complete a work in 12 days, and B can complete the same work in 18 days. How long will it take for both A and B to complete the work together?
  • Q2. What is the next number in the series: 2, 6, 12, 20, 30, ___?
  • Ans. 

    The next number in the series is 42.

    • The series is increasing by 4, 6, 8, 10, ...

    • Each number is the sum of the previous number and the next odd number.

    • 2 + 4 = 6, 6 + 6 = 12, 12 + 8 = 20, 20 + 10 = 30, so the next number is 30 + 12 = 42.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume concise, clear, and error-free, focusing on achievements and measurable results.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Depending on the role / skills the coding test will be conducted

Round 3 - Technical 

(1 Question)

  • Q1. Questions around the technical skill set for which the hiring was being done
Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion on previous experiences and expectations from role being discussed.

Interview Preparation Tips

Interview preparation tips for other job seekers - Get clarity on the role and also what is the growth opportunities that you can get in the role you are being offered. Understand and confirm what are the expectations on Working from Office as well as what is the work from home policy applicable. Get complete clarity on work life balance.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2022. There were 3 interview rounds.

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

(4 Questions)

  • Q1. What is object oriented programming
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code to manipulate that data.

    • Objects are instances of classes, which define the structure and behavior of the objects.

    • Encapsulation is a key principle, where data is kept private within the object and only accessible through methods.

    • Inheritance allows classes to inherit attributes and methods from other cla...

  • Answered by AI
  • Q2. What is static Constructor?
  • Ans. 

    Static constructor is a special type of constructor in a class that is called only once when the class is loaded into memory.

    • Static constructor is used to initialize static data members of a class.

    • It is automatically called by the .NET Framework when the class is first loaded.

    • Static constructor does not take any parameters and cannot be called explicitly.

    • Example: public class MyClass { static MyClass() { // initializat

  • Answered by AI
  • Q3. What are solid Principles
  • Ans. 

    SOLID principles are a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects o...

  • Answered by AI
  • Q4. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Commonly used in frameworks like Spring in Java

  • Answered by AI
Round 3 - Coding Test 

What is static Constructor

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is key , keep your basic strong.

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Dont know why they need aptitude on such exp level

Round 2 - Technical 

(1 Question)

  • Q1. Related to API testing, manual testing
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What can you tell me about Jira software?
  • Ans. 

    Jira is a project management software used for tracking and managing tasks, issues, and workflows.

    • Jira allows teams to create and prioritize tasks, assign them to team members, and track progress.

    • It provides customizable workflows, dashboards, and reporting features to help teams stay organized and efficient.

    • Integrates with other tools like Confluence, Bitbucket, and Trello for seamless collaboration.

    • Commonly used in A...

  • Answered by AI
  • Q2. How should one handle conflicts that arise between cross-functional teams?
  • Ans. 

    Conflicts between cross-functional teams should be addressed promptly and collaboratively.

    • Encourage open communication to understand each team's perspective

    • Facilitate a meeting to discuss the conflict and find a resolution

    • Focus on the common goal and the benefits of working together

    • Assign a neutral mediator if necessary

    • Establish clear guidelines and expectations for collaboration

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

(1 Question)

  • Q1. What elements should be included on a website?
  • Ans. 

    Elements to include on a website are crucial for user experience and functionality.

    • Clear navigation menu for easy access to different pages

    • Contact information for users to reach out

    • High-quality images and videos to engage users

    • Call-to-action buttons to encourage user interaction

    • Responsive design for mobile compatibility

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - HR will never respond after asking her for feedback.

G NEXT MEDIA Interview FAQs

How many rounds are there in G NEXT MEDIA Developer interview?
G NEXT MEDIA interview process usually has 2 rounds. The most common rounds in the G NEXT MEDIA interview process are Coding Test and Technical.
What are the top questions asked in G NEXT MEDIA Developer interview?

Some of the top questions asked at the G NEXT MEDIA Developer interview -

  1. asked question on Android and o...read more
  2. oops , system des...read more

Tell us how to improve this page.

Senior Manager-HR
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Billing Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant General Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare G NEXT MEDIA with

Pittie Group

2.7
Compare

Ushodaya Enterprises

4.1
Compare

China State Construction Engineering Corporation

3.9
Compare

Arihant Publications

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