0% found this document useful (0 votes)
3 views3 pages

Class 11 Computer Science Autumn Homework

Uploaded by

a45469513
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views3 pages

Class 11 Computer Science Autumn Homework

Uploaded by

a45469513
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Autumn Break Home Work For Class – 11 Computer Science Students

1. What is cache memory?


2. What is the role of CPU of a mobile system?
3. What are various categories of software?
4. What is the difference between an interpreter and a compiler?
5. What is application software? Why is it required?
6. What is the need for secondary Memory?
7. Concert the following decimal numbers to binary
8. i) 54 ii) 25 iii) 84 iv) 3.25
9. Convert the following binary numbers to decimal
10.i)(100101)2 ii) (101010)2 iii) (1010.1101)2
[Link] (11011110101110)2 to hexadecimal & Octal.
[Link] (4A8C)16 to binary.
[Link] FACE to binary.
[Link] (72905)10 to hexadecimal.
[Link] (3674)8 to binary.
[Link] all the binary numbers
(a) 110101 and 101111
(b) 10110 and 1101
[Link] the following octal numbers into their
equivalent decimal numbers.
a)145 b) 6760 c)455 iv) 10.75
[Link] is IOT?
[Link] is Artificial Intelligence(AI)? What are some applications of AI?
[Link] the Full form of (i) IaaS (ii) Paas (iii) SaaS
[Link] is Cloud Computing?
[Link] is a Cloud Computing Service Provider?
[Link] does Block chain technology do?
[Link] is an Algorithm?
[Link] is testing and debugging?
[Link] a Flowchart to find the sum of first 50 natural numbers.
[Link] a Flowchart to count and print from 1 to 10.
[Link] pseudocode to count and print from 1 to 10.
[Link] pseudocode to calculate the factorial of a Number.
[Link] an algorithm that accepts four numbers as input and find the largest and
smallest of them.
31. Python is a free and open source language, what do you understand by this
feature?
[Link] is the difference between interactive mode and script mode in python?

[Link] of the following are not valid strings in python?

a)”Hello” b)’Hello’ c) “Hello’ d)’Hello” e) [Hello)

[Link] is the difference between a keyword and an identifier?


[Link] many types of strings are supported in python?
[Link] is following code giving errors?
37. Name = “Rehman”
[Link](“Greetings !!!”)
print(“Hello”, name)
print(“How do you do?”)
[Link] will be the output of following code?
x,y = 2,6
x,y = y, x+2
print(x,y)
[Link] the output of the following
41.(a) num1 = 4
Num2 = num1 +1
Num1 = 2
print(num1, num2)
[Link] a program to swap numbers using a third variable.
[Link] a program to find average of three numbers.
[Link] the output
45.a,b,c = 2,3,4
a,b,c = a*a, a*b, a*c
print(a,b,c)
46. What will the following code result into?
47. n1,n2 = 5,7
n3 = n1+n2
n4=n4+2
print(n1,n2,n3,n4)
[Link] do you understand by term “immutable”?
[Link] will be the output of the following?
print (len(str(17//4)))
print(len(str(17/4)))
[Link] will be the output of following code?
51.5<5 or 10
5<10 or 5
5< (10 or 5)
5< (5 or 10)
52.W.A.P to repeat the string “Good Morning” n times. Here ‘n’ is an integer
entered by the user.
53. W.A. P that takes a number and checks whether the given number is odd or
even?
54.W.A. P that reads two numbers and an arithmetic operator and displays the
compound result.
55.W.A. P to print whether the given character is an uppercase or a lowercase
character or a digit or any other character?

You might also like