Premium Employer

i

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

Infoblox Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 115 Reviews

Filter interviews by

Infoblox Servicenow Developer Interview Questions, Process, and Tips

Updated 25 Apr 2024

Infoblox Servicenow Developer Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Can we use current.update() in BR?
  • Ans. 

    No, current.update() cannot be used in Business Rules (BR).

    • current.update() is not supported in Business Rules as it can lead to infinite loops.

    • Use current.setValue() or current.setAbortAction(true) instead in Business Rules.

    • Example: current.setValue('state', 2);

  • Answered by AI
  • Q2. What is cascading variables?
  • Ans. 

    Cascading variables are variables that are dependent on other variables and change dynamically based on the values of those variables.

    • Cascading variables are commonly used in forms to show or hide certain fields based on the selection of other fields.

    • They help in creating dynamic and interactive forms that adapt to user input.

    • For example, in a form for selecting a country, the list of states or provinces available for ...

  • Answered by AI
  • Q3. How many types of conditions are there in a workflow?
  • Ans. 

    There are two types of conditions in a workflow: condition builder and script condition.

    • Condition builder allows for creating conditions using a visual interface

    • Script condition allows for writing conditions using scripting languages like JavaScript

  • Answered by AI
  • Q4. Lifecycle of problem management?
  • Ans. 

    Problem management lifecycle involves identification, logging, categorization, prioritization, investigation, diagnosis, resolution, and closure of problems.

    • Identification of a problem

    • Logging the problem in a system

    • Categorizing the problem based on impact and urgency

    • Prioritizing the problem for resolution

    • Investigating the root cause of the problem

    • Diagnosing the problem and finding a solution

    • Resolving the problem and im...

  • Answered by AI
  • Q5. Types of change? And explain each.
  • Ans. 

    Types of change include standard, normal, emergency, and major. Each type has different levels of impact and urgency.

    • Standard change: Pre-approved, low-risk changes that follow a documented process.

    • Normal change: Changes that are not standard but do not require immediate implementation.

    • Emergency change: Changes that must be implemented immediately to resolve a critical issue.

    • Major change: High-impact changes that requi

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(6 Questions)

  • Q1. Can we call future method from batch class
  • Ans. 

    Yes, future methods can be called from a batch class in Salesforce.

    • Future methods can be called from batch classes to perform asynchronous processing.

    • This can be useful for offloading long-running tasks to future methods to avoid hitting governor limits.

    • Example: Calling a future method from a batch class to update records in Salesforce asynchronously.

  • Answered by AI
  • Q2. What's the use of @track decorator. Is it mandatory to explicitly use it? If yes, for which use case?
  • Ans. 

    The @track decorator in Salesforce is used to track changes to a property in a Lightning web component.

    • Used to make a property reactive and trigger re-renders when its value changes

    • Not mandatory but recommended for properties that need to be reactive

    • Use @track when you want changes to a property to be reflected in the UI

  • Answered by AI
  • Q3. When does APEX CPU Limit Exceeded error happens. What's the best practice to avoid getting this error?
  • Ans. 

    APEX CPU Limit Exceeded error happens when code consumes too much CPU time. Best practices include optimizing code, reducing loops, and using asynchronous processing.

    • Avoid using nested loops and optimize code for better performance

    • Use asynchronous processing like @future or Queueable to offload CPU intensive tasks

    • Limit the use of SOQL queries inside loops to reduce CPU consumption

  • Answered by AI
  • Q4. When does Mixed DML Exception occurs?
  • Ans. 

    Mixed DML Exception occurs when DML operations are performed on setup and non-setup objects in a single transaction.

    • Occurs when DML operations are performed on both setup and non-setup objects in a single transaction

    • Setup objects include User, Profile, PermissionSet, etc.

    • Non-setup objects include custom objects, standard objects like Account, Contact, etc.

  • Answered by AI
  • Q5. Debug the following code: var a=10; function abc() { console.log(a); var a=2; } abc();
  • Ans. 

    The code will output 'undefined' because variable 'a' is hoisted within the function.

    • Variable 'a' is hoisted to the top of the function scope, so when 'console.log(a)' is called, 'a' is undefined.

    • To fix this, move the declaration of 'var a=2;' above the 'console.log(a);' statement.

  • Answered by AI
  • Q6. Write a SOQL query to fetch the values of description field from the Account. Why does "the description field cannot be filtered in the query call"?
  • Ans. 

    SOQL query to fetch description field from Account and reason for inability to filter

    • SOQL query: SELECT Description FROM Account

    • Description field is not filterable because it is a long text field

    • Long text fields cannot be filtered in SOQL queries

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude,reasoning,verbal,C language,Java,C++

Round 2 - Technical 

(2 Questions)

  • Q1. What is interface in JAVA
  • Q2. Explain OOPS in JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn

Round 1 - Technical 

(1 Question)

  • Q1. OOPs Concepts, Fibonacci program
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How to create restfull api
  • Ans. 

    To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

    • Define endpoints for different resources (e.g. /users, /products)

    • Use HTTP methods (GET, POST, PUT, DELETE) for CRUD operations

    • Handle requests and responses in JSON format

    • Follow REST principles like statelessness, uniform interface, and client-server architecture

  • Answered by AI
  • Q2. How to do pagination in jpa
  • Ans. 

    Pagination in JPA allows fetching a subset of results from a query.

    • Use the setFirstResult() method to set the starting index of the results to retrieve

    • Use the setMaxResults() method to set the maximum number of results to retrieve

    • Combine setFirstResult() and setMaxResults() to implement pagination

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Oop concept, Multithread, String

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for sql as well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project based backend and frontend
  • Q2. How to connect to backend
  • Ans. 

    To connect to the backend, you can use APIs, database connections, or web services.

    • Use APIs to send and receive data between the frontend and backend

    • Establish database connections to retrieve and store data

    • Utilize web services for communication between different systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for project

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They asked from all the concepts wer have covered till now in Engineering.

Round 2 - Technical 

(2 Questions)

  • Q1. Not applicable to this
  • Q2. Not applicable to this one
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

How to reverse linked list.

Round 2 - Technical 

(2 Questions)

  • Q1. What selection sort.
  • Q2. What is dynamic memory allocation.
  • Ans. 

    Dynamic memory allocation is the process of allocating memory during program execution.

    • Allows programs to request memory at runtime

    • Helps in efficient memory management

    • Commonly used in languages like C and C++

    • Example: using malloc() function in C to allocate memory for an array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Infoblox Interview FAQs

How many rounds are there in Infoblox Servicenow Developer interview?
Infoblox interview process usually has 1 rounds. The most common rounds in the Infoblox interview process are One-on-one Round.
How to prepare for Infoblox Servicenow 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 Infoblox. The most common topics and skills that interviewers at Infoblox expect are Application Development, Auditing, Change Management, Process automation and Python.
What are the top questions asked in Infoblox Servicenow Developer interview?

Some of the top questions asked at the Infoblox Servicenow Developer interview -

  1. How many types of conditions are there in a workfl...read more
  2. Can we use current.update() in ...read more
  3. Types of change? And explain ea...read more

Tell us how to improve this page.

Join Infoblox Infoblox is the company that unites networking and security

Interview Questions from Similar Companies

Cisco Interview Questions
4.2
 • 390 Interviews
VMware Software Interview Questions
4.4
 • 152 Interviews
Apisero Interview Questions
4.3
 • 72 Interviews
TestingXperts Interview Questions
4.1
 • 38 Interviews
Stefanini Interview Questions
3.0
 • 33 Interviews
TA Digital Interview Questions
4.0
 • 32 Interviews
NTT Data Interview Questions
3.9
 • 30 Interviews
View all
Technical Support Engineer
57 salaries
unlock blur

₹4.5 L/yr - ₹9.2 L/yr

Software Engineer
45 salaries
unlock blur

₹7 L/yr - ₹21 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹19.5 L/yr - ₹37 L/yr

Enterprise Technical Support Engineer
32 salaries
unlock blur

₹6.1 L/yr - ₹10.2 L/yr

Business Operations Analyst
20 salaries
unlock blur

₹4.7 L/yr - ₹15.6 L/yr

Explore more salaries
Compare Infoblox with

Palo Alto Networks

3.8
Compare

F5 Networks

3.8
Compare

Cisco

4.2
Compare

Juniper Networks

4.2
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