Upload Button Icon Add office photos

Filter interviews by

IT-Asset Interview Questions and Answers

Updated 5 Sep 2021

9 Interview questions

A Software Developer was asked
Q. What is a constructor?
Ans. 

A constructor is a special method that is used to initialize objects in a class.

  • Constructors have the same name as the class they belong to.

  • They are called automatically when an object is created.

  • They can take parameters to initialize the object's properties.

  • If a class does not have a constructor, a default constructor is created.

  • Constructors can be overloaded to provide multiple ways to initialize an object.

View all Software Developer interview questions
A Software Developer was asked
Q. What is a wrapper class?
Ans. 

Wrapper class is a class that wraps a primitive data type to provide additional functionality.

  • Wrapper classes are used to convert primitive data types into objects.

  • They provide methods to convert between primitive types and objects.

  • Wrapper classes are immutable.

  • Examples include Integer, Double, and Boolean.

View all Software Developer interview questions
A Software Developer was asked
Q. What is the difference between C++ and Java?
Ans. 

C++ is a compiled language with pointers and memory management, while Java is an interpreted language with garbage collection.

  • C++ is faster than Java due to direct memory access.

  • Java is platform-independent, while C++ is platform-dependent.

  • C++ supports multiple inheritance, while Java only supports single inheritance.

  • Java has built-in support for multithreading, while C++ requires external libraries.

  • C++ allows for...

View all Software Developer interview questions
A Software Developer was asked
Q. What is Java?
Ans. 

Java is a high-level, object-oriented programming language used for developing desktop, web, and mobile applications.

  • Java is platform-independent and can run on any operating system

  • It is known for its security features and is widely used in enterprise applications

  • Java code is compiled into bytecode which can be run on a Java Virtual Machine (JVM)

  • Popular frameworks and libraries in Java include Spring, Hibernate, a...

View all Software Developer interview questions
A Software Developer was asked
Q. Why is multiple inheritance not supported in Java?
Ans. 

Java doesn't support multiple inheritance to avoid diamond problem and complexity.

  • Java supports single inheritance to promote simplicity and avoid ambiguity.

  • Multiple inheritance can lead to the diamond problem where a class inherits from two classes with a common parent.

  • Java provides interfaces to achieve multiple inheritance of type without the diamond problem.

  • Example: class A and class B both have a method with ...

View all Software Developer interview questions
A Software Developer was asked
Q. What is polymorphism?
Ans. 

Polymorphism is the ability of an object to take on many forms.

  • Polymorphism allows objects to be treated as instances of their own class or as instances of their parent class.

  • It enables the use of a single interface to represent multiple types of objects.

  • Examples include method overloading, method overriding, and interfaces in Java.

  • Polymorphism is a key concept in object-oriented programming.

View all Software Developer interview questions
A Software Developer was asked
Q. What is inheritance?
Ans. 

Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

  • Inheritance allows code reuse and promotes code organization.

  • The existing class is called the parent or superclass, and the new class is called the child or subclass.

  • The child class inherits all the properties and methods of the parent class, and can also add new properties and metho...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. In a PHP registration form, the second task was to create a database in MySQL and a table named 'registration' with columns: ID (Primary Key, auto-increment), Name, Address, DOB, Phone, and Email. Can you d...
Ans. 

Create a MySQL database and a 'registration' table with specified columns for user data storage.

  • Use the command: CREATE DATABASE registration_db; to create a new database.

  • Create the table with: CREATE TABLE registration (ID INT AUTO_INCREMENT PRIMARY KEY, Name VARCHAR(100), Address VARCHAR(255), DOB DATE, Phone VARCHAR(15), Email VARCHAR(100));

  • Ensure the ID column is set as PRIMARY KEY and AUTO_INCREMENT for uniqu...

View all Software Developer interview questions
A Software Developer was asked
Q. Describe your experience creating a PHP registration form with fields for name, address, phone number, date of birth, and email.
Ans. 

Creating a PHP registration form with essential user fields for data collection and validation.

  • Use HTML to create the form structure with input fields for each required data point.

  • Implement PHP for server-side validation to ensure data integrity (e.g., check if email is valid).

  • Utilize prepared statements to prevent SQL injection when storing data in a database.

  • Include client-side validation using JavaScript for im...

View all Software Developer interview questions

IT-Asset Interview Experiences

1 interview found

I applied via Referral and was interviewed in Aug 2021. There were 5 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. What is Java?
  • Ans. 

    Java is a high-level, object-oriented programming language used for developing desktop, web, and mobile applications.

    • Java is platform-independent and can run on any operating system

    • It is known for its security features and is widely used in enterprise applications

    • Java code is compiled into bytecode which can be run on a Java Virtual Machine (JVM)

    • Popular frameworks and libraries in Java include Spring, Hibernate, and Ap...

  • Answered by AI
  • Q2. I had given one task to make PHP registration form which includes fields like 1. Name, 2.Address, 3.Phone Number, 4.Date of Birth, 5. Email.
  • Ans. 

    Creating a PHP registration form with essential user fields for data collection and validation.

    • Use HTML to create the form structure with input fields for each required data point.

    • Implement PHP for server-side validation to ensure data integrity (e.g., check if email is valid).

    • Utilize prepared statements to prevent SQL injection when storing data in a database.

    • Include client-side validation using JavaScript for immedia...

  • Answered by AI
  • Q3. In same PHP registration form second task was to create a database in MYSQL & create a table named "registration" which includes the following column such as ID(Primary Key, it will be auto increment), Nam...
  • Ans. 

    Create a MySQL database and a 'registration' table with specified columns for user data storage.

    • Use the command: CREATE DATABASE registration_db; to create a new database.

    • Create the table with: CREATE TABLE registration (ID INT AUTO_INCREMENT PRIMARY KEY, Name VARCHAR(100), Address VARCHAR(255), DOB DATE, Phone VARCHAR(15), Email VARCHAR(100));

    • Ensure the ID column is set as PRIMARY KEY and AUTO_INCREMENT for unique ide...

  • Answered by AI
  • Q4. Third task was to add a submit button on registration page and on-click of submit button insert the data into MYSQL database. For all this you need to install XAMPP software application in order to run PHP...
  • Q5. What is the difference between C++ & Java?
  • Ans. 

    C++ is a compiled language with pointers and memory management, while Java is an interpreted language with garbage collection.

    • C++ is faster than Java due to direct memory access.

    • Java is platform-independent, while C++ is platform-dependent.

    • C++ supports multiple inheritance, while Java only supports single inheritance.

    • Java has built-in support for multithreading, while C++ requires external libraries.

    • C++ allows for manu...

  • Answered by AI
  • Q6. What is wrapper class?
  • Ans. 

    Wrapper class is a class that wraps a primitive data type to provide additional functionality.

    • Wrapper classes are used to convert primitive data types into objects.

    • They provide methods to convert between primitive types and objects.

    • Wrapper classes are immutable.

    • Examples include Integer, Double, and Boolean.

  • Answered by AI
  • Q7. What is constructor?
  • Ans. 

    A constructor is a special method that is used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • They can take parameters to initialize the object's properties.

    • If a class does not have a constructor, a default constructor is created.

    • Constructors can be overloaded to provide multiple ways to initialize an object.

  • Answered by AI
  • Q8. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class, and can also add new properties and methods.

    • Fo...

  • Answered by AI
  • Q9. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects to be treated as instances of their own class or as instances of their parent class.

    • It enables the use of a single interface to represent multiple types of objects.

    • Examples include method overloading, method overriding, and interfaces in Java.

    • Polymorphism is a key concept in object-oriented programming.

  • Answered by AI
  • Q10. Why is multiple inheritance not supported in java?
  • Ans. 

    Java doesn't support multiple inheritance to avoid diamond problem and complexity.

    • Java supports single inheritance to promote simplicity and avoid ambiguity.

    • Multiple inheritance can lead to the diamond problem where a class inherits from two classes with a common parent.

    • Java provides interfaces to achieve multiple inheritance of type without the diamond problem.

    • Example: class A and class B both have a method with the s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Same suggestion that it is good for internship in any language you want to do internship. Do the revision nicely about which technology you are giving interview. Other suggestion is please check for reviews or search on google about the company. Check for the location also & you can call them on their number given on their official website.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about IT-Asset?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

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

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying

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

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best
Are these interview questions helpful?

I applied via Approached by Company and was interviewed before May 2018. There were 6 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. This is face to face interview... They are observing our behaviour... Attitude... Etc
  • Q2. Introduce u r self....
  • Ans. 

    I am a dedicated and hardworking individual with a passion for learning and growth.

    • I have a Bachelor's degree in Business Administration from XYZ University.

    • I have 3 years of experience working in marketing and sales roles.

    • I am proficient in Microsoft Office Suite and have strong communication skills.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q3. U r carrier objections
  • Ans. 

    My career objectives focus on continuous growth, contributing to team success, and making a positive impact in my field.

    • Aim to develop expertise in my field, such as becoming a certified project manager.

    • Seek leadership opportunities to guide and mentor junior team members.

    • Aspire to work on innovative projects that challenge my skills and creativity.

    • Desire to contribute to a company's mission, like improving customer sa...

  • Answered by AI
  • Q4. About TCS
  • Q5. Why should u select TCS
  • Ans. 

    TCS is a global leader in IT services with a strong reputation for innovation and client satisfaction.

    • TCS has a proven track record of delivering high-quality services to clients worldwide.

    • TCS offers a wide range of opportunities for career growth and development.

    • TCS values diversity and inclusion, creating a supportive work environment for employees.

    • TCS invests in cutting-edge technologies and training programs to kee...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: Any kind of topic u cn select... Sales, accounts, service

Round: Test
Experience: Aptitude test... Mathematic and problem solving... General knowledge is very important

Round: Telephonic
Experience: This is final round... BH directly interact with us...

General Tips: Be confident... Be clam.... Keep smiling face... That is the way to win
Skills: Communication, Body Language, Leadership, Presentation Skills, Time Management
Duration: <1 week

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

IT-Asset Interview FAQs

What are the top questions asked in IT-Asset interview?

Some of the top questions asked at the IT-Asset interview -

  1. In same PHP registration form second task was to create a database in MYSQL & c...read more
  2. I had given one task to make PHP registration form which includes fields like 1...read more
  3. What is the difference between C++ & Ja...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

IT-Asset Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

2.0

Work-life balance

2.0

Salary

3.0

Job security

3.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
3 salaries
unlock blur

₹1.8 L/yr - ₹7 L/yr

Software Developer
3 salaries
unlock blur

₹1 L/yr - ₹2.4 L/yr

Explore more salaries
Compare IT-Asset with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview