i
Noovosoft
Filter interviews by
I applied via Campus Placement and was interviewed before Oct 2023. There were 2 interview rounds.
Basic DSA and SQL questions
ThreadPool is a collection of threads that can be used to execute tasks concurrently.
ThreadPool helps in managing and reusing a pool of threads to improve performance and efficiency.
It allows for parallel execution of multiple tasks without the need to create new threads every time.
ThreadPool can be configured with a specific number of threads to control resource usage.
Example: In a web server, ThreadPool can be used t...
I was interviewed in Jan 2025.
5 questions based on string and Arrays
I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.
Contains questions that test all your skills that are required to be a good software developer.
I applied via Campus Placement and was interviewed in Apr 2023. There were 4 interview rounds.
Simple DSA questions
Simple Array, String, HashMap questions
Noovosoft interview questions for popular designations
Top trending discussions
I applied via Referral and was interviewed before Sep 2019. There were 4 interview rounds.
Yes, I have done several innovative proposals and works.
Developed a new marketing strategy for a startup which increased their revenue by 50%
Designed a new user interface for a mobile app which improved user engagement by 30%
Proposed a new project management system for a company which reduced project completion time by 20%
Created a new training program for employees which improved their productivity by 25%
Yes, I have fought with my friends over small misunderstandings. We resolved it by talking it out and apologizing.
I have fought with my friends over small misunderstandings
We resolved it by talking it out and apologizing
It's important to communicate and understand each other's perspectives
In 5 years, I see myself as a successful professional with a leadership role in my field.
Leading a team of professionals
Contributing to the growth of the organization
Continuing to learn and develop new skills
Mentoring and guiding junior colleagues
Establishing myself as an expert in my field
I enjoy reading, hiking, and trying new recipes in my leisure time.
Reading books from different genres
Hiking in nearby trails and exploring nature
Cooking and experimenting with new recipes
Attending cultural events and festivals
Playing board games with friends and family
List of Indian IT companies
Tata Consultancy Services
Infosys
Wipro
HCL Technologies
Tech Mahindra
Mindtree
Larsen & Toubro Infotech
Mphasis
Hexaware Technologies
Persistent Systems
Zensar Technologies
Cyient
NIIT Technologies
KPIT Technologies
Tata Technologies
IGATE
Polaris Consulting & Services
Syntel
Genpact
Capgemini India
Accenture is a global professional services firm that provides consulting, technology, and outsourcing services.
Founded in 1989 and headquartered in Dublin, Ireland
Operates in more than 120 countries
Offers services in strategy, consulting, digital, technology, and operations
Clients include Fortune Global 500 companies
Has over 500,000 employees worldwide
Accenture is a global leader in consulting, technology and outsourcing services.
Accenture has a strong reputation for delivering innovative solutions to clients across various industries.
The company offers a diverse range of career opportunities and invests in employee development.
Accenture's commitment to sustainability and social responsibility aligns with my personal values.
I am impressed by Accenture's focus on div...
I used to see CNN for news updates.
I prefer CNN for its unbiased reporting.
I also watch local news channels for regional updates.
The gold rate today varies depending on the location and currency. Please specify the location and currency for an accurate answer.
Gold rate varies by location and currency
Check with local jeweler or online sources for accurate rates
Factors such as demand, supply, and global economic conditions affect gold rates
Yes, I am willing to work for night shift.
I am comfortable working during night hours
I understand the importance of maintaining a healthy work-life balance
I have prior experience working night shifts and can adjust my schedule accordingly
It depends on the specifics of the bond being requested.
I would need more information about the bond, such as the amount and terms.
If it is a reasonable request and aligns with my career goals, I may consider it.
However, if the bond is too restrictive or not in my best interest, I may decline.
Ultimately, it would depend on the details of the bond and how it would impact my career.
I prefer to work in a collaborative and supportive environment that values creativity and innovation.
I enjoy working with a team that shares ideas and works towards a common goal
I appreciate a workplace that encourages experimentation and taking risks
I value a company culture that prioritizes work-life balance and employee well-being
getch() is a function in C that reads a single character from the keyboard without echoing it.
getch() is defined in the
It is commonly used to read single characters for menu selection or password input.
The character read by getch() is not displayed on the screen.
getch() is a blocking function, meaning it waits for user input before proceeding.
Example: char ch = getch();
Polymorphism is the ability of an object to take on many forms. In Java, it is achieved through method overriding and interfaces.
Polymorphism allows objects of different classes to be treated as if they are of the same class.
Method overriding is when a subclass provides its own implementation of a method that is already defined in its superclass.
Interfaces allow for polymorphism by defining a set of methods that a clas...
POST and GET are HTTP methods used to send data to a server. POST is used to send data in the request body while GET sends data in the URL.
POST is more secure as it doesn't expose data in the URL
GET has a limit on the amount of data that can be sent
POST is used for submitting forms, uploading files, etc.
GET is used for fetching data from the server
Examples: POST - submitting a login form, GET - fetching search results
Windows OS is a proprietary operating system developed by Microsoft while Ubuntu is a free and open-source operating system based on Linux.
Windows OS is more widely used in desktops and laptops while Ubuntu is popular among developers and servers.
Windows OS has a graphical user interface (GUI) while Ubuntu can be used with or without a GUI.
Windows OS has a larger selection of software and games available while Ubuntu h...
64-bit architecture allows for larger memory addressing and faster processing speeds.
64-bit architecture can address more memory than 32-bit architecture
64-bit architecture can perform more calculations per clock cycle
64-bit architecture is required for certain software applications, such as video editing or scientific simulations
Sorting is the process of arranging data in a particular order.
Sorting is used to organize data for easier access and retrieval.
There are various sorting algorithms such as bubble sort, insertion sort, quicksort, etc.
Sorting can be done in ascending or descending order.
Examples of sorting include sorting a list of names alphabetically or sorting a list of numbers in numerical order.
Heap sorting is a comparison-based sorting algorithm that divides the input into a sorted and an unsorted region, while insertion sorting builds the final sorted array one item at a time.
Heap sorting has a worst-case time complexity of O(n log n), while insertion sorting has a worst-case time complexity of O(n^2)
Heap sorting is not an in-place sorting algorithm, while insertion sorting is
Heap sorting is more efficient ...
Type casting is the process of converting a variable from one data type to another.
It is also known as type conversion.
It can be done implicitly or explicitly.
Explicit type casting involves the use of casting operators.
Examples include converting an integer to a string or a float to an integer.
Type casting can lead to loss of data or precision.
Inheritance is a mechanism in OOP where a new class is derived from an existing class.
Single Inheritance: A derived class inherits from a single base class.
Multiple Inheritance: A derived class inherits from multiple base classes.
Multilevel Inheritance: A derived class is created from another derived class.
Hierarchical Inheritance: Multiple derived classes inherit from a single base class.
Hybrid Inheritance: Combinatio
The source code for doubly linked list is a data structure that contains nodes with pointers to the previous and next nodes.
Declare a node struct with data, prev, and next pointers
Create a head and tail pointer to the first and last nodes
Implement functions to add, remove, and traverse nodes
Software development life cycle (SDLC) is a process followed to develop software. Testing is done to ensure quality and functionality.
SDLC is a process that includes planning, designing, coding, testing, and maintenance.
Testing is done to identify and fix defects, ensure functionality, and improve quality.
Types of testing include unit testing, integration testing, system testing, and acceptance testing.
Testing can be m...
Windows and Linux are two different operating systems. I prefer Linux because of its open-source nature and flexibility.
Windows is a proprietary operating system developed by Microsoft, while Linux is an open-source operating system.
Linux is more flexible and customizable than Windows.
Linux is known for its stability and security.
Windows is more user-friendly and has better compatibility with software.
Examples of Linux...
I am a highly motivated and experienced professional with a strong background in marketing and sales.
I have over 10 years of experience in the marketing industry, working for both small startups and large corporations.
I have a proven track record of successfully implementing marketing strategies that have resulted in significant revenue growth.
I am skilled in market research, competitor analysis, and customer segmentat...
My CGPA is lower than my school percentage due to various factors.
Different grading systems: CGPA is based on a different scale than school percentage.
Difficulty level: The subjects in college may be more challenging than in school.
Personal circumstances: I may have faced personal challenges that affected my academic performance.
Learning style: College may require different study techniques that I am still adapting to.
...
based on 4 interviews
Interview experience
Application Developer
20
salaries
| ₹0 L/yr - ₹0 L/yr |
QA Engineer
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Angular JS Developer
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Developer
3
salaries
| ₹0 L/yr - ₹0 L/yr |
TCS
Infosys
Wipro
HCLTech