No products in the cart.

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

Ask Question
  • 1 answers

Sia ? 3 years, 10 months 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, 10 months 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, 10 months 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, 10 months 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, 10 months 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, 10 months 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, 10 months ago

12

Aman Gupta 3 years, 10 months ago

10

Dhwani Jain 3 years, 10 months 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, 10 months ago

Technology school college office jobs it
  • 3 answers

Sourav Kundu 3 years, 10 months ago

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

Sourav Kundu 3 years, 10 months ago

It can be changed ,it can not be change

Aaditay . 3 years, 10 months 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, 10 months ago

String ordered sequence made for used for data value that are

Aman Sharma 3 years, 11 months 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, 11 months 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, 10 months 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, 11 months 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, 11 months 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, 10 months 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
  • 2 answers

Ketan Ch 3 years, 11 months ago

Start-> take a number from user -->multiply the number by itself-->End

Ketan Ch 3 years, 11 months ago

a=int(input()) Print( a**2)
  • 1 answers

Vp Tech 4 years ago

Characteristic of a Computer Basic characteristics about computer are: characteristics of computer1. Speed: – As you know computer can work very fast. It takes only few seconds for calculations that we take hours to complete. You will be surprised to know that computer can perform millions (1,000,000) of instructions and even more per second. Therefore, we determine the speed of computer in terms of microsecond (10-6 part of a second) or nanosecond (10 to the power -9 part of a second). From this you can imagine how fast your computer performs work. 2. Accuracy: – The degree of accuracy of computer is very high and every calculation is performed with the same accuracy. The accuracy level is 7. determined on the basis of design of computer. The errors in computer are due to human and inaccurate data. 3. Diligence: – A computer is free from tiredness, lack of concentration, fatigue, etc. It can work for hours without creating any error. If millions of calculations are to be performed, a computer will perform every calculation with the same accuracy. Due to this capability it overpowers human being in routine type of work. 4. Versatility: – It means the capacity to perform completely different type of work. You may use your computer to prepare payroll slips. Next moment you may use it for inventory management or to prepare electric bills. 5. Power of Remembering: – Computer has the power of storing any amount of information or data. Any information can be stored and recalled as long as you require it, for any numbers of years. It depends entirely upon you how much data you want to store in a computer and when to lose or retrieve these data. 6. No IQ: – Computer is a dumb machine and it cannot do any work without instruction from the user. It performs the instructions at tremendous speed and with accuracy. It is you to decide what you want to do and in what sequence. So a computer cannot take its own decision as you can. 7. No Feeling: – It does not have feelings or emotion, taste, knowledge and experience. Thus it does not get tired even after long hours of work. It does not distinguish between users. 8. Storage: – The Computer has an in-built memory where it can store a large amount of data. You can also store data in secondary storage devices such as floppies, which can be kept outside your computer and can be carried to other computers.

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