No products in the cart.

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

Ask Question
  • 1 answers

Sia ? 3 years ago

The function of a microphone in a computer is to pick up sound, just like a microphone used by a singer on stage, and convert the audio sound waves

  • 2 answers

Sia ? 3 years, 1 month ago

  • CPU is the mother board of the computer.
  • It's main function is memory storage, arithmetical and control.
  • It has mainly three parts CU MU ALU

Harsh Singh 3 years, 1 month ago

CPU is the mother board of the computer. It's main function is memory storage, arithmetical and control. It has mainly three parts CU MU ALU
  • 1 answers

Sia ? 3 years, 1 month ago

Input unit and its significance:

Input unit refers to those devices which take input from the outside environment and converts it to the binary language which the computer can understand.

Significance of the Input unit:

This unit is very important in the computer because it is the medium through which user can send information into the computer and converts it into ‘binary language’.  

The computer unit consists of the following units:

  • Input unit  
  • Output unit
  • Storage unit
  • CPU
  • ALU
  • Control unit.
  • 2 answers

Preeti Dabral 3 years, 1 month ago

# python program to find the sum of series: 1 + x² + x³ + ... + xⁿ

n = int(input('Enter the value of n: '))

x = int(input('Enter the value of x: '))

sum_of_series = 0

for i in range(n+1):

   sum_of_series += pow(x,i)

print('Sum of the series is:', sum_of_series)  

  • Input the value of x and n from user as integer type
  • define a variable with value of zero to add up till the sum of series, this must be outside the loop, else each time the loop repeats value will set to zero defeating the purpose.
  • we use for loop with range of i varying from 0 to n (remember this is not for infinite series)  giving the power of x from 0 to n
  • evey iteration we add x^i to the sum
  • finally print the sum of series

Anmol Chawla 3 years, 1 month ago

x = int(input("Enter a value of x")) y = int(input("Enter a value of y(for x**n)")) sum = 0 for i in range(n+1): sum+ = x**i print("The sum total of ",n,"Terms:-" sum)
  • 0 answers
  • 1 answers

Sia ? 3 years, 1 month ago

num = int(input("Enter a number: "))  

sum = 0  

temp = num    

while temp > 0:  

   digit = temp % 10  

   sum += digit ** 3  

   temp //= 10    

if num == sum:  

   print(num,"is an Armstrong number")  

else:  

   print(num,"is not an Armstrong number")  

  • 1 answers

Sia ? 3 years, 1 month ago

n = int(input("Enter any number: ")) sum1 = 0 for i in range(1, n): if(n % i == 0): sum1 = sum1 + i if (sum1 == n): print("The number is a Perfect number! ") else: print("The number is not a Perfect number! ")

  • 1 answers

Sia ? 3 years, 1 month ago

Some experts argue, however, that VoIP specifically refers to sending voice traffic over an IP network. In contrast, IP telephony is a broader umbrella term that refers to any telephone-type communication service carried over IP -- this could include faxing, text messaging and more.

  • 3 answers

Aman Gupta 3 years, 1 month ago

12

Aman Gupta 3 years, 1 month ago

10

Dhwani Jain 3 years, 1 month ago

The output will be 10 as x-=y means that x=x-y which is x=25-15. So the answer is x=10. The print command will give this output ~ '10'
  • 1 answers

Sourav Kundu 3 years, 1 month ago

Technology school college office jobs it
  • 3 answers

Sourav Kundu 3 years, 1 month ago

It can be change it can not be change it is opposite to mutable

Sourav Kundu 3 years, 1 month ago

It can be changed ,it can not be change

Aaditay . 3 years, 1 month ago

Mutable data can be changed in space of word which we want to replace e.g list ,tuple etc and immutable is opposite to mutable data e.g string etc
  • 2 answers

Sourav Kundu 3 years, 1 month ago

String ordered sequence made for used for data value that are

Aman Sharma 3 years, 1 month ago

Strings are used for data value that are made up of ordered sequence of characters. For eg:- GOOD MORNING
  • 1 answers

Akhil K 3 years, 1 month ago

num=int(input("enter a number:")) if (num%2==0): print(num,'is a even number') else: print(num,'is a odd number')
  • 2 answers

Sourav Kundu 3 years, 1 month ago

days=int(input('enter the number of days:')) if (days<=5): print('library charge is',days*2) elif (days<=10): print('library charge is',days*3) elif (days<=15): print('library charge is',days*4) elif(days>15): print('library charge is ',days*5) else: print('invalid input')

Akhil K 3 years, 1 month ago

days=int(input('enter the number of days:')) if (days<=5): print('library charge is',days*2) elif (days<=10): print('library charge is',days*3) elif (days<=15): print('library charge is',days*4) elif(days>15): print('library charge is ',days*5) else: print('invalid input')
  • 0 answers
  • 1 answers

Prem Sharma 3 years, 1 month ago

L=int(input("enter lenght") B=int(input("enter breath") H=int(input("enter height") Vol = l*b*h Print("volume of cuboid:-",vol)
  • 1 answers

Sourav Kundu 3 years, 1 month ago

Let length 3 Breadth 4 Height 6 Area 2(l x b x h) 2(3 x 4 x6) 2x72 144 cm2
  • 0 answers
Hg
  • 0 answers
  • 0 answers
  • 0 answers
  • 0 answers

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