Upload Button Icon Add office photos

FireCompass

Compare button icon Compare button icon Compare

Filter interviews by

FireCompass Interview Questions and Answers

Updated 17 Feb 2025
Popular Designations

9 Interview questions

A Security Analyst Intern was asked 5mo ago
Q. Write a simple C++ program demonstrating call by value and call by reference.
Ans. 

Call by value passes a copy of the actual parameter, while Call by reference passes the address of the actual parameter.

  • In Call by value, changes made to the formal parameter do not affect the actual parameter.

  • In Call by reference, changes made to the formal parameter affect the actual parameter.

  • Example for Call by value: void swap(int x, int y) { int temp = x; x = y; y = temp; }

  • Example for Call by reference: void...

View all Security Analyst Intern interview questions
A Security Analyst Intern was asked 5mo ago
Q. Why is the * displayed on the tracert command on the terminal?
Ans. 

The * on the tracert command indicates a timeout for a particular hop in the network path.

  • The * symbol is displayed when a particular hop in the network path does not respond within the specified time limit.

  • This could be due to network congestion, firewall blocking ICMP packets, or the target host being offline.

  • The tracert command sends ICMP packets to each router in the path to a destination, and if a router does...

View all Security Analyst Intern interview questions
A Security Analyst Intern was asked 5mo ago
Q. How do you find certificates used on websites?
Ans. 

Research and analyze certificates used on websites

  • Use tools like SSL Labs to analyze SSL certificates

  • Look for certificate details like issuer, expiration date, and encryption strength

  • Check for any potential vulnerabilities or misconfigurations

  • Verify if the certificates are properly installed and configured

View all Security Analyst Intern interview questions
A Security Analyst Intern was asked 5mo ago
Q. Besides tracert and ping, what other methods can you use to find the IP address of a website?
Ans. 

One way to find the IP address of a website is by using the nslookup command in the command prompt.

  • Open the command prompt on your computer

  • Type 'nslookup' followed by the website URL (e.g. nslookup www.google.com)

  • The IP address of the website will be displayed in the 'Address' section

View all Security Analyst Intern interview questions
A Security Analyst Intern was asked 5mo ago
Q. Explain the usage of Nmap with all the -help options.
Ans. 

nmap is a powerful network scanning tool used for discovering hosts and services on a network.

  • nmap -h: Display a brief help message

  • nmap -H: Display a detailed help message

  • nmap --help: Display all available options and usage information

View all Security Analyst Intern interview questions
A Security Analyst Intern was asked 5mo ago
Q. Explain the OSI model and the workings of each layer.
Ans. 

The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

  • Layer 1 - Physical layer: Deals with physical connections and transmission of raw data over a physical medium (e.g. cables)

  • Layer 2 - Data Link layer: Responsible for node-to-node communication, error detection, and flow control (e.g. Ethernet switches)

  • Layer 3 - Network layer: Manages...

View all Security Analyst Intern interview questions
Be interview-ready. Browse the most asked HR questions.
illustration image
A Section Engineer was asked 11mo ago
Q. How would you find the origin IP of a website?
Ans. 

To find the origin IP of a website, you can use tools like ping, nslookup, or online IP lookup services.

  • Use the 'ping' command in the command prompt or terminal to get the IP address of the website.

  • Use 'nslookup' command to query DNS servers for the IP address of the website.

  • Use online IP lookup services like 'iplocation.net' or 'whatismyipaddress.com' to find the origin IP of a website.

View all Section Engineer interview questions
Are these interview questions helpful?
A Security Analyst Intern was asked 5mo ago
Q. The harvester tool
Ans. 

The harvester tool is a data collection tool used for gathering information from various sources.

  • The harvester tool can be used for collecting email addresses, usernames, and other information from websites and social media platforms.

  • It is commonly used by security analysts to gather intelligence on potential threats or vulnerabilities.

  • The tool can also be used for reconnaissance purposes to gather information abo...

View all Security Analyst Intern interview questions
A Security Analyst Intern was asked 5mo ago
Q. Nmap with specific commands
Ans. 

Nmap is a powerful network scanning tool used to discover hosts and services on a network.

  • Use 'nmap -sP <target>' to perform a ping scan to check which hosts are online

  • Use 'nmap -sS <target>' to perform a TCP SYN scan to identify open ports

  • Use 'nmap -A <target>' to enable OS detection, version detection, script scanning, and traceroute

  • Use 'nmap -O <target>' to perform OS detection on the ta...

View all Security Analyst Intern interview questions

FireCompass Interview Experiences

2 interviews found

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

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(14 Questions)

  • Q1. Brief about CIA
  • Ans. 

    CIA stands for Confidentiality, Integrity, and Availability, the three core principles of information security.

    • Confidentiality: Ensuring that information is only accessible to those who are authorized to view it.

    • Integrity: Ensuring that information is accurate and has not been tampered with.

    • Availability: Ensuring that information is accessible when needed by authorized users.

    • Examples: Encrypting sensitive data to maint...

  • Answered by AI
  • Q2. Vulnerability, Risk and Threat
  • Q3. Nmap with specific commands
  • Ans. 

    Nmap is a powerful network scanning tool used to discover hosts and services on a network.

    • Use 'nmap -sP <target>' to perform a ping scan to check which hosts are online

    • Use 'nmap -sS <target>' to perform a TCP SYN scan to identify open ports

    • Use 'nmap -A <target>' to enable OS detection, version detection, script scanning, and traceroute

    • Use 'nmap -O <target>' to perform OS detection on the target ...

  • Answered by AI
  • Q4. Learn all about the DNS records with all A, and AAAA types under them.
  • Q5. Code the Call by value and Call by reference in a simple C++ program
  • Ans. 

    Call by value passes a copy of the actual parameter, while Call by reference passes the address of the actual parameter.

    • In Call by value, changes made to the formal parameter do not affect the actual parameter.

    • In Call by reference, changes made to the formal parameter affect the actual parameter.

    • Example for Call by value: void swap(int x, int y) { int temp = x; x = y; y = temp; }

    • Example for Call by reference: void swap...

  • Answered by AI
  • Q6. How do you find the IP address of the website since tracert, and ping is common so, find another one.
  • Q7. Why is the * displayed on the tracert command on the terminal
  • Ans. 

    The * on the tracert command indicates a timeout for a particular hop in the network path.

    • The * symbol is displayed when a particular hop in the network path does not respond within the specified time limit.

    • This could be due to network congestion, firewall blocking ICMP packets, or the target host being offline.

    • The tracert command sends ICMP packets to each router in the path to a destination, and if a router does not ...

  • Answered by AI
  • Q8. The harvester tool
  • Ans. 

    The harvester tool is a data collection tool used for gathering information from various sources.

    • The harvester tool can be used for collecting email addresses, usernames, and other information from websites and social media platforms.

    • It is commonly used by security analysts to gather intelligence on potential threats or vulnerabilities.

    • The tool can also be used for reconnaissance purposes to gather information about a ...

  • Answered by AI
  • Q9. Nmap with all the -help otion
  • Q10. OSI model with all the layer workings
  • Ans. 

    The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

    • Layer 1 - Physical layer: Deals with physical connections and transmission of raw data over a physical medium (e.g. cables)

    • Layer 2 - Data Link layer: Responsible for node-to-node communication, error detection, and flow control (e.g. Ethernet switches)

    • Layer 3 - Network layer: Manages rout...

  • Answered by AI
  • Q11. What are encoding, hashing, and encryption?
  • Q12. Prepare for the question on the F12 tab on the chrome.
  • Q13. Certificates used on their websites and find them
  • Ans. 

    Research and analyze certificates used on websites

    • Use tools like SSL Labs to analyze SSL certificates

    • Look for certificate details like issuer, expiration date, and encryption strength

    • Check for any potential vulnerabilities or misconfigurations

    • Verify if the certificates are properly installed and configured

  • Answered by AI
  • Q14. A little about the WordPress tech with all the endpoints.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a 2-hour interview with the open camera with the screenshare. So, be prepared to sit comfortably

Read your resume and you should be clear with the resume, there are a lot more questions.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. How would find the origin ip of a website?

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
1w
a client servicing executive
FeedCard Image
Got a question about FireCompass?
Ask anonymously on communities.

Interview questions from similar companies

I applied via LinkedIn and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions were from SQL, Python, Statistics & Business Case Studies/Metrics in the form of 4-5 rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - So Key Takeaway is You have to be good with your Technical Knowledge (SQL Expert, Python, Overall Stats Knowledge) and That is not really enough. What differs a Business Analyst from other Developers/Statisticians etc. is Business acumen, Problem Solving Skills etc. To have a Business Knowledge and Understanding such that you find the problems/solutions/ Metrics and then solve them using the Technology.

I applied via Recruitment Consultant and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions are about fresh department only

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know about fresh department

I appeared for an interview before Apr 2021.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

It was in the mid day and since I applied for a Frontend role the discussion was majorly around data structure and bit of Javascript.
The interviewer was helping and good listener.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was more of a in depth round on the framework I'm working on and problem solving.

  • Q1. What is the event loop and what is its significance?
  • Ans. 

    The event loop is a mechanism in programming that allows for asynchronous execution of code.

    • The event loop is a key component in JavaScript's runtime environment, responsible for handling asynchronous operations.

    • It continuously checks the call stack for any pending tasks and executes them in a non-blocking manner.

    • The event loop ensures that the program remains responsive by allowing other code to run while waiting for ...

  • Answered by AI
  • Q2. Can you provide examples of output-based questions in JavaScript that utilize browser APIs?
  • Ans. 

    Output-based questions in JavaScript using browser APIs

    • Example 1: Write a script that uses the Geolocation API to display the user's current location on a map

    • Example 2: Create a program that uses the Web Audio API to play a sound when a button is clicked

    • Example 3: Develop a web page that uses the Canvas API to draw a simple animation

  • Answered by AI
  • Q3. How would you design a system to support localization in a mobile app?
  • Ans. 

    Designing a system to support localization in a mobile app

    • Use resource files to store localized strings for different languages

    • Implement a language selection feature for users to choose their preferred language

    • Utilize localization libraries or frameworks to streamline the process

    • Consider cultural differences when localizing content, such as date formats and currency symbols

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 75 Minutes
Round difficulty - Hard

It was more of a fitment/managerial round.
Didn't had any coding questions, but was asked more on approaches and optimisations.
Discussions on the project you have worked on.

  • Q1. You need to find the fastest 3 horses out of a group, given that you can only race 5 horses at a time. How would you approach this problem?
  • Ans. 

    To find the fastest 3 horses out of a group with 5 horses racing at a time, we can use a tournament style approach.

    • Divide the horses into groups of 5 and race them against each other. This will give you the fastest horse in each group.

    • Take the winners from each group and race them against each other. The top 3 horses in this final race will be the fastest 3 overall.

    • Keep track of the results and compare the timings to d...

  • Answered by AI
  • Q2. How do you debug the root cause of lag on a screen?
  • Ans. 

    To debug lag on a screen, analyze code, check for memory leaks, optimize rendering, and use profiling tools.

    • Analyze code to identify any inefficient algorithms or operations causing lag.

    • Check for memory leaks that could be impacting performance.

    • Optimize rendering by reducing the number of draw calls, optimizing shaders, and minimizing overdraw.

    • Use profiling tools like Xcode Instruments or Android Profiler to identify p...

  • Answered by AI
  • Q3. Can you explain the architecture of the app you have recently worked on?
  • Ans. 

    The app I recently worked on is a social media platform for sharing photos and connecting with friends.

    • The app follows a client-server architecture, with the client being the mobile app and the server handling data storage and processing.

    • The client side is built using React Native for cross-platform compatibility.

    • The server side is implemented using Node.js with a MongoDB database for storing user data and photos.

    • The a...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaCars24 interview preparation:Topics to prepare for the interview - Data Structures Algorithms, Javascript, System DesignTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Get your JS fundamentals right (if applying for a Frontend role, https://javascript.info/ is a good start)
Tip 2 : Apart from preparing data structures, practise on the communication skills as well (prepare your introduction, be a good listener and on spot improvisation plays key roles)

Application resume tips for other job seekers

Tip 1 : highlight projects related to the job profile in your resume and mention what was your contribution in them precisely in 1/2 lines.
Tip 2 : Include URLs to applications/projects that you have build and your achievements/blog (if any)

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Team handling

Team Lead Interview Questions & Answers

Udaan user image Amanpreet Sigh

posted on 27 Jun 2022

I applied via LinkedIn and was interviewed before Jun 2021. 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 - Aptitude Test 

General knowledge about logistics

Round 3 - Group Discussion 

Logistics how to manage team

Round 4 - One-on-one 

(1 Question)

  • Q1. Logistics lm fm tms rto rvp
  • Ans. 

    These are acronyms related to supply chain management and transportation.

    • Logistics - the process of planning, implementing, and controlling the movement of goods from point of origin to point of consumption

    • LM - Logistics Manager, responsible for overseeing the logistics process

    • FM - Freight Manager, responsible for managing the transportation of goods

    • TMS - Transportation Management System, software used to manage transp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Look 5s and basic questions of logistics

I applied via Walk-in and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Job profile
  • Q2. Describe yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Was nice and friendly atmosphere

I applied via LinkedIn and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How can you reduce the delivery time of the order?
  • Ans. 

    Reducing delivery time can be achieved by optimizing the supply chain, improving communication, and automating processes.

    • Analyze the supply chain and identify bottlenecks

    • Implement automation tools to streamline processes

    • Improve communication between departments and with customers

    • Use data analytics to forecast demand and plan accordingly

    • Consider outsourcing or partnering with third-party logistics providers

    • Invest in tec...

  • Answered by AI
  • Q2. Questions based on Case Studies

Interview Preparation Tips

Interview preparation tips for other job seekers - The process consisted of two rounds. First was the business analysis kind of round which included the questions like how can you reduce the delivery time of the order? The second round was technical round where the person asked the questions on SQL and Excel

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

Interview Questionnaire 

1 Question

  • Q1. How can you understand the supply of restaurant in a particular area of a city ?
  • Ans. 

    To understand the supply of restaurants in a particular area of a city, we can use various methods.

    • Collect data from online directories like Yelp, Zomato, etc.

    • Conduct surveys to gather information about the number of restaurants in the area.

    • Analyze the population density and demographics of the area to estimate the demand for restaurants.

    • Check the number of restaurant permits issued by the local government.

    • Use GIS mapp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand any city's demographics for instance. Take most busy road and assume that 70% supply will be on food -tech (MArket Standard). Open Sw / Zo and see the supply available in that area in peak time. There can be more than one way to solve for these question

FireCompass Interview FAQs

How many rounds are there in FireCompass interview?
FireCompass interview process usually has 1 rounds. The most common rounds in the FireCompass interview process are One-on-one Round.
How to prepare for FireCompass 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 FireCompass. The most common topics and skills that interviewers at FireCompass expect are Penetration Testing, Python, Strategic Alliances, API Testing and Web Application Testing.
What are the top questions asked in FireCompass interview?

Some of the top questions asked at the FireCompass interview -

  1. how do you find the IP address of the website since tracert, and ping is common...read more
  2. Why is the * displayed on the tracert command on the termi...read more
  3. What are encoding, hashing, and encrypti...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from other companies in Internet Industry

Coinbase Interview Questions
3.3
 • 27 Interviews
Porter Interview Questions
3.8
 • 93 Interviews
Booking Holdings Interview Questions
2.3
 • 4 Interviews
AdamsBridge Global Interview Questions
3.7
 • 21 Interviews
Licious Interview Questions
3.6
 • 69 Interviews
Park Plus Interview Questions
2.9
 • 49 Interviews
Practo Interview Questions
3.1
 • 77 Interviews
BigBasket Interview Questions
3.9
 • 409 Interviews
Rippling Interview Questions
2.6
 • 42 Interviews
Credit Saison Interview Questions
4.1
 • 9 Interviews
View all

FireCompass Reviews and Ratings

based on 12 reviews

2.6/5

Rating in categories

2.3

Skill development

2.5

Work-life balance

2.4

Salary

2.5

Job security

2.9

Company culture

2.3

Promotions

2.4

Work satisfaction

Explore 12 Reviews and Ratings
Alliance Manager

Mumbai,

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Alliance Manager

Mumbai,

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Sr . Security Analyst

Bangalore / Bengaluru

2-3 Yrs

Not Disclosed

Explore more jobs
Security Analyst
9 salaries
unlock blur

₹5.4 L/yr - ₹12.9 L/yr

Software Engineer
7 salaries
unlock blur

₹9.4 L/yr - ₹17.5 L/yr

Sales Manager
4 salaries
unlock blur

₹18.3 L/yr - ₹25 L/yr

Senior Security Analyst
4 salaries
unlock blur

₹15 L/yr - ₹16 L/yr

Jr Security Analyst
4 salaries
unlock blur

₹8 L/yr - ₹13.1 L/yr

Explore more salaries
Compare FireCompass with other companies in Internet Industry

JUSPAY

3.3
Compare

Fabheads Automation

4.3
Compare

Dial Health

3.8
Compare

Ocado

3.6
Compare
write
Share an Interview