i
InMovidu Technologies
Filter interviews by
Yes, I am interested in sales and marketing.
I have a strong passion for building relationships and driving revenue through sales.
I enjoy creating marketing strategies to reach target audiences and increase brand awareness.
I have experience in sales and marketing roles, such as developing sales pitches and executing marketing campaigns.
Skills needed for sales and marketing include communication, negotiation, relationship-building, and analytical abilities.
Strong communication skills to effectively convey product benefits and close deals
Negotiation skills to reach mutually beneficial agreements with clients
Relationship-building abilities to establish trust and long-term partnerships
Analytical skills to interpret market trends and data for strategic de
How does social media helps in business
I applied via Walk-in and was interviewed before Apr 2022. There were 4 interview rounds.
Basic aptitude questions
They will give you topics related to resent scenario
InMovidu Technologies interview questions for popular designations
I applied via LinkedIn and was interviewed before Jun 2022. There were 3 interview rounds.
They asked to discuss about women empowerment
I applied via campus placement at Lovely Professional University (LPU) and was interviewed before Sep 2022. There were 3 interview rounds.
Good communication skills are required for selection
To sell a pen, highlight its features, demonstrate its quality, create a need for it, and offer a special promotion.
Highlight the pen's features such as smooth writing, comfortable grip, and long-lasting ink.
Demonstrate the pen's quality by showing how it writes smoothly without smudging.
Create a need for the pen by explaining how it can improve handwriting, boost productivity, or make a great gift.
Offer a special prom...
Communicate with customers by actively listening, asking open-ended questions, providing personalized solutions, and following up.
Listen actively to understand customer needs and concerns
Ask open-ended questions to gather more information
Provide personalized solutions tailored to the customer's specific needs
Follow up with customers to ensure satisfaction and address any additional concerns
Use clear and concise languag
I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Jun 2021. There were 4 interview rounds.
Top trending discussions
I applied via Naukri.com and was interviewed in Jan 2023. There were 3 interview rounds.
I completed my B.E. in 2015.
I completed my B.E. in 2015.
I graduated with a Bachelor's degree in Engineering in 2015.
My B.E. was completed in 2015.
I completed my 12th in the year 2010.
I completed my 12th in 2010.
I finished my 12th grade in 2010.
My 12th grade was completed in 2010.
I took a year gap to gain practical experience and enhance my skills.
To gain practical experience and enhance my skills
To explore different technologies and frameworks
To work on personal projects and contribute to open-source projects
To attend workshops, seminars, and training programs
To take up internships or freelance projects
I completed my graduation in the year 2015.
I completed my graduation in 2015.
I graduated in the year 2015.
My graduation was completed in 2015.
Java certification is not mandatory for a Java Developer role.
Certification is not a measure of practical skills and experience.
Experience and skills are more important than certification.
Certification can be helpful in some cases, but not mandatory.
Certification can be expensive and time-consuming.
Employers may value certification differently.
Examples of Java certifications: Oracle Certified Professional Java SE 11 De
The four pillars of OOPS are Abstraction, Encapsulation, Inheritance, and Polymorphism.
Abstraction: Hiding implementation details and showing only necessary information.
Encapsulation: Binding data and methods together to protect data from outside interference.
Inheritance: Creating new classes from existing ones, inheriting properties and methods.
Polymorphism: Ability of objects to take on multiple forms or behaviors.
Polymorphism is when an object can take on multiple forms and behave differently based on the context.
A car can be a vehicle, but it can also be a sports car or a family car, each with different behaviors.
A shape can be a square, rectangle, or triangle, each with different methods for calculating area and perimeter.
A media player can play different types of media, such as audio or video, each with different playback co
Abstract class can have implementation while interface cannot. A class can implement multiple interfaces but can only extend one abstract class.
Abstract class can have constructors while interface cannot.
Abstract class can have instance variables while interface cannot.
Abstract class can have non-abstract methods while interface can only have abstract methods.
A class can implement multiple interfaces but can only exten...
Yes, Java supports multi level inheritance.
Multi level inheritance is the process of inheriting a class from another derived class.
It helps in creating a hierarchy of classes with each level inheriting properties from the previous level.
For example, class C can inherit from class B, which in turn inherits from class A.
Java does not support multiple inheritance, where a class can inherit from multiple classes at the sam
Composition is a way to combine objects to create complex structures, while inheritance is a way to create new classes based on existing ones.
Composition is a 'has-a' relationship, where an object contains other objects as its parts.
Inheritance is an 'is-a' relationship, where a subclass inherits properties and behaviors from its superclass.
Composition allows for greater flexibility and modularity in design, as objects...
Exception handling is the process of handling errors and exceptions that occur during program execution.
Exceptions are objects that represent errors or exceptional situations that occur during program execution.
Exception handling involves catching and handling these exceptions to prevent program crashes.
Java provides try-catch-finally blocks for handling exceptions.
Examples of exceptions include NullPointerException, A...
throw is used to explicitly throw an exception while throws is used to declare an exception that a method may throw.
throw is used within a method to throw an exception when a certain condition is met
throws is used in the method signature to declare the exceptions that the method may throw
throw is followed by an instance of an exception class while throws is followed by the name of the exception class
throw is used to ha...
Yes, we can have multiple try blocks in Java.
Multiple try blocks can be used to handle different exceptions separately.
Each try block must have at least one catch or finally block.
Nested try blocks can also be used.
Example: try { //code } catch (Exception e) { //code } try { //code } catch (IOException e) { //code }
Example of nested try blocks: try { try { //code } catch (Exception e) { //code } } catch (Exception e) {
Memory is allocated when an instance of a class is created.
Memory allocation happens when an object is created using the 'new' keyword.
Static variables are allocated memory when the class is loaded.
Memory is released when the object is no longer referenced or when the program terminates.
A stack is a data structure that follows the Last In First Out (LIFO) principle.
Elements are added and removed from the top of the stack.
Push() adds an element to the top of the stack.
Pop() removes the top element from the stack.
Peek() returns the top element without removing it.
Used in programming for function calls, expression evaluation, and memory management.
A queue is a data structure that follows the FIFO (First In First Out) principle.
Elements are added to the back of the queue and removed from the front.
Common operations include enqueue (add to back) and dequeue (remove from front).
Examples include a line of people waiting for a movie or a printer queue.
Java provides the Queue interface and its implementations like LinkedList and PriorityQueue.
Errors are unrecoverable, while exceptions are recoverable.
Errors are caused by the environment in which the application is running, while exceptions are caused by the application itself.
Errors cannot be handled by the application, while exceptions can be handled using try-catch blocks.
Examples of errors include OutOfMemoryError and StackOverflowError, while examples of exceptions include NullPointerException and Array
We can use composition, aggregation, or association to connect two classes.
Composition is a strong form of aggregation where the lifetime of the contained object is controlled by the container object.
Aggregation is a weaker form of composition where the contained object has an independent lifecycle.
Association is a relationship between two classes where one class uses the functionality of another class.
Examples of asso...
Access modifiers in Java are used to set the accessibility of classes, methods, and variables.
There are four types of access modifiers in Java: public, private, protected, and default.
Public: accessible from anywhere in the program.
Private: accessible only within the same class.
Protected: accessible within the same class, same package, and subclasses.
Default: accessible within the same package only.
protected is a Java access modifier that allows access within the same package and subclasses.
Protected members can be accessed within the same package and subclasses.
It is used to provide encapsulation and prevent direct access from outside the class.
Protected members can be accessed using the dot operator.
Example: protected int num; can be accessed in a subclass using obj.num;
No, subclass cannot access private methods of parent class.
Private methods are only accessible within the same class where they are defined.
Subclasses can access protected and public methods of parent class.
Private methods can be accessed indirectly through public or protected methods of parent class.
No, subclass cannot inherit properties of parent class if parent class is not loaded.
In order for a subclass to inherit properties of a parent class, the parent class must be loaded.
If the parent class is not loaded, the subclass will not have access to its properties.
This is because inheritance is a compile-time concept and requires the parent class to be present during compilation.
Attempting to access properties of a...
Yes, a class can be private in Java.
A private class can only be accessed within the same outer class.
It cannot be accessed from outside the class or even from subclasses.
Private classes are often used for implementation details that should not be exposed to other classes.
Example: private class Node in a LinkedList implementation.
Collections are objects that group multiple elements into a single unit.
Collections are used to store, retrieve, manipulate and communicate aggregate data.
Java provides a set of interfaces and classes that implement various types of collections.
Examples of collections include List, Set, Map, Queue, etc.
Collections can be used to improve code readability, reusability, and performance.
Collections are used to store and manipulate groups of objects in Java. There are three main types of collections.
The three main types of collections are List, Set, and Map.
List is an ordered collection that allows duplicates. Example: ArrayList.
Set is an unordered collection that does not allow duplicates. Example: HashSet.
Map is a collection that maps keys to values and does not allow duplicate keys. Example: HashMap
Arrays are fixed in size and stored in stack memory, while heap is dynamic and stored in heap memory.
Arrays are declared with a fixed size, while heap can grow or shrink dynamically.
Arrays are stored in stack memory, while heap is stored in heap memory.
Arrays can only store elements of the same data type, while heap can store objects of different types.
Examples of arrays include int[], char[], and String[], while examp...
No, Set does not allow duplicates.
Set is a collection that does not allow duplicates.
If you try to add a duplicate element to a Set, it will not be added.
You can use a List if you need to allow duplicates.
Yes, duplicates can be added to an array.
Arrays in Java can contain duplicate elements.
Duplicate elements can be added to an array using the add() method of ArrayList class.
For example, int[] arr = {1, 2, 3, 3, 4}; or ArrayList
posted on 16 Apr 2022
I applied via Naukri.com and was interviewed in May 2022. There were 3 interview rounds.
If 5x + 7 = 22, what is the value of x?
a) 3
b) 5
c) 6
d) 8
Which of the following numbers is a prime number?
a) 22
b) 27
c) 29
d) 32
If it takes 6 people 12 days to complete a task, how long will it take 8 people to complete the same task?
a) 6 days
b) 8 days
c) 9 days
d) 10 days
A pizza with a diameter of 16 inches costs $12. What is the cost per square inch of the pizza?
a) $0.75
b) $1.00
c) $1.50
d) $2.00
If a car travels 80 miles in 2 hours, what is its average speed in miles per hour?
a) 20 mph
b) 40 mph
c) 60 mph
d) 80 mph
What is the next number in the sequence: 1, 3, 6, 10, 15, ____?
a) 20
b) 21
c) 22
d) 23
If the perimeter of a square is 32 cm, what is the length of each side of the square?
a) 4 cm
b) 8 cm
c) 12 cm
d) 16 cm
If a recipe calls for 2 cups of flour to make 12 cookies, how many cups of flour are needed to make 24 cookies?
a) 2 cups
b) 3 cups
c) 4 cups
d) 5 cups
Which of the following angles is acute?
a) 90 degrees
b) 120 degrees
c) 150 degrees
d) 30 degrees
If 3x + 5y = 17 and 2x - 3y = 7, what is the value of x + y?
a) 2
b) 3
c) 4
d) 5
Write a function that takes in an array of integers and returns the sum of all the even numbers in the array.
Write a function that takes in a string and returns the number of vowels in the string.
Write a function that takes in a string and returns a new string with all the vowels removed.
Write a function that takes in two arrays of integers and returns a new array that contains only the elements that are common to both arrays.
Write a function that takes in an array of integers and returns a new array with the elements sorted in descending order.
Write a function that takes in a string and returns true if the string is a palindrome, and false otherwise.
Write a function that takes in a positive integer and returns the factorial of that number.
Write a function that takes in an array of integers and returns the second largest number in the array.
Write a function that takes in a string and returns a new string with the first letter of each word capitalized.
Write a function that takes in an array of integers and returns the product of all the elements in the array.
posted on 8 May 2022
I applied via Google and was interviewed in Apr 2022. There were 2 interview rounds.
Interview experience
based on 53 reviews
Rating in categories
Business Development Executive
26
salaries
| ₹1 L/yr - ₹7 L/yr |
Business Development Associate
10
salaries
| ₹3 L/yr - ₹7 L/yr |
Operations Manager
4
salaries
| ₹2.5 L/yr - ₹3.6 L/yr |
Business Development Manager
4
salaries
| ₹3 L/yr - ₹4 L/yr |
Senior Executive
4
salaries
| ₹2 L/yr - ₹4.7 L/yr |
BYJU'S
upGrad
Unacademy
Upstox