All the students of Bsc CSIT and also tho who interested to learn coding must visit https://www.dyclassroom.com/ .It might be helpful to understand coding simple way.
DAY 2 select the correct option what part of an if statement should be indented? All of it The first line The statement within it indentation is not require which statement ends the current iteration and continues with the next one? break for continue while what is the result of this code?? >>>nums=list(range(5)) >>print(nums(4)) 4 1,2,3,4,5 5 0,1,2,3,4 What is the output of the following code? >>>while 4 == 4: print('4') 4 is printed once 4 is printed four times 4 is printed infinitely until program closes Syntax error What is the output of the following code? >>>if None: print(“Hello”) Nothing will be printed Hello hello Syntax Eror In Python, for and while loop can have optional else statement? Only for loop can have optional else statement Only while loop can have optional else statement Both loops can have optional else statement Loops cannot have else statement in Pyt...
What is Data Science? "We have lots of data – now what?" (How can we unlock real value from our data?) Data science is a multidisciplinary blend of data inference, algorithmm development, and technology in order to solve analytically complex problems. At the core is data. Troves of raw information, streaming in and stored in enterprise data warehouses. Much to learn by mining it. Advanced capabilities we can build with it. Data science is ultimately about using this data in creative ways to generate business value: Data Warehouse Discovery of Data Insight Quantitative data analysis to help steer strategic business decisions Development of Data Product Algorithm solutions in production, operating at scale (e.g. recommendation engines) Business Value I For more details visits: https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-1-python-basics?ex=1
Comments