Saturday, September 12, 2020

TWISTED PAIR CABLE

   TWISTED PAIR CABLE


1)Twisted pair cable is the oldest and common form of transmission. It is used for telephone communications and most modern Ethernet networks. 


2)

USES:

 i) Used for telephone              communications and most modern Ethernet networks. 

ii) For the transmission of data.

   FUNCTION

i)To reduce the effect of  common-mode

ii) Helps to reduce crosstalk and electromagnetic induction. 


3:

 

 


 4:
TWISTED pair cabling is composed of the following components: Two wires that carry the data signals (one conductor carries a positive signal; one carries a negative signal). They are made of 22 or 24 gauge copper wiring


Tuesday, September 8, 2020

Teej

                    TEEJ             



Teej is a festival celebrated by Nepali women for the long life of her husband and a long and firm relationship between them until the death this life and all the live to come.Teej is observed for marital happiness,the well being of spouse and children and purification of own body and soul. Teej is the most famous festival among Nepali women. 

It is celebrated in Monsoon season primirily by girls and women by singing song,dancing ,dressing up with heena coloured hands and feet , wearing red , green or yellow clothes, jewellery and many more. Teej is dedicated to goddess Pravati and her reunion with Lord Shiva when lord Shiva accept goddess Parvati as his wife. Goddess Parvati is also known as Teej Mata. This festival contains three days long celebrations which combines sumptuous feasts as well as rigid fasting.The folk music,dances and women with red saris and more flavour to traditional values of teej. Most of the Nepali Hindu women sing, dance in the streets and also visit the temples in fasting mood.It is also known as Hartalika teej. The famous food item that women can enjoy this day are -

  • Dal baati chauoma
  • Gujiya
  • Kheer
  • Besan khadi
  • Khasta khachoru


Mainly, it is celebrated in the month of Bhadra.These days it is becoming expensive to celebrate teej as the people seems to be competing in inviting relatives and friends for the dar eating and spending for for others rituals practise. 

Sunday, January 19, 2020

On Poush18th our second term examination finished and from 19th Poush our winter vacation started. On the first day of the vacation I went to my village with my brother sudarshan. We reached there near 1pm. Then, I went to play football around 3 pm and came back home around 6pm. On the next day, I went to my friend house and played freefire and watched movie whole the day.

On the third day I went to sudarshan house. Then, we two went to our uncle house and styed there tonight. The next day we moved from there and came back to our home. Then, we watched TV and slept after few moment.The fifth day, we do the same thing. 

Monday, October 21, 2019

Area of 4 wall

CLS
INPUT " Enter length";l
INPUT " Enter breadth";b
INPUT " Enter height ";h
A = 2 * h ( l +b )
PRINT " Area of 4 walls ";A
END

1, 11,111,1111,11111

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

1,22,333,4444,55555

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

1, 12,123,1234,12345

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

5,10,15,20 .....upto 10th term

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

1, 4,9,10....upti 10th term

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

1, 1,2,3,5,8.......upto 10th term

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

Multiplication of table

CLS
INPUT " Entef any number";N
FOR I = 1 TO 10
PRINT N ; "X " ; I ; " = " ; N * I
NEXT I
END

Factorial

CLS
INPUT " Enter any number";N
F = 1
FOR I = 1 TO N
F = F * I
NEXT I
PRINT " Factorial";F
END

Factors

CLS
INPUT " Enter any number ";N
FOR I = 1 TO N
IF N MOD I = 0 THEN  PRINT I
NEXT I
END

Prime or composite

CLS
INPUT " Enter any number";N
C = 0
FOR I = 1 TO N
IF N MOD I = 0 THEN     C = C + 1
NEXT I
IF C = 2 THEN
PRINT " The given no is prime"
ELSE
PRINT " The given no is composite"
END IF
END

Armstrong or not

CLS
INPUT " Enter any number";N
A= N
S = 0
WHILE N < > 0
R = N MOD 10
S = S + R ^3
N = N \ 10
WEND
IF A = S THEN
PRINT " The given number is armstrong"
ELSE
PRINT " The given no is not armstrong"
END IF
END

Palindrome or not

CLS
INPUT " Enter any number";N
A = N
S = 0
WHILE N < > 0
R = N MOD 10
S = S * 10 + R
N = N \ 10
WEND
IF A = S THEN
PRINT " The given no is palindrome"
ELSE
PRINT " The given no is not palindrome"
END IF
END

Reverse of digits

ClS
INPUT " Enter any number ";N
S = 0
WHILE N < > 0
R = N MOD 10
S = S * 10+ R
N = N \ 10
WEND
PRINT " Sum of reverse digits ";S
END

Product of digits

CLS
UNPUT " Enter any number";N
P = 1
WHILE N < > 0
R = N MOD 10
P = P * R
N = N \ 10
WEND
PRINT " Product of digits ";P
END

Sum of digits

CLS
INPUT " Enter any number";N
S = 0
WHILE N  < > 0
R = N MOD 10
S = S + R
N = N \ 10
WEND
PRINT" Sum of digits";S
END

Greatest among three number

CLS
INPUT " Enter any number";N
IF A > B and B > C THEN
PRINT " The greatest number is ";A
ELSEIF B > and B > C THEN
PRINT " The greatest number is ";B
ELSE
PRINT " The greatest number is" ";C
END