Upload Button Icon Add office photos

Filter interviews by

Anju Software Interview Questions and Answers

Updated 12 Jul 2022

Anju Software Interview Experiences

Popular Designations

2 interviews found

I applied via Company Website and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain TCP/ip protocol suites
  • Ans. 

    TCP/IP protocol suites are a set of communication protocols used for connecting network devices.

    • TCP/IP is a suite of protocols that includes TCP, IP, UDP, ICMP, ARP, and others.

    • TCP is responsible for establishing a reliable connection between two devices.

    • IP is responsible for routing data packets between devices.

    • UDP is a connectionless protocol used for sending small amounts of data.

    • ICMP is used for error reporting and...

  • Answered by AI
  • Q2. Explain NAT, PAT, Static routing and dynamic routing
  • Ans. 

    NAT is used to translate private IP addresses to public IP addresses. PAT is a type of NAT that uses port numbers. Static routing uses manually configured routes. Dynamic routing uses protocols to automatically update routing tables.

    • NAT translates private IP addresses to public IP addresses

    • PAT is a type of NAT that uses port numbers to map multiple private IP addresses to a single public IP address

    • Static routing uses m...

  • Answered by AI
  • Q3. Explain SNMP and how it is used in real world with use cases
  • Ans. 

    SNMP is a protocol used for network management and monitoring.

    • SNMP allows network devices to be monitored and managed remotely

    • It uses a manager-agent model where the manager sends requests to agents for information

    • SNMP is used for monitoring network performance, identifying and resolving issues, and collecting data for analysis

    • Examples of SNMP use cases include monitoring bandwidth usage, tracking device availability,

  • Answered by AI
  • Q4. Explain VLAN and types of VLan
  • Ans. 

    VLAN is a logical grouping of devices on a network, based on function, department, or application.

    • VLANs improve network security and performance by separating traffic.

    • Types of VLAN include default VLAN, data VLAN, voice VLAN, management VLAN, and guest VLAN.

    • Default VLAN is VLAN 1 and is used for all untagged traffic.

    • Data VLAN is used for user data traffic.

    • Voice VLAN is used for VoIP traffic.

    • Management VLAN is used for ...

  • Answered by AI
  • Q5. Explain STP and why it is used
  • Ans. 

    STP stands for Spanning Tree Protocol. It is used to prevent loops in a network and ensure redundancy.

    • STP is a layer 2 protocol used in Ethernet networks

    • It prevents loops by blocking redundant paths

    • It selects a root bridge and calculates the shortest path to it

    • It can be configured with different priorities and timers

    • Examples of STP variants include RSTP and MSTP

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be thorough on JD and be prepared for questions that come on day to day. Be confident in your approach

Skills evaluated in this interview

Senior Network Engineer Interview Questions asked at other Companies

Q1. What are the different typesof the network cables used in the network?
View answer (3)

I applied via Referral and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Cisco ASA firewalls, DMZ policy, Natting of public ip to private ip, Windows security features, Active directory questions like dns zones, sccm patching

Interview Preparation Tips

Interview preparation tips for other job seekers - All companies are pushing to cloud environment. Its better you know all upcoming features companies are implementing in networks like NGFirewall's and Azure AD

Network Administrator Interview Questions asked at other Companies

Q1. Architecture of Firewalls worked, Previous role & responsibilities, What all things need to checked if enduser faces issues while accessing website or server, What if there is latency Any exceptional cases handled during firewall troubl... read more
View answer (1)

Jobs at Anju Software

View all

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Prime number function using C
  • Ans. 

    A function in C to check if a number is prime or not

    • Create a function that takes an integer as input

    • Check if the input number is divisible by any number from 2 to its square root

    • If it is not divisible by any number, return true (prime), else return false (not prime)

  • Answered by AI
  • Q2. Write some basic codes for Manipulation in array
  • Ans. 

    Basic codes for array manipulation including sorting, searching, and filtering.

    • Use built-in functions like sort() for sorting arrays.

    • Implement algorithms like binary search for searching in arrays.

    • Utilize filter() method for filtering arrays based on specific criteria.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Keep calm and make sure you mentally prepared.

Skills evaluated in this interview

I applied via Other and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic C language question like what is pointer ,Array,structure,Call by reference, Difference between union and structure. Some programming question are prime number,factorial,fabonacci series,strings etc

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good first of all learn every basic programming question and some times it also depend on interviewer

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1) What is volatile? 2) What is constant? 3) Can we use volatile and const at a time?4) What is ISR how it works?
  • Ans. 

    Answers to questions related to software engineering concepts.

    • Volatile is a keyword used to indicate that a variable's value can be changed unexpectedly.

    • Constant is a keyword used to indicate that a variable's value cannot be changed once it is assigned.

    • Volatile and const can be used together to indicate that a variable's value cannot be changed and that it may change unexpectedly.

    • ISR stands for Interrupt Service Routi...

  • Answered by AI
  • Q2. What is pointer? Explain dangling pointer, null pointer, void pointer.
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. Dangling, null, and void pointers are types of pointers.

    • Dangling pointer: a pointer that points to a memory location that has been deallocated or freed

    • Null pointer: a pointer that does not point to any memory location

    • Void pointer: a pointer that has no specific data type and can point to any data type

  • Answered by AI
  • Q3. Storage classes explain all the storage classes in c.
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to access global variables across multiple files

  • Answered by AI
  • Q4. Compilation stages.
  • Q5. Projects done at previous company with clear explanation.
  • Q6. CAN, SPI, I2C, UART differences.
  • Q7. Explain CAN data frame.
  • Ans. 

    CAN data frame is a message format used in Controller Area Network (CAN) protocol.

    • CAN data frame consists of 7 fields: Start of Frame (SOF), Arbitration ID, Control Bits, Data Length Code (DLC), Data Field, Cyclic Redundancy Check (CRC), and End of Frame (EOF).

    • The Arbitration ID field is used to identify the message priority and the source of the message.

    • The Data Field can contain up to 8 bytes of data.

    • The CRC field is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through whatever things you have kept on your resume. Go through the project. Practice C as much as possible most of the questions will be asked on C programming.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Online coding test having basic problems and some aptitude problem.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Interviewer will ask opps and 2 basic coding problem 2 aptitude problem if you mention any technology in resume then ask about technology and projects
  • Q2. What is opps ?
  • Ans. 

    OOPs stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, polymorphism, and abstraction are key principles of OOPs.

    • Examples of OOPs languages include Java, C++, and Python.

  • Answered by AI
  • Q3. What is singleton class ?
  • Ans. 

    A singleton class is a class that can only have one instance created and provides a global point of access to that instance.

    • Singleton classes are often used for logging, caching, database connections, and thread pools.

    • They typically have a private constructor to prevent instantiation from other classes.

    • They provide a static method to access the single instance, which is created if it doesn't exist yet.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Surya Software Systems Software Developer interview:
  • Opps
  • DSA
Interview preparation tips for other job seekers - Focus on learning

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I appeared for an interview in May 2024.

Round 1 - Aptitude Test 

Totally there were 15 questions

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

I applied via Campus Placement and was interviewed before Jul 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Aptitude Test 

Logical and Analytical Reasoning

Round 3 - Coding Test 

General Coding Test using any coding language of your choice

Round 4 - Technical 

(3 Questions)

  • Q1. General Aptitude and coding question
  • Q2. Puzzles and logical reasoning will be asked
  • Q3. They may ask you to write code

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Jun 2023. 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 - Aptitude Test 

It has include logical ,reasoning question. Aptitude questions are include mcq type question.

Round 3 - Group Discussion 

Firstly introduce yourself then HR take the one subject then selected candidate discuss on that subject. Subject related talking positive and negative point. Then who candidate speak better these are select in next round.

Interview Preparation Tips

Topics to prepare for Surya Software Systems Software Developer interview:
  • Basic
Interview preparation tips for other job seekers - A job seekers should collect information about the company beforehand. Then do apply these job.

Anju Software Interview FAQs

How many rounds are there in Anju Software interview?
Anju Software interview process usually has 1 rounds. The most common rounds in the Anju Software interview process are Technical.
How to prepare for Anju Software 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 Anju Software. The most common topics and skills that interviewers at Anju Software expect are Life Sciences, SQL, Javascript, Troubleshooting and JQuery.
What are the top questions asked in Anju Software interview?

Some of the top questions asked at the Anju Software interview -

  1. Explain SNMP and how it is used in real world with use ca...read more
  2. Explain NAT, PAT, Static routing and dynamic rout...read more
  3. Explain STP and why it is u...read more

Tell us how to improve this page.

Anju Software Reviews and Ratings

based on 15 reviews

3.2/5

Rating in categories

2.6

Skill development

4.1

Work-life balance

3.6

Salary

2.2

Job security

3.1

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 15 Reviews and Ratings
Quality Assurance Analyst I

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Explore more jobs
QA Analyst
12 salaries
unlock blur

₹4.2 L/yr - ₹13.9 L/yr

Senior Software Developer
7 salaries
unlock blur

₹17 L/yr - ₹28.5 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹15 L/yr - ₹28 L/yr

Software Engineer
4 salaries
unlock blur

₹7.5 L/yr - ₹21 L/yr

Data Analyst
4 salaries
unlock blur

₹3.2 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Anju Software with

Yalamanchili Software Exports

3.3
Compare

ScoreMe Solutions

4.3
Compare

Xtancia Technosoft

4.0
Compare

Global Edge Software

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