Upload Button Icon Add office photos

Filter interviews by

ICF Next Interview Questions and Answers

Updated 24 Sep 2024

ICF Next Interview Experiences

Popular Designations

2 interviews found

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

I applied via Job Portal and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on AEM
  • Q2. Questions on Selenium and TestNG
Round 2 - HR 

(1 Question)

  • Q1. General discussion on the project

Associate Quality Analyst Interview Questions asked at other Companies

Q1. What is manual testing
View answer (1)

I applied via LinkedIn and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Most of the questions were on basic concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the basics strong. Would be able to clear easily

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview questions from similar companies

Intern Interview Questions & Answers

BYJU'S user image Anonymous

posted on 23 Jul 2021

I applied via Indeed and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are okay with traveling
  • Q2. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was a discussion with the manager

Interview Questionnaire 

8 Questions

  • Q1. A nimbu paani wala spends all of his daily income on his daily expenditure except only as much as would enable him to conduct equal business on the next day. He now wants to aim at starting to save for the...
  • Ans. 

    Advise the nimbu paani wala on how to start saving for the future.

    • Encourage him to set a savings goal and create a budget to achieve it.

    • Suggest he start small by saving a small percentage of his daily income.

    • Recommend he explore investment options to grow his savings over time.

    • Remind him to continue setting aside enough money for his daily expenses.

    • Provide resources or education on financial literacy to help him make i

  • Answered by AI
  • Q2. An IT sector multinational wants to expand its business into more countries. Suggest a strategy. This was the question given in the VC round by the Partner. It was followed by a lot of numerical and qualit...
  • Ans. 

    To expand into more countries, the IT sector multinational can adopt a market entry strategy that includes market research, partnerships, localization, and scalability.

    • Conduct thorough market research to identify potential countries for expansion

    • Establish strategic partnerships with local companies to leverage their knowledge and networks

    • Adapt products and services to meet the specific needs and preferences of each tar...

  • Answered by AI
  • Q3. An IT sector company wants to increase the number of BPOs in India. Devise a metric that will help it rank cities according to their favourability to host this BPO
  • Ans. 

    A metric to rank Indian cities for BPOs

    • Consider factors like availability of skilled workforce, infrastructure, cost of living, and government policies

    • Weight each factor based on its importance to the company

    • Collect data on each factor for different cities and assign scores

    • Rank cities based on their total score

    • Examples of factors: number of universities, quality of transportation, cost of office space, tax incentives

    • Re...

  • Answered by AI
  • Q4. The supply chain head in an auto company in India is frustrated about manufacturing stopping frequently because of parts not being readily available at the assembly line and comes to you for help. What cou...
  • Ans. 

    The probable reasons for manufacturing stoppages due to parts unavailability in an auto company in India and suggested solutions.

    • Probable reasons: supply chain disruptions, inventory management issues, quality control problems, lack of communication with suppliers

    • Investigate by analyzing historical data, conducting supplier audits, implementing real-time tracking systems

    • Solutions: improve forecasting accuracy, establis...

  • Answered by AI
  • Q5. How many airplanes are flying in the Indian sky at the moment?
  • Ans. 

    The exact number of airplanes flying in the Indian sky at the moment is not available.

    • The number of airplanes flying in the Indian sky changes constantly.

    • It depends on factors such as time of day, weather conditions, and airline schedules.

    • However, on average, there are around 2,000 flights in the Indian airspace at any given time.

    • This number includes both domestic and international flights.

    • The Indian aviation industry ...

  • Answered by AI
  • Q6. How many years will it take the Delhi Metro to break even?
  • Ans. 

    The Delhi Metro is expected to break even in 2025.

    • The Delhi Metro has been expanding rapidly and has seen a steady increase in ridership.

    • The metro has been able to generate revenue through advertising and property development.

    • The government has also provided financial support to the metro.

    • Based on current projections, the Delhi Metro is expected to break even in 2025.

  • Answered by AI
  • Q7. Why not MBA?
  • Q8. Interview-4

Interview Preparation Tips

Round: Interview
Experience: The interviewer also said: "It seems like you are more interested in finance and BCG is only the second option. We don’t like being the second option." All these questions required some delicate handling.

Round: Interview
Experience: This was a sort of stress interview because the interviewer seemed disinterested and dissatisfied with everything i said and kept on demanding for more while impressing that whatever I am coming up with was really of no significance.
Tips: What worked in my favor was I dint get flustered by his attitude, kept smiling and working at the problem objectively. When I would come to the end of one line of thinking and would have no more answers to his “What next” I would frankly tell him that and ask him in return for more suggestions. It resulted in him complimenting my way of thinking at the end and saying that I was one of the best and most practical candidates that he had interviewed that day.

Round: Interview
Experience: 1. Both the above questions were the part of one interview.
2. The interviewer didn't want me to solve the case fully in either instance. He just wanted to see my structure and evaluate my thinking process.

Round: Interview
Experience: Almost all my interviews went well with BCG except the last VC one, because by then I was complete drained out and could hardly think. I also did some minor silly mistakes in a couple of the smaller cases while dealing with numbers, but otherwise everyone seemed to appreciate my structuring of the cases. Some of the interviewers also delved into the HR side frequently.

College Name: IIT KANPUR

Interview Questionnaire 

11 Questions

  • Q1. Print all nodes at a distance k from a given node in binary tree?
  • Q2. RandN function : which generates random number in [1,2,3..N] with equal probability. Given rand5, write a code for rand7 using rand5
  • Ans. 

    Code for rand7 using rand5 function

    • Use rand5 twice to generate a number in [1,25] with equal probability

    • If the number is greater than 21, discard and try again

    • Otherwise, return (number mod 7) + 1

  • Answered by AI
  • Q3. Puzzle: Using all(8,8,3,3) and only operators(*,/,-,+), make 24
  • Q4. How do you implement LRU cache?
  • Ans. 

    LRU cache is implemented using a doubly linked list and a hash map.

    • Create a doubly linked list to keep track of the order of elements in the cache.

    • Create a hash map to store the key-value pairs of the cache.

    • When a new element is added, check if the cache is full. If it is, remove the least recently used element from the linked list and the hash map.

    • When an element is accessed, move it to the front of the linked list to...

  • Answered by AI
  • Q5. Your current project in Company? A lot of questions from CV? Discussion went on for about 15 minutes?
  • Q6. Then had a lot of questions around java script and java. About different design patterns and web services
  • Q7. A lot of questions around java, collections frameworks, multi threading and so on. (This took a good 25-30 minutes )
  • Q8. A strategy question. It would be asked depending on which team you are being interviewed for.Mine was some apple seller problem. Here knowledge of real world scenario helps. Advice is to observe things aro...
  • Q9. Write down function to select pivot element randomly in Quick Sort
  • Ans. 

    Function to randomly select pivot element in Quick Sort

    • Generate a random index within the range of the array

    • Return the element at the randomly generated index as the pivot

  • Answered by AI
  • Q10. He asked me what is a data structure and why do we use one. Explained him. He asked some real life example of stack and queue. All I could gave him was programming examples but when he insisted on real li...
  • Q11. As we were talking very much on each question. He felt like talking more and from tech he went around for some biggest learning from a mistake/biggest achievement of life kind of questions. There were oth...

Interview Preparation Tips

General Tips: I recently interviewed with Goldman Sachs, and had 4 rounds of interview with them at their campus in Bangalore.
Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I was interviewed in Apr 2017.

Interview Questionnaire 

15 Questions

  • Q1. What are you currently doing in your job profile?
  • Ans. 

    I am currently responsible for designing, implementing, and maintaining system infrastructure for our organization.

    • Designing system architecture to meet business requirements

    • Implementing new technologies and solutions to improve system performance

    • Maintaining system infrastructure to ensure high availability and security

    • Troubleshooting and resolving system issues as they arise

  • Answered by AI
  • Q2. What is system configuration?
  • Ans. 

    System configuration refers to the process of setting up and arranging hardware and software components to work together efficiently.

    • System configuration involves setting up hardware and software components to work together efficiently

    • It includes configuring network settings, installing drivers, and setting up user accounts

    • Examples of system configuration tools include Microsoft System Center Configuration Manager and ...

  • Answered by AI
  • Q3. What is the disadvantage or drawback in S7 controller?
  • Ans. 

    The S7 controller has limited scalability and flexibility compared to other controllers.

    • Limited number of I/O points

    • Limited memory capacity

    • Limited processing power

    • Limited communication options

    • Limited support for advanced programming languages

    • Limited compatibility with third-party devices

    • Limited ability to handle complex control algorithms

    • Limited fault diagnostics capabilities

  • Answered by AI
  • Q4. Same question but in depth.
  • Q5. Like draw system configuration
  • Q6. Explain topologies used/protocol etc
  • Ans. 

    Topologies and protocols used in networking

    • Topologies: Bus, Star, Ring, Mesh, Hybrid

    • Protocols: TCP/IP, HTTP, FTP, SMTP, DNS

    • Ethernet, Wi-Fi, Bluetooth are common networking technologies

    • Network security protocols: SSL, TLS, IPSec

    • Routing protocols: OSPF, BGP, RIP

  • Answered by AI
  • Q7. Tell me about your self?
  • Ans. 

    I am a dedicated and experienced System Engineer with a strong background in network infrastructure and troubleshooting.

    • Over 5 years of experience in designing, implementing, and maintaining complex systems

    • Proficient in network protocols such as TCP/IP, DNS, DHCP

    • Skilled in troubleshooting hardware and software issues

    • Certified in Cisco CCNA and CompTIA Network+

    • Strong communication and problem-solving skills

  • Answered by AI
  • Q8. Family condition and persons?
  • Ans. 

    I come from a close-knit family of four, including my parents and younger sister.

    • Family of four: parents and younger sister

    • Close-knit family

    • Supportive family members

    • Regular family gatherings and activities

  • Answered by AI
  • Q9. Why you want to join us?
  • Ans. 

    I am passionate about utilizing my technical skills to contribute to innovative projects and collaborate with a talented team.

    • Passionate about technology and innovation

    • Excited to work with a talented team

    • Looking for opportunities to utilize technical skills

  • Answered by AI
  • Q10. Are you sure this profile matches to your career goal.
  • Ans. 

    Yes, this profile aligns with my career goal as a System Engineer.

    • My career goal is to work in the field of system engineering

    • I have relevant education and experience in system engineering

    • I am passionate about technology and problem-solving, which are key aspects of system engineering

  • Answered by AI
  • Q11. Why you want to switch?
  • Ans. 

    I want to switch to explore new challenges and opportunities for growth in my career.

    • Seeking new challenges to enhance my skills and knowledge

    • Opportunity for career growth and advancement

    • Interested in working with new technologies or industries

  • Answered by AI
  • Q12. What is that thing which attract you for this job?
  • Ans. 

    The opportunity to work on complex systems and solve challenging problems in a dynamic environment.

    • Opportunity to work on complex systems

    • Solving challenging problems

    • Dynamic work environment

  • Answered by AI
  • Q13. What is the reason you left your current job profile?,because my profile was Automation engineer.
  • Q14. Your family baackground?
  • Ans. 

    My family background is diverse and includes a mix of professions and interests.

    • My parents are both engineers, which inspired me to pursue a career in the same field.

    • I have siblings who are in the medical field, providing a different perspective on healthcare.

    • We have a strong emphasis on education and continuous learning in our family.

    • Family gatherings often involve discussions about technology, science, and current ev...

  • Answered by AI
  • Q15. What is that quality in you which suits this job?
  • Ans. 

    My problem-solving skills and attention to detail make me a perfect fit for this role.

    • Strong problem-solving skills

    • Attention to detail

    • Ability to work well under pressure

    • Experience with troubleshooting complex systems

    • Strong communication skills

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: First of all i applied through india's most famous job portal naukri.com.
This opening comes through a consultant [ pacific IT solutions ],first my resume was shortlisted by this consultant,after that they contact me on my mobile number verified with naukri.com,for avalibility and interest for change and tell me that they forward ,y resume to siemens HR and if they will shortlist you then you will get a mail for F2F round from them.
Tips: Special tips for this round are:-
Always update your profile daily and try to follow up more n more consultant/recruiter.

Round: Technical Interview
Experience: I reached interview location on time,then i submit my resume in reception ,after 30 min my interview starts with all these question given above,then they told me to wait outside.
Tips: 1)Be confident and in formal look.
2)What ever is written in your resume you must be familier with this.
3)Dont put all the certification/courses/skill in your resume.try to put only those things which you know vwry well.
4)Make your resume as per job demand.Heighlight your those skills which matches to job.
5)Dont be over smart if you know the answer of given question.

Round: Technical Interview
Experience: After Clearing my first round ,interviewer call me for second round on the same day,after fiew hour,the interviewer is very frank,they ask same questions and they were little bit checking my interest also towards job.
Tips: In this round the interviewer in more experienced so for him it is very easy to catch you knolwdge level.So be confident,try to answer with little bit diplomatic,and try to explain with practical experiances as musch as possible.

Round: Behavioural Interview
Experience: This Round name is Managerial round.In this round they checked my interest towards job.my family condition and dependent person.
Tips: Be confident
Listen question carefully because this round is completely diplomatic.
Try to answer smartly and diplomatic.
And try to win the trust of interviewer.

Round: HR Interview
Experience: After clearing managerial round.hr called me for this,HR is very frank and make a very comfort atmosphere at the time of interview.little bit discussing about jonb profile and then discuss salary,and finall shaking hand said.if you will get selected then we will inform you before xyz day.
I after 4 days i get a call from hr about my selection with a offer letter.
Tips: Be frank
But Not over confident

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with some questions from Programmable Logic Controllers or PLC followed by some basic questions from Intel 8051 Microcontroller.

  • Q1. What are the general functions of a Programmable Logic Controller (PLC)?
  • Ans. 

    PLCs are used to control machinery and automate processes in industrial settings.

    • Monitoring inputs from sensors

    • Executing control algorithms

    • Communicating with other devices

    • Logging data for analysis

    • Implementing safety functions

    • Examples: controlling a conveyor belt, regulating temperature in a furnace

  • Answered by AI
  • Q2. Can you describe the basic elements in Ladder logic programming?
  • Ans. 

    Ladder logic programming is a graphical programming language used for PLCs, with basic elements like contacts, coils, timers, and counters.

    • Ladder logic consists of rungs, which are made up of inputs (contacts) and outputs (coils).

    • Contacts represent conditions that must be met for the output to be energized.

    • Coils are outputs that are energized when the conditions of the contacts are met.

    • Timers and counters are used to c...

  • Answered by AI
  • Q3. What are the different types of PLC inputs and outputs?
  • Ans. 

    PLC inputs and outputs include digital inputs, digital outputs, analog inputs, and analog outputs.

    • Digital inputs: used for receiving binary signals (on/off, high/low). Examples: push buttons, limit switches.

    • Digital outputs: used for sending binary signals. Examples: relays, solenoids.

    • Analog inputs: used for receiving continuous signals. Examples: temperature sensors, pressure transducers.

    • Analog outputs: used for sendin...

  • Answered by AI
  • Q4. What are the advantages and disadvantages of the S7 controller?
  • Ans. 

    The S7 controller offers high performance and flexibility but can be complex to program and expensive.

    • Advantages: high performance, flexibility, scalability

    • Disadvantages: complexity in programming, expensive

    • Example: S7-1200 offers fast processing speeds and can be easily expanded with additional modules

    • Example: Programming for S7 controllers may require specialized training and expertise

  • Answered by AI
  • Q5. Can you explain the time stamp available in the S7-200 PLC?
  • Ans. 

    The time stamp in S7-200 PLC is used to record the time when a specific event occurs.

    • Time stamp is a feature in S7-200 PLC that records the time when a specific event happens.

    • It helps in tracking the sequence of events and troubleshooting issues.

    • Time stamp can be used to monitor the performance of the PLC system.

    • Example: A time stamp can be recorded when a sensor detects a change in temperature.

    • Example: Time stamp can ...

  • Answered by AI
  • Q6. Could you explain Jnc in the context of microcontrollers?
  • Ans. 

    Jnc stands for Jump and Call in the context of microcontrollers.

    • Jnc is an instruction used in microcontrollers to jump to a specified address if the carry flag is not set.

    • It is commonly used in conditional branching operations in microcontroller programming.

    • For example, in 8051 microcontroller assembly language, the instruction JNC label will jump to the specified label if the carry flag is not set.

  • Answered by AI
  • Q7. What are the types of interrupts in the Intel 8051 microcontroller?
  • Ans. 

    The types of interrupts in the Intel 8051 microcontroller include external hardware interrupts, timer interrupts, and serial communication interrupts.

    • External hardware interrupts are triggered by external devices connected to the microcontroller.

    • Timer interrupts are generated by the internal timers of the microcontroller.

    • Serial communication interrupts occur when data is received or transmitted through the serial port.

    • ...

  • Answered by AI
Round 2 - Face to Face 

(6 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round was heavily inclined towards Operating System and Computer Networks and the interviewer asked questions revolving around the fundamentals of the subject.

  • Q1. What is a bootstrap program in an operating system?
  • Ans. 

    A bootstrap program is a small program that initializes the operating system on a computer.

    • Bootstrap program is stored in ROM or EEPROM and is executed when the computer is powered on.

    • It loads the operating system kernel into memory and starts its execution.

    • Bootstrap program is responsible for setting up the initial state of the operating system.

    • Examples include BIOS (Basic Input/Output System) in PCs and UEFI (Unified

  • Answered by AI
  • Q2. Can you explain demand paging?
  • Ans. 

    Demand paging is a memory management scheme where pages are only brought into memory when they are demanded by the program.

    • Pages are loaded into memory only when needed

    • Helps in reducing the amount of physical memory required

    • Improves overall system performance by allowing more processes to run simultaneously

    • Commonly used in virtual memory systems

  • Answered by AI
  • Q3. Can you explain any 5 essential UNIX commands?
  • Ans. 

    Five essential UNIX commands are ls, cd, pwd, mkdir, and rm.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • mkdir - make directory

    • rm - remove files or directories

  • Answered by AI
  • Q4. What are the different types of VPN?
  • Ans. 

    Different types of VPN include remote access VPN, site-to-site VPN, and client-to-site VPN.

    • Remote access VPN allows individual users to connect to a private network from a remote location.

    • Site-to-site VPN connects entire networks together over the internet.

    • Client-to-site VPN allows individual devices to connect to a private network.

    • Examples include OpenVPN, IPsec, and SSL VPN.

  • Answered by AI
  • Q5. Can you describe the OSI Reference Model?
  • Ans. 

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

    • The OSI Reference Model stands for Open Systems Interconnection Reference Model.

    • It consists of seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has specific functions and communicates with the adjacent layers for data trans...

  • Answered by AI
  • Q6. Can you explain the TCP and UDP protocols?
  • Ans. 

    TCP is a connection-oriented protocol that ensures reliable data delivery, while UDP is a connectionless protocol that focuses on speed.

    • TCP stands for Transmission Control Protocol and is used for reliable data transmission.

    • TCP establishes a connection between sender and receiver before data transfer.

    • TCP uses sequencing and acknowledgment to ensure data integrity.

    • UDP stands for User Datagram Protocol and is used for fa...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my
role.

  • Q1. What is something about you that is not included in your resume?

Interview Preparation Tips

Eligibility criteriaAbove 1 years of experienceSiemens interview preparation:Topics to prepare for the interview - Operating Systems, Computer Architecture, Microcontollers and Microprocessors, Computer Networks, AptitudeTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jun 2017.

Interview Questionnaire 

1 Question

  • Q1. Questions related to core java, advanced java, programs,

Interview Preparation Tips

Round: Technical + HR Interview
Experience: Previous work experience scenarios based questions

Consultant Interview Questions & Answers

Siemens user image Ujjwal Mukherjee

posted on 12 Dec 2015

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. A windmill manufacturer in Scandinavia wants to expand but has no labor pool for recruitment and is constrained by it. (Case Type- Expansion / Growth)
  • Ans. 

    The windmill manufacturer in Scandinavia is facing labor pool shortage and needs to expand.

    • The manufacturer can consider outsourcing labor from other countries.

    • They can also invest in training programs to develop local talent.

    • The manufacturer can offer incentives to attract skilled workers to relocate.

    • They can also consider automating some of their processes to reduce the need for labor.

    • The manufacturer can partner wit...

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: Broke it into attracting required labor at the site or outsourcing Within outsourcing talked about factors by which I would identify countries for this task.
In the end was just asked to recommend 2 industries from where I could use skills of existing engineers and I came up with other power generation industries and aerospace for blade design
Tips: What was good: PI, Involving the interviewer in case discussion What could be better: Quicker solution of case, he gave me a lot of hints and nudges for the solution After the final interview, I was also asked to rank each performance to check self-awareness. Overall, SMC checks a lot on cultural awareness, fit in their culture and personality traits.


Skills:
College Name: Indian School Of Business (ISB)

Consultant Interview Questions & Answers

Siemens user image Ujjwal Mukherjee

posted on 12 Dec 2015

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. What are the factors you would consider when building a plant? (Case Type- General business acumen)

Interview Preparation Tips

Round: Case Study Interview
Experience: Recommended Approach
Broke it into financial and non-financial and said ROI seems to be the best metric in financial. Went ahead after getting her buy-in and looked at various cost components in detail like labor, overheads etc. Throughout the interview, I was asked to go deeper and even when I was asked to move horizontally to other cost components, there was no closure of an issue. In the end, was just asked to summarize whatever we had done so far with 2 concluding statements

PI questions
Totally work and CV related cross questioning Why did you do this ELP and what did you learn Why SMC now This was a kind of stress interview where questions would start before I finished my answer. The same tone carried on in the case where scoping questions were frowned upon
Tips: What was good: Cool under pressure, confident What could be better: Take the hint if the interviewer is not giving data and lay out a structure and then ask questions explaining their relevance

Skills:
College Name: Indian School Of Business (ISB)

ICF Next Interview FAQs

How many rounds are there in ICF Next interview?
ICF Next interview process usually has 2 rounds. The most common rounds in the ICF Next interview process are Technical and HR.
How to prepare for ICF Next 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 ICF Next. The most common topics and skills that interviewers at ICF Next expect are Javascript, JQuery, HTML, CSS and Continuous Integration.
What are the top questions asked in ICF Next interview?

Some of the top questions asked at the ICF Next interview -

  1. Most of the questions were on basic concept...read more
  2. Questions on Selenium and Tes...read more
  3. Questions on ...read more

Tell us how to improve this page.

ICF Next Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Asian Paints Interview Questions
4.0
 • 642 Interviews
Vodafone Idea Interview Questions
4.1
 • 551 Interviews
EPAM Systems Interview Questions
3.7
 • 533 Interviews
ZS Interview Questions
3.4
 • 449 Interviews
Tata Projects Interview Questions
4.2
 • 425 Interviews
Siemens Interview Questions
4.1
 • 417 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Synechron Interview Questions
3.5
 • 362 Interviews
View all

ICF Next Reviews and Ratings

based on 21 reviews

4.2/5

Rating in categories

4.3

Skill development

4.3

Work-life balance

4.1

Salary

4.3

Job security

4.3

Company culture

4.1

Promotions

4.4

Work satisfaction

Explore 21 Reviews and Ratings
Consultant
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ICF Next with

BYJU'S

3.1
Compare

Vodafone Idea

4.1
Compare

Tata Projects

4.2
Compare

Indiamart Intermesh

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