Upload Button Icon Add office photos

Filter interviews by

Indian National Centre For Ocean Information Services Project Scientist 2 Interview Questions and Answers

Updated 14 May 2024

Indian National Centre For Ocean Information Services Project Scientist 2 Interview Experiences

1 interview found

Project Scientist 2 Interview Questions & Answers

user image Kameshwari Nunna

posted on 14 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SUBJECT RELATED TO ATMOSPHERIC SCIENCE, OCEANOGRAPHY, PHYSICS

Interview questions from similar companies

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Strength
  • Q3. Weaknesses
  • Q4. Hobbies
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find the number of red fishes.

    • Subtract the number of red fishes from 200 to find the number of non-red fishes.

    • Calculate 2% of the total number of fishes to find the desired number of red fishes.

    • Subtract the desired number of red fishes from the current number of red fishes to find the number of fishes to be removed.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Weaknesses
  • Q3. Strength
  • Q4. Hobby
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find out how many fishes represent 1%.

    • Multiply the result by 2 to find out how many fishes represent 2%.

    • Subtract the result from 200 to find out how many fishes represent 98%.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I was interviewed in Feb 2017.

Interview Preparation Tips

Round: Test
Experience: It was a simple aptitude test in which around 150 students cleared the test.
Duration: 1 hour
Total Questions: 40

Round: Test
Experience: Three programs were given and we had to write the code in either java ,c or c++ and get the required output.Around 90 students cleared this round.
Duration: 1 hour 30 minutes
Total Questions: 3

College Name: VIT Vellore

I was interviewed before May 2016.

Interview Preparation Tips

Round: Test
Experience: The test was conducted through Cocubes. It was moderately difficult. Some of the questions are time taking. We need to be decisive in attempting such questions.
Tips: Need to manage time properly. Should assess and choose which questions to attempt and which ones to leave.
Duration: 1 hour
Total Questions: 30

Round: Test
Experience: The three questions are of three different levels.

1. You will be given two numbers. The first one is the starting point and the second one is the ending point of a range of integers. You have to count the number of integers in that range which are divisible by the first number.

Ex : INPUT : 3 18
OUTPUT : 6

2. You will be given a number. You have to find the sum of the digits. If the sum exceeds 9, you have to add the digits of the sum recursively until you a get a single digit sum.

EX : INPUT : 9999
OUTPUT : 9

Explanation: 9999 => 9 +9+9+9=36 => 3+6 =9

3. You will be given an array of characters which include ( L, R , or a number in the range '0' to '9'). A ball is kept on a line of integers initially kept at zero. The ball has to execute the instructions sequentially as follows:
(i) If an 'L' character is encountered, the ;position of the ball has to be decremented.
(ii) If an 'R' character is encountered, the position of the ball has to be incremented.
(iii) If an integer (in the range '0' to '9) is encountered , we have to go to that index in the array and execute the instruction present in that index.

Finally, after all the instructions are executed, you have to print the final position of the ball.

EX : INPUT :
Number of instruction : 5
Instructions: LR1R2

OUTPUT : 3

Explanation :
(i) Initially, the ball is at 0. Since the 0th index in the array is 'L' , the ball moves to 0-1= -1 position.
(ii) The 1st index is 'R' hence, the position of the ball is -1 +1 = 0 position.
(iii) The 2nd index is '1', hence we have to go to index 1 in the array which is 'R', hence the new position is 0+1 =1.
(iv) The 3rd index is 'R', hence the new position is 1 +1 =2.
(v) The 4th index is '2' , hence we have to go to 2nd index is '1' , hence we have to go again to 1st index , which is 'R' hence the final position is 2+1 =3.

Tips: We need to solve all the three the problems to have better chances of clearing this round.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: The interview was focussed majorly on coding. It went for about 45min with around 10 coding problems given to solve. Some basics of Computer networking are also tested in this round.
Tips: Be prepared with some basics of networking. As the company's main focus is on Telecom, good knowledge in telecom and networking would be a big advantage.

Round: Technical Interview
Experience: This round was focused on the aptitude and reasoning skills. Some puzzles were given in this round. These puzzles are of moderately complex and are more common ones in interviews. Like the (find the heavier ball among three balls using a balance in min no. of attempts).
Tips: Sometimes the interviewer tries to confuse. You need to be confident with your answers and explaination.

Round: HR Interview
Experience: The interview was more of a traditional HR round. Majorly concentrated on the final year project, personal strengths and weaknesses.

Skills: Coding Skills, Computer Networking, C Language Basics
College Name: G Pulla Reddy College of Engineering & Technology

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Strength
  • Q3. Weaknesses
  • Q4. Hobby
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes, which is 2 fishes.

    • To make the red fishes 98%, subtract 1% (2 fishes) from 99% (198 fishes).

    • To find the number of fishes to be removed, divide the difference by 1% (2 fishes).

    • Therefore, 50 fishes have to be removed to make the red fishes 98%.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skills, Interpersonal Communication, Aptitude
College Name: VIT Vellore

Interview Questionnaire 

2 Questions

  • Q1. Simple Case Interview
  • Q2. Main case Round

Interview Preparation Tips

Round: Test
Experience: Adaptive DI test. Level of difficulty less than CAT.

Round: Case Study Interview
Experience: This is a very simple case interview. The case was as follows: Client is a micro-lender, they loan funds from a big bank @ 6% SI and loan out the money to farmers at 10% and 20% SI. The segmentation is 60% and 40% respectively. Calculate profit/customer. What is the profit if 2% customers default (uniformly from both segments) on the loan? (Ans: loss incurred)
Tips: This is a very simple round, just stick to the essentials of keeping your structure + calculations neat & clean. Communicate well. You'll get through.

Round: Case Study Interview
Experience: Case: We are a telecom company, planning to launch a new subscription plan. Decide if we should go ahead or not. The plan is as follows: We charge the customers $0.99 for the first 20 minutes and $0.08/minute thereafter. The cost incurred by the company is $0.07/minute. Should we go ahead with the plan?
You will be asked to draw a graph between Profit and minutes spent on a call. To come to a decision you might ask the interviewer for some more data like the distribution or the average time spent by a customer on a call. But none of this is information can be used to decide if we should go ahead with the plan. Unless you have a distribution of percentage of customers vs time spent on an avg call, you can not decide the fate of the plan.
On our campus, almost everybody answered a yes(go ahead) or a no for the plan and still got rejected. I think the actual answer is "None of the above. With the present information nobody can predict if the plan will be profitable in the long run.
Please do not say we can use historical data to come to a conclusion, I did, the question he then posed to me is can we really use historical data to predict the usage pattern of this plan by our customers?? The answer is no, we can not use historical data, as the customers will have an incentive to speak for close to 20 minutes per call.
I also looked at the problem from a customers point of view to check if a customer has an incentive to pick this plan over the others. I asked for the cheapest plan/s out in the market currently, so the interviewer told me that the cheapest plan cost the customer $0.08/minute.
After getting this data, I looked at intersection of the time band at which it becomes cheaper for the customer to pick our plan over the 8 cents plan and the time band which is profitable for us.
I came to the conclusion that the band is very narrow to be profitable and that I do not think that it will generate net profits. So we should not go ahead with the plan.
I assumed that there wont be a large chunk of customers in the above mentioned time band. This is what I think my mistake was.
I believe there is no way of definitely saying whether we should go ahead or not. Hence the answer must be Cant be Determined.
FYI: I also suggested him to launch it in a small region/zone so as to figure out the distribution of customers. No good.

Skills:
College Name: IIT Kanpur
Motivation: Chill out workplace. No pressure of work. But no future either :P wont land you in a great B-school. This is just an office opened by a recently grown American company. They have an office in India just to show the Investors that they plan on expanding and are investing in India and Philippines. I don't think the real work happens here. This might sound like a rant, but you should go ahead and prepare for this company. Its one of the best options straight out of college. Or to settle down or if you like to chill a lot....

Interview Questionnaire 

6 Questions

  • Q1. Finding the average profit on a given loan
  • Ans. 

    To find the average profit on a given loan, divide the total profit by the number of loans.

    • Calculate the total profit earned on the loan

    • Determine the number of loans

    • Divide the total profit by the number of loans to find the average profit

    • Example: If the total profit earned on 10 loans is $1000, the average profit per loan is $100

  • Answered by AI
  • Q2. Choosing between two marketing schemes
  • Ans. 

    When choosing between two marketing schemes, it's important to consider the target audience, budget, and goals.

    • Consider the target audience and which scheme would be more appealing to them

    • Evaluate the budget and determine which scheme is more cost-effective

    • Assess the goals of the marketing campaign and choose the scheme that aligns best with those goals

    • Conduct market research to gather data on the effectiveness of each...

  • Answered by AI
  • Q3. Economics of setting up a new ATM
  • Ans. 

    Setting up a new ATM involves various costs and considerations such as location, equipment, maintenance, and security.

    • Location is a crucial factor in determining the success of an ATM. It should be easily accessible and visible to potential users.

    • Equipment costs include the ATM machine, software, and communication systems.

    • Maintenance costs include regular servicing, cash replenishment, and repairs.

    • Security measures suc...

  • Answered by AI
  • Q4. Tell us a time when you asked your peers for help and what was the result
  • Ans. 

    I asked my peers for help when I was struggling with a project deadline.

    • I explained my situation and asked for their input

    • They were able to offer suggestions and resources that helped me meet the deadline

    • I expressed my gratitude and offered to return the favor in the future

  • Answered by AI
  • Q5. Tell us a time when you had to learn something new for an assignment/project
  • Ans. 

    I had to learn a new programming language for a project

    • Researched online resources and tutorials

    • Practiced coding exercises to gain proficiency

    • Collaborated with team members who were experienced in the language

    • Implemented the language in the project successfully

  • Answered by AI
  • Q6. Tell us a time when you delivered results in a short deadline while working in a team
  • Ans. 

    I led a team to complete a project in 3 days instead of 5

    • Set clear goals and priorities

    • Divide tasks among team members based on strengths

    • Communicate regularly to ensure progress and address issues

    • Worked overtime to meet the deadline

    • Received positive feedback from the client

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test basically involved solving 15 Data interpretation questions. The test was pretty easy, and hence accuracy was very important to qualify for the next round.
Tips: Solving DI questions from any CAT practice book will be more than enough. The actual questions in the test are much easier. Just be read the question carefully and you will be able to solve it.
Total Questions: 15

Round: Case Study Interview
Experience: Initially the interviewer tests your basically conceptual knowledge regarding the cost and revenue streams for a loan and then expects you to calculate the average profit given the required data. This was a pretty small interview lasting only about 10-12 minutes or so.
Tips: Keep conversing with the interviewer and clarify any doubts. Do not mess up with the calculation.

Round: Case Study Interview
Experience: Again, the interviewer tests your basic understanding regarding making a decision to select between two marketing schemes. Then, after being provided relevant information, you are expected to make an informed decision, do the break-even analysis and plot a graph.
Tips: You need to show the interviewer your grasp of business concepts. A good knowledge about economics and a business acumen helps. The math is easy, just be careful not to mess it up. Also, keep conversing with the interviewer and help him understand your line of thinking, this would enable him to assist you and get you on the right path.

Round: Case Study Interview
Experience: You are expected to do the math to assess the profitability of an ATM and qualitatively discuss the factors to be considered while setting up a new ATM.
Tips: Again, think aloud and use your common sense if ever you feel that you do not know an answer. But mainly be confident.

Round: Behavioural Interview
Experience: The interviewer is very friendly and it is more of a chat than an interview. Also, they will get into the specifics of the example you provide just to understand the situation better and to know how you handled the situation.
Tips: Be well prepared with all the general HR and behavioral questions and think about specific examples that you would like to bring up.

General Tips: To sum it up, more than anything, just be confident.
Skill Tips: If you are selected for the interview, chances are that you already have the necessary math skills to succeed. Remember, the only things which are going to get you through are confidence, alertness and business acumen.
Skills: Confidence, Communication, Basic Mathematics
College Name: IIT Bombay

Associate Interview Questions & Answers

CapitalOne user image Aman Choudhary

posted on 27 Sep 2016

I applied via Campus Placement

Interview Questionnaire 

3 Questions

  • Q1. Money Lending Business
  • Q2. Customer Acquisition (Break Even Analysis)
  • Q3. Customer Delinquency and Fraud Management

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resume Shortlist was strictly done on the basis of CGPA ! All candidates with CGPA 7.0 and above were shortlisted for the test.

Round: Test
Experience: A total of 30 questions were given to completed in a short span of 35 minutes. A set of 5-6 questions were based on a set of three graphs (generally line chart, pie chart, bar graph). Questions were based on simple calculations and test was aimed at keeping a check on accuracy and speed of the candidate
Tips: Practice a few Data Interpretation exercise to understand the graphs easily.
Duration: 35 minutes
Total Questions: 30

Round: Case Study Interview
Experience: The case was about Market entry for a Money Lender in a village. The case included identification of potential customer segment, revenue streams. Then there was some data provided regarding the interest and various kind of loan models that would be used by the lender. I was then asked to work on the profitability. This case was more on the qualitative side.
Tips: - Keep communicating with the interviewer. Involve him in the case solving process.
- If at any point of time, you are unsure about the approach you are following, ask the interviewer.

Round: Case Study Interview
Experience: The case was about a credit card company who uses various kind of marketing strategies (mail, calls etc) for customer acquisition. The interviewer started with the discussion on the marketing techniques. The data included costs, acquisition rate, and the average profits. I was asked to calculate the break even point.
The case was numerical and easy to crack once the data was provided.


Tips: - Calculate accurately. Never answer wrong because of the speed.

Round: Case Study Interview
Experience: The case was about a bank who was observing a higher delinquency rate and fraud. The data provided was about loss per customer, average revenue etc. The case typically numerical after some discussion on strategy about reducing fraud.


Skills: Speed, Accuracy, Ability To Analyse
Duration: 2
College Name: IIT Kharagpur
Motivation: Good Perks, Big Brand.

Interview Questionnaire 

1 Question

  • Q1. Profitability analysis in the credit cards business
  • Ans. 

    Profitability analysis in the credit cards business involves evaluating the financial performance and returns generated by credit card operations.

    • Profitability analysis helps assess the effectiveness of credit card strategies and identify areas for improvement.

    • Key metrics for profitability analysis include net interest margin, fee income, credit losses, and operating expenses.

    • Comparing profitability across different cu...

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 30 minutes
Total Questions: 35

Round: Case Study Interview
Experience: One mini calculative case interview and 2 major calculative

General Tips: Don’t relax too much and do prepare religiously inspite of whether or not your wingie or close friend is taking placements seriously. Also, do help out your wing mates once you are done with yours. There is no better joy than seeing a close friend landing up a dream job. Most importantly, never lose hope. This comes from a 7.1 who failed to make into the shortlists of every company for internships and still landed a job within the first 3 hours on the first day. Just keep believing you’ll do well and you would.
College Name: IIT Kanpur

Indian National Centre For Ocean Information Services Interview FAQs

How many rounds are there in Indian National Centre For Ocean Information Services Project Scientist 2 interview?
Indian National Centre For Ocean Information Services interview process usually has 1 rounds. The most common rounds in the Indian National Centre For Ocean Information Services interview process are Technical.

Tell us how to improve this page.

Indian National Centre For Ocean Information Services Project Scientist 2 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 149 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
Data Entry Interview Questions
4.1
 • 97 Interviews
HyScaler Interview Questions
4.5
 • 91 Interviews
CapitalOne Interview Questions
3.7
 • 78 Interviews
3 Minds Digital Interview Questions
4.4
 • 65 Interviews
View all
Compare Indian National Centre For Ocean Information Services with

National Centre for Earth Science Studies

4.1
Compare

National Institute of Oceanography

4.1
Compare

National Institute of Ocean Technology

4.5
Compare

National Centre for Antarctic and Ocean Resarch

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview