Login
Remember
Register
User GeorgeBell
Wall
Recent activity
All questions
All answers
Ask a Question
Questions by GeorgeBell
+2
votes
1
answer
Which of the following machine learning models would you suggest to predict a quantity?
asked
Feb 6, 2020
in
Artificial Intelligence
#machine-learning-classification
0
votes
1
answer
____________ learning aids in uncovering hidden patterns from unlabeled data. Supervised Reinforcement Unsupervised
asked
Feb 6, 2020
in
Artificial Intelligence
+2
votes
1
answer
____________ learning uses data and answers to uncover the rules that build a problem.
asked
Feb 6, 2020
in
Artificial Intelligence
#machine-learning
#uses-data
+4
votes
1
answer
_____________ is a tool for turning information into knowledge.
asked
Feb 6, 2020
in
Artificial Intelligence
#machine-learning
#data-transformation
0
votes
1
answer
An observation that deviates significantly from other observations in the dataset is known as ____________.
asked
Feb 6, 2020
in
Artificial Intelligence
+4
votes
1
answer
______________ is given a system of rewards and punishments.
asked
Feb 6, 2020
in
Artificial Intelligence
0
votes
1
answer
_____________ aids in identifying the associations, correlations, and frequent patterns in data.
asked
Feb 6, 2020
in
Artificial Intelligence
#data-clustering
0
votes
1
answer
All major JavaScript Implementations are based on which standard?
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
The following code implements the ______ feature of ES6 function myFunction(x, y, z) { } var args = [0, 1, 2]; myFunction(...args);
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Check the Below code and check correct or not const { x, y } = { x: 11, y: 8 }; is the Same as const { x: x, y: y } = { x: 11, y: 8 };
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
What will be the output of following code snippet? function foo(a = 10, b = 5) { console.log(a, b); } foo(6);
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
During destructuring, you can either declare variables or assign to them, or both. (1)False (2)True
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Destructuring helps us to extract multiple values from an object via __________.
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Which is not a lexical inside arrow functions?
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Variables declared in a scope are accessible in ___________.
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Template literals can be defined as _________.
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Arrow Functions are less verbose than traditional functions (1)False (2)True
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Template literals can be reused __________.
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
What will be the output of the following code snippet in ES6? const func= ( x, y ) => { return x + y; }; func(11,12);
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Template literals support ____________.
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Which keywords can be used to implement inheritance in ES6?
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
The bodies of class declarations and class expressions are executed in strict mode. (1)True (2)False
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
_________ feature helps us to simplify the inheritance concept.
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Maps can be used to store __________.
asked
Jan 21, 2020
in
ECMAScript
0
votes
0
answers
Which is not true about static methods?
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Which is not true about static methods?
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Below is the extends class code class Player extends Student { constructor(roll, name) { super(roll, name); this.Player = true; } }; Here, super(roll,name); refers to the
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
What will be printed if the following code is executed? let x=150; if(x>100) { x=1; } console.log(x);
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Which of the following statements is not true about level of scope?
asked
Jan 21, 2020
in
ECMAScript
0
votes
1
answer
Which of the following is not a state of Promise?
asked
Jan 21, 2020
in
ECMAScript
Page:
« prev
1
...
44
45
46
47
48
49
50
51
52
53
54
...
58
next »
...