Find Interview Questions for Top Companies
Norges bank investment management Interview Questions and Answers
Ques:- Experience & knowledge
Right Answer:
I have extensive experience in budgeting, including creating, managing, and analyzing budgets for various projects. I am knowledgeable in financial forecasting, cost control, and using budgeting software to track expenses and ensure financial goals are met.
Ques:- What about budgeting
Right Answer:
Budgeting is the process of creating a plan to manage income and expenses over a specific period. It involves estimating future financial needs, allocating resources accordingly, and monitoring spending to ensure financial goals are met.
Ques:- What is cost centre , job costing & Budget control.what is the effect of these.Explain its briefly.
Right Answer:
A cost centre is a department or function within an organization that does not directly generate revenue but incurs costs. Job costing is a method of tracking the costs associated with a specific job or project, allowing businesses to determine profitability on a per-job basis. Budget control involves monitoring and managing expenses against a budget to ensure financial goals are met. The effect of these concepts is improved financial management, better cost tracking, and enhanced decision-making for resource allocation.
Ques:- What are some common data visualization techniques
Right Answer:
Some common data visualization techniques include:

1. Bar Charts
2. Line Graphs
3. Pie Charts
4. Scatter Plots
5. Histograms
6. Heat Maps
7. Box Plots
8. Area Charts
9. Tree Maps
10. Bubble Charts
Ques:- What is classification analysis and how does it work
Right Answer:
Classification analysis is a data analysis technique used to categorize data into predefined classes or groups. It works by using algorithms to learn from a training dataset, where the outcomes are known, and then applying this learned model to classify new, unseen data based on its features. Common algorithms include decision trees, logistic regression, and support vector machines.
Ques:- What are outliers and how do you handle them in data analysis
Right Answer:
Outliers are data points that significantly differ from the rest of the dataset. They can skew results and affect statistical analyses. To handle outliers, you can:

1. Identify them using methods like the IQR (Interquartile Range) or Z-scores.
2. Remove them if they are errors or irrelevant.
3. Transform them using techniques like log transformation.
4. Use robust statistical methods that are less affected by outliers.
5. Analyze them separately if they provide valuable insights.
Ques:- What is exploratory data analysis (EDA)
Right Answer:
Exploratory Data Analysis (EDA) is the process of analyzing and summarizing datasets to understand their main characteristics, often using visual methods. It helps identify patterns, trends, and anomalies in the data before applying formal modeling techniques.
Ques:- What are some common data analysis tools and software
Right Answer:
Some common data analysis tools and software include:

1. Microsoft Excel
2. R
3. Python (with libraries like Pandas and NumPy)
4. SQL
5. Tableau
6. Power BI
7. SAS
8. SPSS
9. Google Analytics
10. Apache Spark
Ques:- Given Data for doing different formats like pivot, and matching the data for another data
Right Answer:
To analyze data for different formats like pivot tables and matching datasets, you should:

1. **Identify Key Variables**: Determine the key fields that will be used for matching and pivoting.
2. **Clean the Data**: Ensure that the data is free from duplicates, errors, and inconsistencies.
3. **Use Pivot Tables**: Create pivot tables to summarize and analyze the data by aggregating values based on categories.
4. **Match Data**: Use functions like VLOOKUP or JOIN operations in SQL to match data from different sources based on the identified key variables.
5. **Validate Results**: Check the accuracy of the matched data and the pivot table outputs to ensure they meet business requirements.
Ques:- Explain in brief about the Documentation – CFD, DFD, Functional Documentation.
Right Answer:
**CFD (Context Flow Diagram)**: A high-level diagram that shows the flow of information between external entities and the system, helping to define system boundaries and interactions.

**DFD (Data Flow Diagram)**: A visual representation that illustrates how data moves through a system, detailing processes, data stores, and data flows, typically used to analyze and design systems.

**Functional Documentation**: A comprehensive document that outlines the functionalities of a system, including requirements, use cases, and specifications, serving as a guide for development and testing.
Ques:- WHAT IS WORKING CAPITAL
Right Answer:
Working capital is the difference between a company's current assets and current liabilities, indicating the short-term financial health and operational efficiency of the business.
Ques:- What are the fields used for Project Planning in Ms Project?
Right Answer:
The fields used for Project Planning in MS Project include:

1. Task Name
2. Duration
3. Start Date
4. Finish Date
5. Predecessors
6. Resources
7. Percent Complete
8. Work
9. Cost
10. Milestones
Ques:- How to findout YEAR CALCULATION?THAT MEANS YOU SHOW THIS YEAR REVENUE AND LAST YEAR REVENUE.WHEN YOU FILTER THIS YEAR VALUE THE RESULT SHOULD DISPLAY THIS YEAR RESULT AND LAST YEAR RESULT.
Right Answer:
To find the current year and last year revenue in a SQL query, you can use the following approach:

```sql
SELECT
YEAR(order_date) AS year,
SUM(revenue) AS total_revenue
FROM
sales
WHERE
YEAR(order_date) IN (YEAR(CURDATE()), YEAR(CURDATE()) - 1)
GROUP BY
YEAR(order_date);
```

This query filters the sales data for the current year and the previous year, grouping the results by year to show the total revenue for each year.
AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users