Posts

Client and Server Network

Image
Client and Server Network A computer is a machine that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern computers can follow generalized sets of operations, called programs. These programs enable computers to perform an extremely wide range of tasks. A "complete" computer including the hardware, the operating system (main software), and peripheral equipment required and used for "full" operation can be referred to as a computer system. This term may as well be used for a group of computers that are connected and work together, a computer network or a computer cluster. Computer technology combines the hardware of computers and computer-controlled devices with software operating systems, authoring tools, expert systems, and courseware to support training technology. Client-server model is a distributed application structure that separate tasks or workloads between the providers of a resource

Experience of not going tour

Hello it's me Sunil Singh tamang. Today I'm going to share my experience of not going tour. I spent my whole day by playing online games with my friends. It was really a enjoyable moment for me. I woke up morning at 6 o clock. My friends called me to play game. From 6 o clock I start playing game. It was my daily routine of holiday. Thank you.

25. WAP to display

1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 CLS A = 5 FOR I = 1 TO 10 PRINT A A = A + 5 NEXT I END

24. Wap to display

1 1 2 1 2 3 1 2 3 4 5 1 2 3 4 5 CLS FOR I = 1 TO 5 FOR J = 1 TO I PRINT J; NEXT J PRINT NEXT I END

23. 5,10,15,20 ... 10 term

CLS A = 5 FOR I = 1 TO 10 PRINT A A = A + 5 NEXT I END

22. 1,4,9,16... term

CLS FOR I = 1 TO 10 PRINT I ^ 2 NEXT I END

21. 1,1,2,3,5,8 up to 10 term

CLS A = 1 B = 1 FOR I = 1 TO 10 C = A + B A= B B = C NEXT I END