Question : You are working as a data science consultant for a gaming company. You have three member team and all other stake holders are from the company itself like project managers and project sponsored, data team etc. During the discussion project managed asked you that when can you tell me that the model you are using is robust enough, after which step you can consider answer for this question?
1. Data Preparation
2. Discovery
3. Operationalize
4. Model planning
5. Model building
Correct Answer : 5 Explanation: To answer whether the model you are building is robust enough or not, you need to have answer below questions at least - Model is performing as expected with the test data or not? - Whatever hypothesis defined in the initial phase is being tested or not? - Do we need more data? - Domain experts are convinced or not with the model? And all these can be answered when you have built the model and tested with the test data sets. Hence, correct option will be Model Building.
Question : Which of the following statements are correct with regards to R programming vector? A. Vector always have character types internally B. Vector is having one dimension. C. Vector elements are always with the same data types. D. Vector (1,2,3,"four",TRUE) internally store this value as "1" "2" "3" "four" "TRUE"
1. A,B 2. B,C 3. C,D 4. A,D 5. B,D
Correct Answer : 3 Explanation: Vector does not have any dimension and all the elements in the vector always be the same data types.
Question : Which of the following statement is true with regards to Array and List?
1. Array can have mixed data type values while List cannot.
2. List can have mixed data type values while Array cannot.
3. Both List and Array can have mixed data types.
4. Both List and Array can have only same data types.
Correct Answer : 2 Explanation: List can have mixed data types while Array cannot.