Upload Button Icon Add office photos

Filter interviews by

Gazon Communications Full Stack Developer Interview Questions and Answers

Updated 3 May 2019

Gazon Communications Full Stack Developer Interview Experiences

1 interview found

Interview Questionnaire 

2 Questions

  • Q1. Opps concept, basic php, Python, MVC framework, API, Angular, SQL, MongoDB, projects.
  • Q2. Joining date, salary discussion

Interview questions from similar companies

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 

(9 Questions)

  • Q1. What is CSS3 flexbox
  • Ans. 

    CSS3 flexbox is a layout module that provides a more efficient way to align and distribute space among items in a container.

    • Flexbox allows for flexible and responsive layouts without using floats or positioning.

    • It uses a parent container and child elements with flexible properties to create the layout.

    • Properties include justify-content, align-items, and flex-wrap.

    • Flexbox is supported by all modern browsers.

    • Example:

  • Answered by AI
  • Q2. What is position property in CSS3
  • Ans. 

    Position property in CSS3 is used to set the position of an element relative to its parent or the viewport.

    • The position property can take values like static, relative, absolute, fixed, and sticky.

    • Static is the default value and elements are positioned according to the normal flow of the document.

    • Relative positions the element relative to its normal position.

    • Absolute positions the element relative to its nearest positio...

  • Answered by AI
  • Q3. What is Closure in JS
  • Ans. 

    Closure is a function that has access to its parent scope even after the parent function has returned.

    • Closure allows for private variables and functions in JavaScript.

    • It is created when a function returns another function.

    • The inner function has access to the outer function's variables and parameters.

    • Example: function outer() { let x = 10; return function inner() { console.log(x); } }

    • Example: const innerFunc = outer();

  • Answered by AI
  • Q4. What is Prototype in JS
  • Ans. 

    Prototype is a property of an object that allows adding new properties and methods to an object.

    • Prototype is a blueprint for creating objects

    • It allows inheritance by sharing properties and methods between objects

    • Modifying the prototype affects all objects created from it

    • Prototype chain allows accessing properties and methods of parent objects

    • Example: Array.prototype includes() method

  • Answered by AI
  • Q5. What is Pipe in Angular
  • Ans. 

    Pipe is a feature in Angular that allows transforming data before displaying it in the view.

    • Pipes are used to format and manipulate data in Angular templates.

    • They can be used to filter, sort, and transform data.

    • Pipes can be chained together to perform multiple transformations.

    • Angular provides built-in pipes like DatePipe, CurrencyPipe, and LowerCasePipe.

    • Custom pipes can also be created to meet specific requirements.

  • Answered by AI
  • Q6. What is directive in angular
  • Ans. 

    A directive is a component that adds behavior to an existing element or component in Angular.

    • Directives are used to manipulate the DOM, add event listeners, and create reusable components.

    • There are three types of directives in Angular: component, attribute, and structural.

    • Examples of built-in directives in Angular include ngIf, ngFor, and ngStyle.

    • Custom directives can be created using the @Directive decorator.

  • Answered by AI
  • Q7. What is component in angular
  • Ans. 

    A component in Angular is a reusable piece of UI that consists of HTML, CSS, and TypeScript code.

    • Components are the building blocks of Angular applications.

    • Each component has its own logic and view.

    • Components can be nested within other components.

    • Components can communicate with each other using @Input and @Output decorators.

    • Examples of components include a login form, a navigation menu, and a product list.

  • Answered by AI
  • Q8. What is rxjs observables in nagular
  • Ans. 

    Observables are a way to handle asynchronous data streams in Angular using RxJS library.

    • Observables are similar to promises but can handle multiple values over time.

    • They can be used for handling events, HTTP requests, and other asynchronous operations.

    • Operators can be used to transform, filter, and combine observables.

    • Subscriptions are used to listen to observables and receive data.

    • Example: fetching data from an API us

  • Answered by AI
  • Q9. What is event loop lifecycle
  • Ans. 

    Event loop is a continuous process that runs in the background and handles all the events in the application.

    • Event loop continuously checks for new events in the event queue.

    • It processes each event one by one in a synchronous manner.

    • If an event takes too long to process, it can block the event loop and cause the application to freeze.

    • Event loop can be controlled using setTimeout(), setInterval(), and setImmediate() met...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Perform well, all the best, be breif in all your answers

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Shine and was interviewed before Sep 2022. There were 3 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 - Aptitude Test 

It is very easy. Practice daily on Indiabix

Round 3 - Group Discussion 

I was given 2-3mins yo speak on the topic. It was is Indian Education system needs modification. Be confident while speaking.

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sql related ques mege into, rank,dense rank,queries of joins etc.
  • Q2. Java 8 related ques optional and stream
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to handle exception?
  • Ans. 

    Handle exceptions by using try-catch blocks to gracefully manage errors in code execution.

    • Use try-catch blocks to catch exceptions and handle them appropriately.

    • Throw custom exceptions when necessary to provide more specific error information.

    • Use finally block to execute code that should always run, regardless of whether an exception is thrown.

    • Avoid catching generic exceptions like Exception class, instead catch specif...

  • Answered by AI
  • Q2. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class inherits properties and behaviors of the base class

    • Supports the 'is-a' relationship, where a derived class is a specialized version of the base class

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Round 1 is about basic questions on technology
Round 2 - One-on-one 

(1 Question)

  • Q1. Round is about high level design and data structure questions
Round 3 - Coding Test 

It involves 2 problem solving logical questions

I applied via campus placement at CDAC, Noida and was interviewed in Jan 2022. There were 4 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 - Coding Test 

Best way to prefer java, core java and most imp spring boot because many of companies required spring boot now a days

Round 3 - Technical 

(7 Questions)

  • Q1. What is java is the basic question for everyone
  • Q2. What is difference between path and classpath variables
  • Ans. 

    Path variable is used to locate executable files while classpath variable is used to locate Java classes.

    • Path variable is used by the operating system to locate executable files.

    • Classpath variable is used by Java to locate classes and resources.

    • Path variable is system-specific while classpath variable is Java-specific.

    • Path variable is set by the user while classpath variable is set by the developer.

    • Example of path vari...

  • Answered by AI
  • Q3. What is enum in java
  • Ans. 

    Enum is a special data type in Java used to define a set of constants.

    • Enums are used to represent a fixed number of values that do not change.

    • They are declared using the enum keyword.

    • Each enum constant is an object of the enum type.

    • Enums can have constructors, methods, and fields.

    • Example: enum Color { RED, GREEN, BLUE }

    • Enums can also have values associated with them, like Color.RED(255, 0, 0).

  • Answered by AI
  • Q4. What is 2 phase commit
  • Ans. 

    2 phase commit is a protocol used to ensure distributed transactions are either committed or rolled back.

    • Used in distributed systems where multiple databases are involved in a transaction

    • Ensures all databases either commit or rollback the transaction

    • Involves a coordinator and multiple participants

    • Coordinator sends a prepare message to participants, who respond with either commit or abort

    • If all participants respond with...

  • Answered by AI
  • Q5. They can ask questions on your project
  • Q6. Is java completely object oriented?
  • Ans. 

    Yes, Java is completely object oriented.

    • Java is designed to be completely object oriented.

    • All code in Java is written inside classes and objects.

    • Java supports encapsulation, inheritance, and polymorphism.

    • Java does have some non-object oriented features like primitive data types.

    • However, even these can be treated as objects using wrapper classes.

  • Answered by AI
  • Q7. What is exception in java?
  • Ans. 

    Exception is an event that occurs during the execution of a program and disrupts the normal flow of instructions.

    • Exceptions are objects that are thrown at runtime when an abnormal condition occurs

    • Java provides a set of predefined exceptions that can be used to handle errors

    • Exceptions can be caught and handled using try-catch blocks

    • Unchecked exceptions are those that are not checked at compile-time, while checked except

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. No specific questions they can ask about company only and will talk about package

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best, just be confident, in corporate industry we have to be confident.

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Firstly CGPA cut off was there of 7.00. Then Written Test (Aptitude, Quantitative, Verbal, Reasoning, Technical, 2 Programming questions) by Aspiring Minds. (around 65-75 students).
Written Test was of 126 mins and each section had specific amount of time and some minimum number of questions were compulsory to be attended in each section.
Approximately 1 question had 1 min 15 seconds time. Time limit was there for each section and not for each question. Programming section had 45 mins - 2 questions(not very tough, different questions for all but moderate level only).

General Tips: Be prepared with at least one question to be asked to the interviewer at the end. Highlight networks and if you are interested to work in networks then express that to them.
It was overall a good experience. I was the first to be interviewed and unlike other companies HR and technical interview was held for all the candidates one after the other only and people didn't had to wait whole day for interview to happen. Interview was short i.e around 15-20 mins for each candidate in HR as well as Technical.In HR be prepared for why you want to join ALCATEL? (with a different answer, not a regular one).
Skill Tips: Subject books for Network, OS(Wiley Publication), DBMS etc.
Focus on Networks, OS, C/C++. Try to highlight your projects that you would had done in the field of Networks, Distributed Computing, Hadoop, Big Data. I was asked questions towards networks, about projects, Big Data. Difference between C++ and Java and Python. Which one is better, where, why, etc. Memory Leaks. How we get broadband in our home? I and some of my friends had technical interview and none of us were asked about linked list, tree, queues, Data Structures, but other technical interviewer was asking about them. Must read about the company before attending interview. Must attend PPT to know bout the company.
Skills:
College Name: NIT Surathkal
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to optimise fetching 1 lakh entries from db
  • Ans. 

    Use pagination, indexing, caching, and query optimization to fetch 1 lakh entries efficiently from the database.

    • Implement pagination to fetch data in smaller chunks

    • Create indexes on columns frequently used in queries

    • Use caching to store frequently accessed data

    • Optimize queries by avoiding unnecessary joins and using appropriate indexes

    • Consider using database-specific optimizations like query hints or stored procedures

  • Answered by AI

Gazon Communications Interview FAQs

How to prepare for Gazon Communications Full Stack Developer 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 Gazon Communications. The most common topics and skills that interviewers at Gazon Communications expect are Bootstrap, CSS, HTML, JQuery Mobile and Java.

Tell us how to improve this page.

Interview Questions from Similar Companies

Jio Interview Questions
3.9
 • 1.6k Interviews
Bharti Airtel Interview Questions
4.0
 • 838 Interviews
Vodafone Idea Interview Questions
4.1
 • 554 Interviews
HFCL Limited Interview Questions
4.0
 • 60 Interviews
Dish Network Interview Questions
3.5
 • 28 Interviews
Tcil Interview Questions
4.0
 • 18 Interviews
View all
Network Engineer
27 salaries
unlock blur

₹1.4 L/yr - ₹3.5 L/yr

Associate NOC Engineer
11 salaries
unlock blur

₹1.3 L/yr - ₹3 L/yr

L2 Network Engineer
7 salaries
unlock blur

₹1.2 L/yr - ₹4.5 L/yr

Service Assurance Manager
6 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Senior Network Engineer
6 salaries
unlock blur

₹2.3 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Gazon Communications with

Bharti Airtel

4.0
Compare

Vodafone Idea

4.1
Compare

Jio

3.9
Compare

Tata Communications

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