Add office photos
Engaged Employer

eClerx

3.3
based on 4.9k Reviews
Video summary
Filter interviews by

10+ GD Goenka Public School Interview Questions and Answers

Updated 16 Feb 2025
Popular Designations

Q1. Can we add extra row and pivot table in excel? If yes than how?

Ans.

Yes, we can add extra row and pivot table in excel.

  • To add a row, select the row below where you want to add the new row and right-click, then select 'Insert'.

  • To create a pivot table, select the data range and go to 'Insert' tab, click on 'PivotTable' and follow the prompts.

  • To add a new pivot table to an existing one, select a cell in the existing pivot table and go to 'Analyze' tab, click on 'PivotTable' and follow the prompts.

View 1 answer

Q2. Given a list of dictionary, find the dictionary which has the count of key highest among all the dictionaries. eg: [{a:5},{b:2}.......] Now here 5 is the highest key value so it should be printed.

Ans.

Find the dictionary with the highest count of keys in a list of dictionaries.

  • Iterate through the list of dictionaries and keep track of the dictionary with the highest count of keys.

  • Use a loop to count the keys in each dictionary and compare it with the current highest count.

  • Return the dictionary with the highest count of keys.

View 1 answer

Q3. Do you have experience in converting python scripts to R?

Ans.

Yes, I have experience in converting Python scripts to R.

  • I have converted several Python scripts to R for data analysis projects.

  • I am proficient in both Python and R programming languages.

  • I can provide examples of projects where I have successfully converted Python scripts to R.

Add your answer

Q4. How much experience do you have in python and R?

Ans.

I have 3 years of experience in Python and 2 years in R.

  • 3 years of experience in Python, used for data cleaning, analysis, and visualization.

  • 2 years of experience in R, utilized for statistical analysis and data modeling.

  • Proficient in using libraries like pandas, numpy, matplotlib in Python and ggplot2, dplyr in R.

Add your answer
Discover GD Goenka Public School interview dos and don'ts from real experiences

Q5. What project have you worked on in R programming?

Ans.

I have worked on a project in R programming analyzing customer churn for a telecommunications company.

  • Used R programming to clean and analyze customer data

  • Created visualizations to identify patterns and trends in customer behavior

  • Built predictive models to forecast customer churn rates

  • Collaborated with stakeholders to present findings and recommendations

Add your answer

Q6. Given a list of strings, find the string matching a particular pattern.

Ans.

Find a string matching a specific pattern in a list of strings.

  • Use regular expressions to search for the pattern in each string.

  • Iterate through the list of strings and apply the pattern matching logic.

  • Return the string that matches the pattern, if found.

  • Example: List of strings - ['apple', 'banana', 'cherry'], pattern - 'ba' would return 'banana'.

Add your answer
Are these interview questions helpful?

Q7. Which databases have you worked on?

Ans.

I have worked on databases such as MySQL, SQL Server, and MongoDB.

  • MySQL

  • SQL Server

  • MongoDB

Add your answer

Q8. how you perform exists query in SQL?

Ans.

To perform an exists query in SQL, use the EXISTS keyword followed by a subquery that returns at least one row.

  • Use the EXISTS keyword in the WHERE clause of the main query

  • Follow the EXISTS keyword with a subquery that returns at least one row

  • The EXISTS query will return true if the subquery returns any rows, otherwise false

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. what is lookup in excel?

Ans.

Lookup in Excel is a function that searches for a value in a range and returns a corresponding value in the same position from another range.

  • Lookup function helps in finding specific information in a table or range of data.

  • Common lookup functions in Excel include VLOOKUP, HLOOKUP, INDEX-MATCH, and XLOOKUP.

  • Example: =VLOOKUP(A2, B:C, 2, FALSE) - this formula searches for the value in cell A2 in the first column of range B:C and returns the corresponding value from the second co...read more

Add your answer

Q10. what is DML in SQL ?

Ans.

DML stands for Data Manipulation Language in SQL, used for managing data in a database.

  • DML is used for inserting, updating, deleting, and retrieving data from a database.

  • Common DML commands include INSERT, UPDATE, DELETE, and SELECT.

  • Example: INSERT INTO table_name (column1, column2) VALUES (value1, value2);

Add your answer

Q11. how do you conduct data analysis?

Ans.

I conduct data analysis by collecting, cleaning, analyzing, and interpreting data to derive insights and make data-driven decisions.

  • Collect relevant data from various sources

  • Clean and preprocess data to ensure accuracy and consistency

  • Use statistical methods and tools to analyze data

  • Visualize data using charts, graphs, and dashboards

  • Interpret results and communicate findings to stakeholders

Add your answer

Q12. Why excel is used for data analyst?

Ans.

Excel is used for data analysis due to its user-friendly interface, powerful data manipulation capabilities, and ability to create visualizations.

  • Excel allows for easy data entry and manipulation, making it accessible for users of all skill levels.

  • It has powerful functions and formulas for data analysis, such as VLOOKUP, SUMIF, and PivotTables.

  • Excel can create visualizations like charts and graphs to help analyze and present data effectively.

  • It can handle large datasets and p...read more

Add your answer

Q13. what is data analysis?

Ans.

Data analysis is the process of inspecting, cleaning, transforming, and modeling data to discover useful information, draw conclusions, and make decisions.

  • Data analysis involves collecting and organizing data sets.

  • It includes cleaning and processing data to ensure accuracy.

  • Statistical analysis and data visualization are key components of data analysis.

  • Data analysis helps in identifying trends, patterns, and insights from data.

  • Examples include analyzing sales data to identify ...read more

Add your answer

Q14. explain DCL in sql ?

Ans.

DCL stands for Data Control Language in SQL, used to control access to data stored in a database.

  • DCL commands include GRANT and REVOKE, which are used to give or revoke permissions on database objects.

  • GRANT command is used to give specific privileges to a user or role.

  • REVOKE command is used to take back privileges that were granted with the GRANT command.

Add your answer

Q15. Write a dml commands?

Ans.

DML commands are used to manipulate data in a database.

  • DML stands for Data Manipulation Language

  • Common DML commands include INSERT, UPDATE, DELETE

  • Example: INSERT INTO table_name (column1, column2) VALUES (value1, value2)

Add your answer

Q16. Csv stand for?

Ans.

CSV stands for Comma-Separated Values.

  • CSV is a file format used to store tabular data in plain text.

  • Each line in a CSV file represents a row of data, with columns separated by commas.

  • CSV files can be easily imported and exported in spreadsheet software like Excel.

  • Example: 'name,age,city' on the first line, followed by 'John,25,New York' on the second line.

View 1 answer

Q17. Sql stand for?

Ans.

SQL stands for Structured Query Language.

  • SQL is a standard language for accessing and manipulating databases.

  • It is used to communicate with databases to perform tasks such as querying data, updating data, and creating tables.

  • Examples of SQL commands include SELECT, INSERT, UPDATE, DELETE, CREATE, and DROP.

Add your answer

Q18. Pivot table in excel

Ans.

A pivot table in Excel is a powerful tool for summarizing and analyzing data.

  • Pivot tables allow you to reorganize and summarize selected columns and rows of data in a spreadsheet.

  • You can easily group data, calculate totals, averages, and other statistics, and create custom calculations.

  • Pivot tables are dynamic and can be easily updated as the source data changes.

  • They are useful for analyzing large datasets and identifying trends and patterns.

  • Example: Creating a pivot table to...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at GD Goenka Public School

based on 13 interviews
2 Interview rounds
Technical Round
HR Round
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Data Analyst Interview Questions from Similar Companies

3.8
 • 25 Interview Questions
3.8
 • 16 Interview Questions
3.8
 • 16 Interview Questions
3.7
 • 13 Interview Questions
4.0
 • 11 Interview Questions
3.6
 • 11 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter