Hot Topics
Accenture Solution
Technical Round
- Question 1
Tell me about your major project.
- Answer
Tell what your major project in college.
- Question 2
What all difficulties you faced during project development?
- Answer
Share the difficulties that you faced while doing the project development.
- Question 3
What all helped you in project development other than google?
- Answer
Tell about the various resources from where you took help to complete the project.
- Question 4
What’s your contribution and plans for your project?
- Answer
Tell about what you did in your project and how can you improve it in future.
- Question 5
What is your favourite coding language and why?
- Answer
Tell about your favourite coding language.
- Question 6
Which new technology did you learn recently?
- Answer
Tell about the technology of which you did a recent course if any.
- Question 7
Which database did you use?
- Answer
Tell the database you used in the backend for your project.
Example: MySQL, MongoDB, etc
- Question 8
What problems faced did you face in your project and how did you resolve it?
- Answer
Tell about the problems you faced while doing your project.
Suppose you did a full stack project you can tell that the API you used wasn’t available on the internet so you had to make your own API using a certain technology.
- Question 9
Which technology you have worked on?
- Answer
Tell about the technology which you have used to do your project or in which you have got hands on experience.
- Question 10
What are the features of C language?
- Answer
Features of C language are:
Simple and efficient
Fast as it is a compiled language
Robust library and functions to help beginners write code easily.
It checks the time to execute the program during the compilation and not during run time.
- Question 11
Difference between C++ and JAVA
- Answer
C++ | Java |
1. C++ is a platform dependent language. | Java is a platform independent language. |
2. C++ supports multiple inheritance. | Java does not support multiple inheritance but it can be achieved using interfaces. |
3. C++ supports operator overloading. | Java does not support operator overloading. |
4. C++ supports go to statement. | Java does not support go to statement. |
5. We have both call by value and call by reference in C++. | Java does not support call by reference but supports call by value. |
- Question 12
What is polymorphism?
- Answer
Polymorphism is briefly described as “one interface, many implementation”. Polymorphism is a characteristic of being able to assign a different meaning or usage to something in different contexts specifically, to allow an entity such as a variable, a function, or an object to have more than one form. There are two types of polymorphism:
Compile time polymorphism
Run time polymorphism