Upload Button Icon Add office photos

Filter interviews by

I-Four Transformation IT Executive Interview Questions and Answers

Updated 13 Apr 2024

I-Four Transformation IT Executive Interview Experiences

1 interview found

IT Executive Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
-
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 

(4 Questions)

  • Q1. Hardware knowledge network and troubleshooting
  • Q2. Hardware troubleshooting
  • Q3. Troubleshooting and it assets health
  • Q4. Pc not power on checking power cables

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. It's was basic testing questios, specific to selenium and Java.
  • Q2. Explain framework
  • Ans. 

    A framework is a set of guidelines, standards, and tools used to develop software applications.

    • A framework provides a structure for developers to build upon

    • It includes pre-written code and libraries to simplify development

    • Frameworks can be specific to a programming language or platform

    • Examples include React for web development and TensorFlow for machine learning

  • Answered by AI
  • Q3. Basic java programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, basically on manual testing, Selenium and Java

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is second level cache?How to implement second level cache?How to optimize sql query?what are solid principles?
  • Ans. 

    Second level cache is a caching mechanism used to improve performance by storing frequently accessed data in memory.

    • Second level cache is implemented at the application level and can be configured using frameworks like Hibernate.

    • To optimize SQL queries, one can use indexes, avoid using SELECT *, and use JOINs instead of subqueries.

    • SOLID principles are a set of design principles for writing maintainable and scalable cod...

  • Answered by AI
  • Q2. Mostly FAQ but somewhat in depth?
  • Q3. How to deploy application in aws?
  • Ans. 

    To deploy an application in AWS, you need to create an EC2 instance, configure security groups, install necessary software, and upload your application code.

    • Create an EC2 instance in the desired region and select the appropriate instance type

    • Configure security groups to allow traffic to and from the instance

    • Install necessary software and dependencies on the instance

    • Upload your application code to the instance

    • Start the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic faq but in depth,Interview level is easy to medium.They will ask only theory .No practical algorithm test.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Performa in 3par
  • Ans. 

    Performa is a performance monitoring tool for HPE 3PAR storage arrays.

    • Performa provides real-time monitoring of storage performance metrics.

    • It helps identify performance bottlenecks and optimize storage performance.

    • Performa can generate reports and alerts based on user-defined thresholds.

    • It can also be used for capacity planning and trend analysis.

    • Examples of performance metrics monitored by Performa include IOPS, late

  • Answered by AI
  • Q2. San zoning

Interview Preparation Tips

Interview preparation tips for other job seekers - Brushup basics.

Interview Questionnaire 

2 Questions

  • Q1. About technology on which i had worked. What do you know about Design Pattern and explain them? Window Services and Web APIs.
  • Q2. MVC Architecture and Web APIs security?

Interview Preparation Tips

Interview preparation tips for other job seekers - I attended two technical round that was good in terms of technology and knowledge. Then one Managerial round which was taken by General Manager. Total interview process taken 1 month time, I must say process are slow due to approval and all.

I applied via Company Website and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is my longterm and short-term goals.
  • Ans. My short-term is to become an expert in solving queries And long term is to become valuable employee in an organisation and managing a team, also helping new recruits to learn the work.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent and friendly-nature interview

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Batch apex (Important), Governor limits, events, lightning and components bundle, Relationship in salesforce, how are account and contact related, If accounts gets deleted will the contact also get deleted...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare well before interview, join before 10 mins they hate delay, prepare notes have a topic in each page, and description, syntax, use cases and example in the page, if space is there put imp notes or latest interview questions, Batch apex, governor limits, types of error, lightning, lwc, aura, @future annotation, rest api, soap api, test starting ways, events, how to handle events including third party. brush up all these

I applied via Campus Placement and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. THERE WERE 4 ROUNDS.1-APTITUDE 2-PSEUDO TEST 2-TECHNICAL INTERVIEW 4-HR ROUND
  • Q2. 1ST ROUND WAS VERY SIMPLE 2ND WAS LITTLE COMPLEX 3RD&4TH ROUND WAS VERY SIMPLE

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE BASIC PROGRAMMING CONCEPTS AND APTITUDE

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Where do we use BigInteger in java ?
  • Ans. 

    BigInteger is used for mathematical operations involving very large integers in Java.

    • BigInteger is used when the range of values supported by primitive data types like int and long is not sufficient.

    • It is commonly used in cryptography and security applications.

    • It provides methods for arithmetic, bitwise, and logical operations on large integers.

    • Example: calculating factorial of a large number, generating large prime nu

  • Answered by AI
  • Q2. Merge Sort Algo code in java
  • Ans. 

    Merge Sort Algo code in java

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Software Engineer interview:
  • Core Java
  • DSA
Interview preparation tips for other job seekers - Not a very good interview experience. I was asked 2-3 questions only. Not satisfied with interview process.

Skills evaluated in this interview

I-Four Transformation Interview FAQs

How many rounds are there in I-Four Transformation IT Executive interview?
I-Four Transformation interview process usually has 2 rounds. The most common rounds in the I-Four Transformation interview process are Resume Shortlist and Technical.
How to prepare for I-Four Transformation IT Executive 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 I-Four Transformation. The most common topics and skills that interviewers at I-Four Transformation expect are Customer Handling, Field Engineering, SQL, Hardware Installation and Hardware Support.
What are the top questions asked in I-Four Transformation IT Executive interview?

Some of the top questions asked at the I-Four Transformation IT Executive interview -

  1. Hardware knowledge network and troubleshoot...read more
  2. Pc not power on checking power cab...read more
  3. Troubleshooting and it assets hea...read more

Tell us how to improve this page.

I-Four Transformation IT Executive Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
I-Four Transformation IT Executive Salary
based on 39 salaries
₹2 L/yr - ₹3.6 L/yr
16% less than the average IT Executive Salary in India
View more details

I-Four Transformation IT Executive Reviews and Ratings

based on 12 reviews

3.5/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.3

Salary

3.0

Job security

3.2

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 12 Reviews and Ratings
IT Executive
39 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Executive Accountant
7 salaries
unlock blur

₹1.9 L/yr - ₹2.7 L/yr

Senior IT Executive
6 salaries
unlock blur

₹3.2 L/yr - ₹7 L/yr

Assistant Manager
5 salaries
unlock blur

₹4.6 L/yr - ₹7.8 L/yr

IT Executive L2
4 salaries
unlock blur

₹3 L/yr - ₹3.6 L/yr

Explore more salaries
Compare I-Four Transformation with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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