Full Chapter- Flow Of Control | ONE SHOT VIDEO with PROGRAMS | Python Class 11 Computer Science CBSE

preview_player
Показать описание
Full Chapter- Flow Of Control | ONE SHOT VIDEO with PROGRAMS | Python Class 11 Computer Science CBSE

Class: 11th
Subject: Computer Science
Chapter: Flow Of Control (Chapter-9)
Topic Name: Flow of Control- Complete Chapter

👉Points covered in this video:-

- Full Chapter- Flow Of Control
- -One Shot Video- Flow Of Control

00:00:00 - Flow of Control in Python
00:24:45 Repetition of Tasks & Range
00:48:46 - Flow of Control in Python (Practically)
01:17:38 - Flow of Control in Python (For Loop, While Loop)
01:33:48 - Flow of Control in Python ( Jump Statements, Nested Loops)

🔔 Support Us by SUBSCRIBING. And Please Like, Comment & Share our Tutorials 🔔

~Contact us:-

♥️ Thank You ♥️

#FlowOfControl #Chapter9Class11 #ComputerSciencewithPython
Рекомендации по теме
Комментарии
Автор

Literally 'the best' channel for cs students... Love u sir

AYUSHBEHERAA
Автор

trying to finish syllabus before exam thank you very much sir

shubhranshchakroborty
Автор

Thanks sirrr for your hardwork, so that we can use your videos before exam ....❣️

kaustav
Автор

I would recommend that you use a dark shaded background in order to make your eyes more comfortable, sir.

nishac
Автор

Jee aspirants be like : ye kya kya krna pad rha hai 😔

BhavaySharma-corg
Автор

sir the way you teach is amazing, every concept gets clear . But when ever you show a new slide on the screen please move away from the screen for 4 or 5 sec so that we will be able to note everything properly thank you

SubhapriyadarshanPanda
Автор

Sir you skipped the m/f code question 😢 you know i am watching it carefully but last you skipped that one😮 58:45

sadeepsingh-xbrj
Автор

very good videosss i watched your videos during my whole class 11th and now tommorow is my final exam of

div-joshi
Автор

On 20:46 you have cut the video about how it printed 1 then 2 then "3" but you cropped that

technicalskies
Автор

Exelent explained You passed in exams Great thanks

Aman_Mehta____
Автор

Video would be more beneficial if the link of notes of this chapter available in the pdf form in description box ... 🙂

AshishSingh-uxgm
Автор

sir you are amazing. Your way of teaching is very easy way. You always try to teach us by giving so simple examples. Thank you so much sir. I feel that cs is very easy and interesting because of you.

chanchalsaraswat
Автор

this sir has been so helpful i have subscribed him just for this

but the only thing is that the all the example code in our books is not explained but the concept is totally explain so try to post videos on that too sir

yogex_demon
Автор

tomorrow is my exam and i'm watching today😅😄😄

mindset
Автор

After a long time finally got a good channel for Coumpter✌✌

anitasahu
Автор

Thank You very much SIR..literally not found a better computer science lecturer than you sir in youtube

bhabani_sm
Автор

# Program make a simple calculator

# This function adds two numbers
def add(x, y):
return x + y

# This function subtracts two numbers
def subtract(x, y):
return x - y

# This function multiplies two numbers
def multiply(x, y):
return x * y

# This function divides two numbers
def divide(x, y):
return x / y


print("Select operation.")
print("1.Add")
print("2.Subtract")
print("3.Multiply")
print("4.Divide")

while True:
# take input from the user
choice = input("Enter choice(1/2/3/4): ")

# check if choice is one of the four options
if choice in ('1', '2', '3', '4'):
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))

if choice == '1':
print(num1, "+", num2, "=", add(num1, num2))

elif choice == '2':
print(num1, "-", num2, "=", subtract(num1, num2))

elif choice == '3':
print(num1, "*", num2, "=", multiply(num1, num2))

elif choice == '4':
print(num1, "/", num2, "=", divide(num1, num2))

# check if user wants another calculation
# break the while loop if answer is no
next_calculation = input("Let's do next calculation? (yes/no): ")
if next_calculation == "no":
break

else:
print("Invalid Input")

scary
Автор

Sir ur explanation is outstanding



But
One thing that does not sounds good is "friends" which you use

mishramedicalstor
Автор

Great video watching before examinations

jairamsharma
Автор

Sir in practical at 1:10:48 with the coding you have done it will not show if string are not equal two more lines are to be added
else:
print("both strings are not equal")

adityasharma-sisr
visit shbcf.ru