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.
LEARN BLOG TUTORIALS -------------------------------------- Blogger is a blog publishing service that allows multi-user blogs with time-stamped entries. It was developed by Pyra Labs, which was bought by Google in 2003. Generally, the blogs are hosted by Google at a sub domain of blogspot.com. 1.How to Create Free Blog: HOW TO CREATE BLOG ACCOUNT: Blogger is provided by Google, this is Google product. For use Blogger first you need a Google Account or Gmail account. Blogger provides a platform where you write your article and post on web. Before start Blogging: Choose your blogging Area : Before starting blogging you need to decide in which field you are perfect, if you have great knowledge in your area then you write a good content on your blog so this is most important to decide your blogging area. Choose a name for your blog: This is most important for your blog, ...
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...
Comments