Computer Sciences-Xii Practice-1 (Solution)
Computer Sciences-Xii Practice-1 (Solution)
CLASS XII
COMPUTER SCIENCE (083)
SECTION A
1. True
2. (c) 8,15
3. (a) Annu.l Meet .t the Cmpus
4. (b) 8100
5. (c) 8,7
6. (d) Infrared
7. (a) 980
8. (a) dict_items([('emp', 'Yuvan'), ('Salary', 105000), ('city', 'Pune')])
9. *40 ide CEENCSNSB*
10. (a) 90 @
77 @
65 @
33 @
11. (b) FTP
12. 250 is minimum
13. (d) raise
14. Alter table Client add Contact_No integer (10);
15. Any 2 advantages of Bus Topology in a network are—
(a) Nodes can be connected or removed easily from the network.
(b) It is easy to implement and can be extended up to a certain limit.
16. f.seek(20) moves the file pointer to 20th byte in the file, no matter where we are in the file.
17. (c) A is True but R is False.
18. (b) Both A and R are true and R is not the correct explanation for A.
SECTION B
19. (i) SMTP—Simple Mail Transfer Protocol
URL—Uniform Resource Locator
(ii) Website—It is a collection of web pages, images, videos, audios, etc., that are hosted on a web server.
Web Page— It is an electronic document which displays information in textual or graphical form. It is of two
types such as static web page and dynamic web page.
OR
(i) (a) Router
(b) Hub
OR
def REPLACE_VOWEL(st):
newstr = ''
for character in st:
if character in 'aeiouAEIOU':
newstr += '*'
else:
newstr += character
return newstr
st = input("Enter a String: ")
st1 = REPLACE_VOWEL(st)
print("The original String is:",st)
print("The modified String is:",st1)