10 / -2

0

sectors of the indian economy - ep02 - bkp | class 10 economics ncert chapter 2 explanation in hindi

By Beginner Wallace Haley at Oct 12 2020

1

what is the tracing output of the code below x=10 y=50 if(x**2> 100 and y <100): print(x,y)

By Beginner Austin Crist at Jun 17 2020

0

Given an array, choose two contiguous non-overlapping arrays, such that all elements are strictly increasing. Return the maximum length possible for this combination. Ex: 7 1 2 4 6 5 3 8 9 10 => ans: 7 (Choose 1 2 4 6 & 8 9 10) l

By Beginner Rudy Abernathy at Nov 04 2020

0

i=int(input("enter the number")); sum=0; pro=1; while(i>0): d=1%10; if (d%2==0): sum=sum+d; else: pro=pro*d; i=i//10; print("sum=",sum,"product=",pro);

By Beginner Devin McGlynn at May 27 2021

0

-url:https://scontent.flim17-1.fna.fbcdn.net/v/t15.6481-10/139458789_2337223449754401_5751835851572367039_n.jpg?_nc_cat=1&ccb=2&_nc_sid=49e4cd&_nc_ohc=3lxdmisv6jeax8ew-1j&_nc_ht=scontent.flim17-1.fna&oh=61efe61dd8ecce87d50b2495add2b1d8&oe=603eba05

By Beginner Gustavo Bruen at Feb 16 2021

0

def batting(balls,runs): points=runs/2; if runs>50: points=points+5; if runs>=100: points=points+10; strikerate=runs/balls; if strikerate>=80 and strikerate<=100: points=points+2; elif strikerate>100: points=points+4; print(points)

By Beginner Handsome Hoopoe at May 16 2020

0

Traceback (most recent call last): File "recaptcha.py", line 10, in conf = json.loads(open(f"config/recaptcha.json",f"r").read()) FileNotFoundError: [Errno 2] No such file or directory: 'config/recaptcha.json'

By Beginner mcb at Dec 08 2020

0

Write a program to declare a square matrix A[][] of order M x M where 'M' is the number of rows and the number of columns, such that M must be greater than 2 and less tham 10.

By Beginner Ark Fen at Nov 05 2020

0

print pattern 1 2 3 4 5 6 11 12 13 14 15 21 22 23 24 25 16 17 18 19 20 6 7 8 9 10 in java

By Beginner Wm Dietrich at Mar 10 2021


Related code examples


Code examples by languages