No products in the cart.

Ask questions which are clear, concise and easy to understand.

Ask Question
  • 1 answers

Sia ? 3 years, 7 months ago

forming an integral part of a structure or object a camera with a built-in flash especially : constructed as or in a recess in a wall a built-in bookshelf. b : built into the ground a built-in swimming pool.

  • 2 answers

Nishita Singh 3 years, 9 months ago

a=int(input"enter the number") If a%2==0: Print ("a,is even") Else: Print("a,is odd")

Nishita Singh 3 years, 9 months ago

a=int(input"enter the number") If a%2==0: Print ("a,is even") Else: Print("a,is odd")
  • 1 answers

Vedha ..... 3 years, 9 months ago

Script mode: It recovers intrepretor to execute the code.it gives slow response, difficult for learners. Interactive mode:It didn't recovers any intrepretor to execute the code. it gives quick response, easy for learners.
  • 1 answers

Himanshi Kumari 3 years, 9 months ago

Networking is the exchange of information and ideas among people with a common profession or special interest, usually in an informal social setting .Networking often beings with a single point of common ground .
  • 1 answers

Abhinav Upadhyay 3 years, 10 months ago

Computer-computer is a set of distinct machines like monitor,keyboard, cpu, Mouse,etc that comes together to form it. It cannot be moved easily from one place to another. WHEREAS- Laptop-laptop is a device whose functions are like computer but is easily movable, less expensive, good to use in office, school, shops ,etc.
  • 2 answers

Aries 24 3 years, 9 months ago

print("calculating mode of N number") || n=int(input("how many no. are there")) || nums=[ ] for i in range(n) : || a=int(input(" Enter no. ")) || nums.append(a) || difnums={ } || for x in nums: || if x not in difnums: || difnums[x]=1 || else: || difnums[x] +=1 | print(" No. With their frequency are") || maxfreq=0 || mode=0 for d in difnums. || keys( ) : || print(d, "comes", difnums[d], " times") || if difnums[d] > maxfreq: || maxfreq=difnums[d] || mode =d print("mode is", mode) || (|| means next line)

Aries 24 3 years, 9 months ago

print("calculating mode of N number") n=int(input("how many no. are there")) nums=[ ] for i in range(n) : a=int(input(" Enter no. ")) nums.append(a) difnums={ } for x in nums: if x not in difnums: difnums[x]=1 else: difnums[x] +=1 print(" No. With their frequency are") maxfreq=0 mode=0 for d in difnums. keys( ) : print(d, "comes", difnums[d], " times") if difnums[d] > maxfreq: maxfreq=difnums[d] mode =d print("mode is", mode)
  • 1 answers

Ankit Ydv 3 years, 10 months ago

a=(23,15,75,37,30,24) print (list(a)) b=[ ] for i in range(a): if a[i]%5==0 c=a[i] b.append(c) print (b) print(sum(b))
  • 1 answers

Ankit Ydv 3 years, 10 months ago

a=[2,4,5,9,8,6,3] b=[ ] for i in range(0,2): w=a[i]//2 b.append(w) c=[ ] for j in range(2,4): x=a[j]*2 c.append(x) d=[ ] for k in range(4,6): y=a[k]//2 d.append(y) e=[ ] for l in range(6,len(a)): z=a[l]*2 e.append(z); b.extend(c) d.extend(e) b.extend(d) print(b)
  • 1 answers

Aries 24 3 years, 9 months ago

Text= input("Enter a string") count=0 #for vowles for x in Text: if x in "aeiou": count+=1 print("No.of volwels in the string are:",count) #for consonants count=0 for x in Text: if x in"bcdfghjklmnpqrstvwxyz": count +=1 print ("No. of consonants are:", count) #for spaces count=0 for x in Text: if (x==" "): count +=1 print ("No. of spaces are:", count) #in same way find dots, commas, etc.
  • 1 answers

Ankit Ydv 3 years, 10 months ago

a=[2,7,9,6,3,10,15,13] b=[ ] for i in range (len(a)): if a[i]%2==0: h=a[i]//2 print('even number's,a[i] b.append(h) print(b) c=[ ] for k in range(len(a)): if a[k]%2 !=0: u=a[k]*2 print('odd numbers ',a[k]) c.append(u) print(c) b.extend(c) print(b)
  • 2 answers

Pankaj Singh 3 years, 8 months ago

x=[] for i in range (1,11): y=int(input('enter the number of a list') x.append(y) for i in x: if (i>1): for k in range(2,i//2+1): r=i%k if(r==0): break else: print(i,end=',')

Pankaj Singh 3 years, 10 months ago

int (inpu
  • 1 answers

Sia ? 3 years, 5 months ago

Kernel, Memory management, multitasking, security, networking, process execution, interrupt and user interface. Explanation: Kernel is the primary part of an OS that decided which program gets the access to which hardware in the device.
  • 1 answers

First Name 3 years, 10 months ago

a = int(input("Enter integer 1 : "))
b = int(input("Enter integer 2 : "))
for i in range(1,a+b):
⠀⠀⠀if a%i==0 and b%i==0:
⠀⠀⠀⠀⠀⠀⠀s=i
print("Greatest common integer = ",s)
  • 5 answers

Har Har Mahadev 🙏 3 years, 10 months ago

Thanks

First Name 3 years, 10 months ago

Indentation didn't came . Writing again from for loop :
s=1
for i in range (1,n+1):
⠀⠀⠀s=s+ sign*x**i
⠀⠀⠀s*= -1<br print("The sum of series is",s)

First Name 3 years, 10 months ago

sign*=-1 will come instead of s

First Name 3 years, 10 months ago

x = int(input("Enter the value of x : "))
n = int(input("Enter the value of n : "))
sign= -1
s=1 for i in range(1,n+1): ⠀⠀⠀s=s+ sign*x**i
⠀⠀⠀s*= -1
print("The sum os the series is", s)

Har Har Mahadev 🙏 3 years, 10 months ago

Print the sum not sun !
  • 1 answers

First Name 3 years, 10 months ago

x = int(input("Enter value of x : "))
n = int(input("Enter the value of n : "))
print("xⁿ = ", x**n)
Np
  • 2 answers

First Name 3 years, 10 months ago

K

Aadya Singh 3 years, 10 months ago

Maine apko naii bola ki thanks kar rhe?
  • 3 answers

Dhruv Agrawal 3 years, 10 months ago

Just send screenshot after running

Dhruv Agrawal 3 years, 10 months ago

What's the problem in this

First Name 3 years, 10 months ago

You have used ctr in the condition for for cheking . I dont think it is right
  • 1 answers

First Name 3 years, 10 months ago

n=int(input("Enter the value of n : "))
f=1
for i in range(1,n):
⠀⠀f*=1
print("The factorial is ", f)

myCBSEguide App

myCBSEguide

Trusted by 1 Crore+ Students

Test Generator

Test Generator

Create papers online. It's FREE.

CUET Mock Tests

CUET Mock Tests

75,000+ questions to practice only on myCBSEguide app

Download myCBSEguide App