Filter interviews by
I applied via AmbitionBox and was interviewed in Mar 2023. There were 3 interview rounds.
Questions about entry operaator all are o
In multiple choice
A data entry operator is responsible for inputting, updating, and maintaining information in computer systems.
Enters data into computer systems accurately and efficiently
Updates and maintains databases with new information
Ensures data is organized and easily accessible
May perform quality checks on data entered
Examples: Entering customer information into a CRM system, updating inventory levels in a database
I applied via Job Fair and was interviewed in Apr 2024. There were 2 interview rounds.
I applied via Referral and was interviewed before Jan 2023. There was 1 interview round.
I applied via Company Website and was interviewed before Sep 2022. There were 3 interview rounds.
About the crops and work
International Crops Research Institute for the Semi-arid Tropics interview questions for popular designations
Top trending discussions
I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.
Simple basic matha
I am open to discussing salary based on the responsibilities and expectations of the role.
Focus on the value you can bring to the company rather than a specific number
Research the average salary range for similar positions in the industry and location
Consider your experience, skills, and qualifications when determining your salary expectations
Be prepared to negotiate and discuss other benefits besides salary
I worked as a Sales Associate at XYZ Company.
Responsible for assisting customers in finding and purchasing products.
Managed inventory and restocked shelves to ensure product availability.
Provided excellent customer service and resolved any issues or complaints.
Achieved sales targets by upselling and cross-selling products.
Collaborated with team members to create attractive product displays.
Utilized POS system to proces...
I have the necessary skills, experience, and passion to excel in this role.
I have a strong educational background and relevant work experience.
I am a quick learner and have a proven track record of adapting to new environments.
I am highly motivated and dedicated to delivering high-quality work.
I possess excellent communication and teamwork skills.
I am passionate about the industry and committed to continuous learning a
In 5 years, I see myself as a Senior Associate, leading a team and contributing to the growth and success of the company.
Advancing to a Senior Associate role
Leading a team and mentoring junior associates
Contributing to the growth and success of the company
Continuing to develop my skills and knowledge in the field
My strengths include strong communication skills, attention to detail, and ability to work well in a team. My weaknesses include being overly critical of my own work and sometimes struggling with time management.
Strength: Strong communication skills
Strength: Attention to detail
Strength: Ability to work well in a team
Weakness: Being overly critical of my own work
Weakness: Struggling with time management
I am a highly motivated and experienced professional with a strong background in the field.
I have a Bachelor's degree in Business Administration.
I have worked as an Associate at XYZ Company for the past 3 years.
I am skilled in data analysis and problem-solving.
I have successfully managed multiple projects and achieved significant results.
I am a team player and have excellent communication skills.
I applied via Referral and was interviewed before Feb 2021. There was 1 interview round.
EV stands for Enterprise Value, which is the total value of a company's equity and debt.
EV = Market Capitalization + Total Debt - Cash and Cash Equivalents
It is used to determine the total value of a company, including its debt
EV/EBITDA is a common valuation metric that compares a company's EV to its EBITDA
EV/Sales is another common valuation metric that compares a company's EV to its annual sales
EV can be used to comp...
The income statement shows a company's revenues and expenses over a specific period of time.
The income statement is also known as the profit and loss statement.
It includes revenues, cost of goods sold, gross profit, operating expenses, and net income.
Revenues are the money a company earns from selling its products or services.
Cost of goods sold is the cost of producing or purchasing the products or services sold.
Gross ...
I applied via Naukri.com and was interviewed before May 2021. There were 3 interview rounds.
I applied via Campus Placement and was interviewed before Apr 2021. There were 2 interview rounds.
Brand Management
posted on 11 Mar 2022
I appeared for an interview before Mar 2021.
Round duration - 60 minutes
Round difficulty - Medium
This was a test round where 10 aptitude based questions were to be solved in 60 minutes
Round duration - 60 minutes
Round difficulty - Medium
They took us to the lab for this on and we were each given a paper with a program on it. It was all mixed as in each person got a different paper, You have around an hour to finish coding. after which you have to explain your code. They also gave wrong or incorrect inputs and see how your code handles these exceptions.
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
Reverse a given string containing alphabets, numbers, and special characters.
Iterate through the string from the end to the beginning and append each character to a new string.
Use built-in functions like reverse() or StringBuilder in languages like Python or Java for efficient reversal.
Handle special characters and numbers along with alphabets while reversing the string.
Ensure to consider the constraints provided in th...
Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.
The fir...
Implement a function to find K largest elements in an unsorted array in non-decreasing order.
Create a min heap of size K and insert the first K elements of the array
For each remaining element, if it is larger than the root of the heap, replace the root with the element and heapify
Finally, the heap will contain the K largest elements in non-decreasing order
Given a string str
and a character 'X', develop a function to eliminate all instances of 'X' from str
and return the resulting string.
The first lin...
Develop a function to remove all instances of a given character from a string.
Iterate through the string and build a new string excluding the specified character.
Use a StringBuilder or similar data structure for efficient string manipulation.
Handle edge cases like empty string or character not found in the input string.
Ensure the function completes within the given time constraint.
Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.
N = 4
1
232
34545
4567654
The pat...
Print a triangle pattern of numbers based on a given number 'N'.
Iterate through each row and column to determine the numbers to print
Use a combination of spaces and numbers to align the pattern correctly
Increment the numbers in each row based on the row number
Round duration - 60 minutes
Round difficulty - Easy
Compared to the other round this is more tech oriented. Lot more tech questions. It is of normal difficulty and is not that hard to clear, you only need to know the basics.
Very basic of Data Structure and Oracle knowledge enough. Lots of simple questions from data structures(insert into heaps etc). They did not ask to write code for DS, but rather to explain the logic through diagrams. For some complicated question, they expect how much you brainstorm ideas in solving
Convert a given binary tree into its mirror tree, where the left and right children of all non-leaf nodes are interchanged.
An integer ‘T’ denoting the number o...
Convert a binary tree into its mirror tree by interchanging left and right children of non-leaf nodes.
Traverse the tree in postorder fashion and swap the left and right children of each node.
Use recursion to solve the problem efficiently.
Modify the binary tree in place without creating a new tree.
Given an array ARR
consisting of N
integers, your task is to use the Heap sort algorithm to arrange the array in non-decreasing order.
The first line of the input cont...
Implement the Heap sort algorithm to arrange an array in non-decreasing order.
Implement the Heap sort algorithm to sort the given array in non-decreasing order
Use a max heap to sort the array in non-decreasing order
Time complexity of Heap sort is O(n log n)
Indexing in databases is a technique used to improve the speed of data retrieval by creating a data structure that allows for quick lookups.
Indexes are created on specific columns in a database table to speed up queries that search for data in those columns.
Indexes work similar to the index of a book, allowing the database to quickly locate the desired data without having to scan the entire table.
Examples of indexes in...
Hash Table is better for fast lookups and insertions, while B Tree is better for range queries and ordered traversal.
Use Hash Table for fast lookups and insertions with O(1) average time complexity.
Use B Tree for range queries and ordered traversal with O(log n) time complexity.
Consider the size of the dataset and the specific operations needed to determine the best data structure.
Round duration - 30 minutes
Round difficulty - Easy
This round lasted for around 30 minutes. It more of a character analysis round with a lot of HR type questions.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
based on 4 interviews
Interview experience
based on 113 reviews
Rating in categories
Scientific Officer
22
salaries
| ₹3 L/yr - ₹9.2 L/yr |
Research Technician
15
salaries
| ₹2.5 L/yr - ₹5.5 L/yr |
Visiting Scientist
14
salaries
| ₹8.2 L/yr - ₹9 L/yr |
Senior Scientific Officer
11
salaries
| ₹4.8 L/yr - ₹13 L/yr |
Senior Accounts Officer
11
salaries
| ₹9 L/yr - ₹14.5 L/yr |
Crisil
CorroHealth infotech
Indegene
Acuity Knowledge Partners