Find Interview Questions for Top Companies
Bjss Interview Questions and Answers
Ques:- A corn feed company has eight manufacturing plans located in the Midwest. These plants services the entire U.S. Their plant in Ohio is in need of refurbishing. The company has four possible options: refurbish the existing plant, build a larger plant at the current location, build a similar size plant at a new location, and build a larger plant at a new location.
Right Answer:
The company should conduct a cost-benefit analysis for each option, considering factors like refurbishment costs, construction costs, operational efficiency, and potential market reach, to determine the best choice for their needs.
Ques:- Company is failing, you have been brought in to save it, what do you do?
Right Answer:
Assess the current situation, identify key issues, engage with employees and stakeholders, streamline operations, focus on core products or services, improve cash flow, and develop a strategic plan for turnaround.
Ques:- What are descriptive and inferential statistics
Right Answer:
Descriptive statistics summarize and describe the main features of a dataset, using measures like mean, median, mode, and standard deviation. Inferential statistics use sample data to make predictions or inferences about a larger population, often employing techniques like hypothesis testing and confidence intervals.
Ques:- What are the steps involved in data cleaning
Right Answer:
1. Remove duplicates
2. Handle missing values
3. Correct inconsistencies
4. Standardize formats
5. Filter out irrelevant data
6. Validate data accuracy
7. Normalize data if necessary
Ques:- What is data normalization and why is it important
Right Answer:
Data normalization is the process of organizing data in a database to reduce redundancy and improve data integrity. It involves structuring the data into tables and defining relationships between them. Normalization is important because it helps eliminate duplicate data, ensures data consistency, and makes it easier to maintain and update the database.
Ques:- How do you handle missing data in a dataset
Right Answer:
To handle missing data in a dataset, you can use the following methods:

1. **Remove Rows/Columns**: Delete rows or columns with missing values if they are not significant.
2. **Imputation**: Fill in missing values using techniques like mean, median, mode, or more advanced methods like KNN or regression.
3. **Flagging**: Create a new column to indicate missing values for analysis.
4. **Predictive Modeling**: Use algorithms to predict and fill in missing values based on other data.
5. **Leave as Is**: In some cases, you may choose to leave missing values if they are meaningful for analysis.
Ques:- What is the difference between supervised and unsupervised learning
Right Answer:
Supervised learning uses labeled data to train models, meaning the output is known, while unsupervised learning uses unlabeled data, where the model tries to find patterns or groupings without predefined outcomes.
Ques:- Solution for solving problems generated by virtual functions
Asked In :- bjss,
Ques:- What version of JBoss AS do I need to run Seam?
Asked In :- bjss,
Ques:- Describe how to implement Cookies for Web python.
Comments
Admin May 17, 2020

A cookie is an arbitrary string of characters that uniquely identify a session.
Each cookie is specific to one Web site and one user.
The Cookie module defines classes for abstracting the concept of cookies. It contains following method to creates cookie
Cookie.SimpleCookie([input])
Cookie.SerialCookie([input]
Cookie.SmartCookie([input])
for instance following code creates a new cookie ck-
import Cookie
ck= Cookie.SimpleCookie ( x )

Ques:- What is the lambda operator ?
Right Answer:
The lambda operator in Python is used to create small anonymous functions at runtime. It is defined using the `lambda` keyword followed by parameters, a colon, and an expression. For example, `lambda x: x + 1` creates a function that adds 1 to its input.
Ques:- How the string does get converted to a number?
Comments
Admin May 17, 2020

• To convert the string into a number the built-in functions are used like int() constructor. It is a data type that is used like int (‘1’) ==1.
• float() is also used to show the number in the format as float(‘1’)=1.
• The number by default are interpreted as decimal and if it is represented by int(‘0x1’) then it gives an error as ValueError. In this the int(string,base) function takes the parameter to convert string to number in this the process will be like int(‘0x1’,16)==16. If the base parameter is defined as 0 then it is indicated by an octal and 0x indicates it as hexadecimal number.
• There is function eval() that can be used to convert string into number but it is a bit slower and present many security risks like __import__('os').system("rm -rf$HOME") - use of this will delete the home directory of the system.

AmbitionBox Logo

What makes Takluu valuable for interview preparation?

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