in Technology by
var dataset = [ 5, 10, 15, 20, 25 ]; What will be output of d3.extent(data)? -

1 Answer

0 votes
by

var dataset = [ 5, 10, 15, 20, 25 ]; What will be output of d3.extent(data)? - 

Correct answer is :- Wrong([5, 25])

Related questions

0 votes
    Which of the following attribute is being used to put the pen down at (10,25) in SVG?...
asked Mar 7, 2023 in Technology by JackTerrance
0 votes
    Which is not a slider available in d3.js?...
asked Mar 7, 2023 in Technology by JackTerrance
0 votes
    D3 is developed by ________ ?...
asked Mar 4, 2023 in Technology by JackTerrance
0 votes
    What is the syntax to draw a line in D3 -...
asked Mar 4, 2023 in Education by JackTerrance
0 votes
    _______is the syntax to read JSON data?...
asked Mar 4, 2023 in Technology by JackTerrance
0 votes
    – 7 Simplify: -5 3 13 13 (b) 25 (c) -30 (d) 10+ 1 2 (e) -15+1 (1) 35 6 3 8 Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
0 votes
    I have 100 records in source table, but I want to load 1, 5,10,15,20…..100 into target table. How can I do this? Explain in detailed mapping flow....
asked Mar 28, 2021 in Technology by JackTerrance
0 votes
    What does SVG stand for?...
asked Mar 4, 2023 in Technology by JackTerrance
0 votes
    write the steps to search the 13 from the following element using binary search 2,4,5,8,9,11,12,13,15,18,21,22,25,29,30 Select the correct answer from above options...
asked Dec 13, 2021 in Education by JackTerrance
0 votes
    The impedance matrices of two, two-port network are given by [3 2; 2 3] and [15 5; 5 25]. The ... Questions for GATE EC Exam, Network Theory MCQ (Multiple Choice Questions)...
asked Oct 16, 2021 in Education by JackTerrance
0 votes
    What is the output of the following expression? function multi(x,y) { var c = x*y; } multi(20,3); 1. 20 2. 60 3. 3 4. Nothing...
asked Feb 25, 2021 in Technology by JackTerrance
0 votes
    What is the output of the following expression? function multi(x,y) { var c = x*y; } multi(20,3); A) 20 B) 60 C) 3 D) Nothing...
asked Oct 9, 2020 in Technology by JackTerrance
0 votes
    Predict the output of the following JavaScript code.
    Code A: var x = 10; y = --x + 1; alert(y); Code B: var x = 10; y = x-- + 1; alert(y); What is the output for code A and B? 1. 10,11 2. 10,10 3. 11,10 4. 11,11...
asked Feb 23, 2021 in Technology by JackTerrance
...