i
Oracle
Filter interviews by
I applied via Approached by Company and was interviewed before Jun 2023. There were 2 interview rounds.
DISTINCT is used in SQL to retrieve unique values from a column or set of columns.
DISTINCT eliminates duplicate rows from the result set
It is often used in SELECT statements to only return unique values
Example: SELECT DISTINCT column_name FROM table_name
Joins in SQL are used to combine rows from two or more tables based on a related column between them.
Joins are used to retrieve data from multiple tables based on a related column
Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN
Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column
Top trending discussions
I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.
I applied via Company Website and was interviewed in Dec 2024. There were 3 interview rounds.
Basic self evaluation test.
Handling class imbalance involves techniques like resampling, using different algorithms, and adjusting class weights.
Use resampling techniques like oversampling or undersampling to balance the classes.
Utilize algorithms that are robust to class imbalance, such as Random Forest, XGBoost, or SVM.
Adjust class weights in the model to give more importance to minority class.
Use evaluation metrics like F1 score, precision, r...
I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.
Count pairs of numbers where ending digit of ith number equals starting digit of jth number.
Iterate through each pair of numbers in the list
Check if the ending digit of the ith number equals the starting digit of the jth number
Increment the count if the condition is met
Interpretation of graphs in linear regression analysis
Perpendicular lines from error to fitted line in first graph indicate OLS using projection matrices
Lines parallel to y-axis from error to fitted line in second graph suggest evaluation of linear regression to y-pred - y-actual method
PCA could also be a possible interpretation for the second graph
np.einsum() performs Einstein summation on arrays.
Performs summation over specified indices
Can also perform other operations like multiplication, contraction, etc.
Syntax: np.einsum(subscripts, *operands)
numpy.random.rand generates random numbers from a uniform distribution, while numpy.random.randn generates random numbers from a standard normal distribution.
numpy.random.rand generates random numbers from a uniform distribution between 0 and 1.
numpy.random.randn generates random numbers from a standard normal distribution with mean 0 and standard deviation 1.
Example: np.random.rand(3, 2) will generate a 3x2 array of r...
Logit is the log-odds of the probability, while probabilities are the actual probabilities of an event occurring.
Logit is the natural logarithm of the odds ratio, used in logistic regression.
Probabilities are the actual likelihood of an event occurring, ranging from 0 to 1.
In deep learning, logit values are transformed into probabilities using a softmax function.
Logit values can be negative or positive, while probabili
posted on 29 Dec 2024
It is nice to do work
It helps in understanding the 5
It helps a lot in company
The goal of a Data Analyst is to analyze data to extract valuable insights and make data-driven decisions.
Identify trends and patterns in data
Create visualizations to communicate findings
Provide actionable recommendations based on data analysis
I applied via Referral and was interviewed in Feb 2024. There were 5 interview rounds.
I am responsible for analyzing data, creating reports, and providing insights to support decision-making.
Analyze large datasets to identify trends and patterns
Create reports and dashboards to visualize data for stakeholders
Provide insights and recommendations based on data analysis
Collaborate with cross-functional teams to drive data-driven decision-making
Lead Data Analyst oversees data analysis team, develops strategies, interprets data, and presents insights to stakeholders.
Manage and lead a team of data analysts
Develop data analysis strategies and methodologies
Interpret data and provide actionable insights to stakeholders
Collaborate with cross-functional teams to drive data-driven decision making
Ensure data quality and accuracy in analysis
Stay updated on industry tre
Sales Comp is a system that determines how salespeople are compensated based on their performance.
Sales Comp is short for Sales Compensation
It involves designing and implementing a system to reward salespeople based on their sales performance
Roles include setting sales targets, determining commission structures, and monitoring sales performance
Responsibilities include analyzing sales data, calculating commissions, and ...
I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.
I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.
I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.
Find the Highest profit by geo
I applied via Naukri.com and was interviewed in Dec 2022. There were 3 interview rounds.
String Reverse Coding Test
User
Share Detail for coding test
ChatGPT
Certainly! I'd be happy to provide you with details for a coding test. Here's an example of a coding test description:
Title: String Reversal
Description:
Write a function that takes a string as input and returns the reverse of that string. The function should reverse the order of characters in the string and return the reversed string as the output.
Requirements:
The function should be named reverseString and take a single parameter, inputString, of type string.
The function should return a string.
The function should handle both uppercase and lowercase letters.
The function should preserve any whitespace or special characters in the input string.
The function should not use any built-in or library functions that directly solve this problem.
Example:
Input: "Hello, World!"
Output: "!dlroW ,olleH"
Note:
The input string can be of any length.
The input string may contain alphanumeric characters, whitespace, or special characters.
Evaluation Criteria:
Correctness of the solution.
Efficiency and clarity of the code.
Proper handling of edge cases and error conditions.
Adherence to coding best practices.
Please complete the task within 30 minutes and submit your solution as a single file. Feel free to use any programming language you are comfortable with.
Good luck!
String Reverse Coding Test
User
Share Detail for coding test
ChatGPT
Certainly! I'd be happy to provide you with details for a coding test. Here's an example of a coding test description:
Title: String Reversal
Description:
Write a function that takes a string as input and returns the reverse of that string. The function should reverse the order of characters in the string and return the reversed string as the output.
Requirements:
The function should be named reverseString and take a single parameter, inputString, of type string.
The function should return a string.
The function should handle both uppercase and lowercase letters.
The function should preserve any whitespace or special characters in the input string.
The function should not use any built-in or library functions that directly solve this problem.
Example:
Input: "Hello, World!"
Output: "!dlroW ,olleH"
Note:
The input string can be of any length.
The input string may contain alphanumeric characters, whitespace, or special characters.
Evaluation Criteria:
Correctness of the solution.
Efficiency and clarity of the code.
Proper handling of edge cases and error conditions.
Adherence to coding best practices.
Please complete the task within 30 minutes and submit your solution as a single file. Feel free to use any programming language you are comfortable with. Good luck!
User
Share derail for amplitude test
ChatGPT
Certainly! Here's an example of a coding test description for an amplitude test:
Title: Finding Amplitude
Description:
Write a function that takes a list of integers as input and returns the amplitude of the list. The amplitude of a list is defined as the difference between the largest and smallest elements in the list.
Requirements:
The function should be named findAmplitude and take a single parameter, inputList, which is a list of integers.
The function should return an integer representing the amplitude of the input list.
The function should handle both positive and negative integers.
The function should handle an empty list as input and return 0 as the amplitude.
Example:
Input: [2, 5, 9, -1, 3, 7]
Output: 10
Explanation:
The largest element in the list is 9, and the smallest element is -1. Therefore, the amplitude is 9 - (-1) = 10.
Note:
The input list can contain duplicates.
The input list can be of any length.
Evaluation Criteria:
Correctness of the solution.
Efficiency and clarity of the code.
Proper handling of edge cases and error conditions.
Adherence to coding best practices.
Please complete the task within 30 minutes and submit your solution as a single file. Feel free to use any programming language you are comfortable with.
Good luck!
Certainly! Here's an example of a group discussion topic:
Topic: The Impact of Artificial Intelligence on the Job Market
Description:
In this group discussion, we will explore the impact of artificial intelligence (AI) on the job market. AI is rapidly advancing, and its integration into various industries and sectors has raised concerns about the future of work.
Points to consider:
Potential job displacement: Discuss how AI has the potential to automate tasks and replace human jobs in various fields. Explore which industries or job roles are most susceptible to automation and the potential consequences for workers.
Job creation: Explore the other side of the argument and discuss how AI can also create new job opportunities. Consider the emergence of AI-related roles such as data scientists, AI trainers, and AI ethicists. Discuss the skills and expertise required for these new job roles.
Skills and education: Discuss the importance of skills development and education in adapting to the changing job market. Explore what skills will be in high demand in an AI-driven economy and how individuals and organizations can upskill or reskill to remain relevant.
Ethical considerations: Consider the ethical implications of AI in the job market. Discuss issues such as algorithmic bias, data privacy, and the responsibility of companies and policymakers in ensuring a fair and inclusive job market.
Job market transformation: Discuss the overall transformation of the job market due to AI. Explore how AI is reshaping traditional job roles, the gig economy, and the potential for new forms of work, such as remote work and flexible arrangements.
Guidelines:
Each participant should express their thoughts and ideas clearly and respectfully.
Encourage active listening and give everyone an opportunity to speak.
Support your arguments with relevant examples or data, if possible.
Be open to different perspectives and engage in constructive debate.
Evaluation Criteria:
Clarity of thought and expression.
Ability to articulate and support arguments.
Active participation and engagement with other participants.
Respectful and collaborative attitude towards the group discussion.
Please prepare your thoughts on the topic before the discussion. The group discussion will last for approximately 30 minutes. Good luck!
based on 2 interviews
Interview experience
based on 2 reviews
Rating in categories
Senior Software Engineer
2.4k
salaries
| ₹10 L/yr - ₹40 L/yr |
Senior Consultant
2.1k
salaries
| ₹9 L/yr - ₹25 L/yr |
Principal Consultant
2k
salaries
| ₹10.9 L/yr - ₹36 L/yr |
Senior Member of Technical Staff
1.8k
salaries
| ₹12 L/yr - ₹45 L/yr |
Senior Application Engineer
1.4k
salaries
| ₹9.4 L/yr - ₹32 L/yr |
SAP
MongoDB
Salesforce
IBM