Skip to main content

Posts

Important questions and answer of look at the tea cup

Important Questions and Answers:   How does Hampel see herself and her mother connected by the teacup? Ans: Hampel’s mother bought a teacup in 1939. The Second World War also started in the same year. That teacup was brought to America from Czechoslovakia before the beginning of the war. The level of tea in the cup can be seen from outside. There are thin bands of gold around the edges of the saucer and the cap. There is also a band of gold on the inner, which has been disappeared by the constant use. There is no decoration outside cup. There were flowers, later on, Hampel’s mother handed that cup to Hampel to hand over the tradition and culture of her own generation to Hampel. This is the gift given to Hampel by her mother. Hampel’s cultural values are disappearing as the bands of inner circle of the saucer and tea cup disappearing. This cup reminds Hampel about not only her mother but also the tragic destruction of the Second World War.  What do you mean by “m...
Recent posts

SLC Examination 2070

SLC Examination 2070 (2014) RE 1. Answer the following questions. a) What is network topology ? Write any one advantage of star topology. => The arrangement or connection pattern of computers or nodes and other devices of the network is called network topology. Advantage of star topology is it is easy to detect errors . b) Give any two advantages of e-mail over traditional mail. => Advantages It is very fast compare to traditional mail. It allows to send and receive message across the world. c) List any two main aims of formulating cyber law in Nepal. => Two main aims of formulating cyber law in Nepal are: Provides punishment who conducts cyber crime Provides legal status for various banking transaction through electronic media, which will be instrumental in boosting economic activities throughout the world via internet. d) Give any two symptoms of virus attack. => Two symptoms of virus attack  Program takes long...

17 QBASIC Programming

1. Create a sequential file "std.dat" to store name and marks obtained in English, Math and Science subjects for a few students. (74 set 1) OPEN   “std.dat”   FOR OUTPUT   AS   #1 DO CLS INPUT “Enter name “; N$ INPUT   “Enter English marks”; E INPUT “Enter Math's marks"; M INPUT "Enter Science marks"; S WRITE #1, N$, E, M, S INPUT "Do you want to continue (Y/N)";CH$ LOOP WHILE UCASE$ (CH$) "Y" CLOSE #1 END 4.   WAP to add some more   records in a data file “ABC.DAT” having following fields : patient’s name, address and age.  OPEN   “ABC.DAT”   FOR OUTPUT   AS   #1 DO CLS INPUT “Enter Patients name “; N$ INPUT   “Enter patients address”; A$ INPUT “Enter Patient's age "; A WRITE #1, N$, A$, A INPUT "Do you want to continue (Y/N)";CH$ LOOP WHILE CH$="Y" OR CH$="y" CLOSE #1 END       6.WAP to store records regarding the information of book’s number, name and author’s ...