Posts
Post has attachment
Public
Killinochchi Floods - Community Relief Train
A train arrived in Killinochchi from Colombo Sri Lanka on 1st January 2019 with relief goods given by community collected at train stations. More videos at https://www.facebook.com/yesmedialive #yesmedia #NothernFlods #Killinochchi
A train arrived in Killinochchi from Colombo Sri Lanka on 1st January 2019 with relief goods given by community collected at train stations. More videos at https://www.facebook.com/yesmedialive #yesmedia #NothernFlods #Killinochchi
Add a comment...
Post has attachment
Public
ගංවතුර නැති සුබ අවුරුද්දක් Album !
අද 31, හමෝම සෙට් වෙනවා.මට විතරද කිලිනොච්චියේ ගංවතුරෙන් අනාත උනු අය පේන්නේ? කමක් නේ හමෝටම ගංවතුර, කුණාටු, අකුණු, සුලි සුලන් හා නාය යාම් නැති අළුත් අවුරුද්දක් වේවා! අපි අද කිලිනොච්චියේ ... විස්තර බලන්න එන්න ..l https://www.facebook.com/yesmedialive Today ...
අද 31, හමෝම සෙට් වෙනවා.මට විතරද කිලිනොච්චියේ ගංවතුරෙන් අනාත උනු අය පේන්නේ? කමක් නේ හමෝටම ගංවතුර, කුණාටු, අකුණු, සුලි සුලන් හා නාය යාම් නැති අළුත් අවුරුද්දක් වේවා! අපි අද කිලිනොච්චියේ ... විස්තර බලන්න එන්න ..l https://www.facebook.com/yesmedialive Today ...
Add a comment...
Post has attachment
Post has attachment
Public
උතුරේ ගංවතුර 2018 - ආපදා සමාජ මාධ්ය මෙහෙයුම
ගං වතුරකදී මිනිස්සු ඉස්සෙල්ලම බලන්නේ තමන්ගේ සහ පවුලේ අයගේ ජීවිතය බේරාගැනීම. එයාලා අනාථ කඳවුරු වලට යන්නේ ඇඳගන ඉන්න ඇඳුම පිටින් සමහරවිට. ඊලඟට වතුර, කෑම,ළමයින්ට කිරිපිටි වැසිකිලි පහසුකම්, ඇතිරිලි. ඉස්කෝලෙක 500 ක් විතර ඉන්නකොට, හිතන්න තත්වය. ලෙඩරෝග, ළමයින්ට කම්...
ගං වතුරකදී මිනිස්සු ඉස්සෙල්ලම බලන්නේ තමන්ගේ සහ පවුලේ අයගේ ජීවිතය බේරාගැනීම. එයාලා අනාථ කඳවුරු වලට යන්නේ ඇඳගන ඉන්න ඇඳුම පිටින් සමහරවිට. ඊලඟට වතුර, කෑම,ළමයින්ට කිරිපිටි වැසිකිලි පහසුකම්, ඇතිරිලි. ඉස්කෝලෙක 500 ක් විතර ඉන්නකොට, හිතන්න තත්වය. ලෙඩරෝග, ළමයින්ට කම්...
Add a comment...
Post has attachment
Public
Education Data Collection System Can Risk Privacy and Safety of Students
The rapid growth of Education Technologies that help adaptation of personalized learning experiences, collaboration. They are designed to collect data useful student monitoring and evaluation, school administration, tracking academics, disciplinary issues. ...
The rapid growth of Education Technologies that help adaptation of personalized learning experiences, collaboration. They are designed to collect data useful student monitoring and evaluation, school administration, tracking academics, disciplinary issues. ...
Add a comment...
Post has attachment
Public
AlgoHack #WEBONE අළුත් වැඩක්!
Mastering Modern Web Design & Hosting Technology Advanced Diploma Level - 1 Year Online HTML5, Web Design, Programming, CMS, e Commerce මුල සිට නවතම තාක්ෂණය Google, Facebook and Twitter API හා Hosting & Security අඩංගු පාඨමාලාවක් සැප්තැම්බර් 15 ඇරඹේ. විස්තර...
Mastering Modern Web Design & Hosting Technology Advanced Diploma Level - 1 Year Online HTML5, Web Design, Programming, CMS, e Commerce මුල සිට නවතම තාක්ෂණය Google, Facebook and Twitter API හා Hosting & Security අඩංගු පාඨමාලාවක් සැප්තැම්බර් 15 ඇරඹේ. විස්තර...
Add a comment...
Post has attachment
Public
A/L Python in one hour - Learn by example
Variables x=3 y="Nimal" z=True r=3 2x=5 _r=45 a$5=3 Operators = + - / * % // ** 5 + 3 * 2 5 + 3 * 2 / 2 #single line comment """ multi line comment """ ''' multi line comment ''' Input name = input("Enter Your Name ") print (name) Data Types : number, str...
Variables x=3 y="Nimal" z=True r=3 2x=5 _r=45 a$5=3 Operators = + - / * % // ** 5 + 3 * 2 5 + 3 * 2 / 2 #single line comment """ multi line comment """ ''' multi line comment ''' Input name = input("Enter Your Name ") print (name) Data Types : number, str...
Add a comment...
Post has attachment
Public
Loop and Break in Python
j=0 while (j < 11): print("inside while J=" , j) if (j == 3): break j += 1 # increment j by 1 (same as j=j+1) print("I am free J=", j) ''' Look at first line of code, we have set j=0 initially. the program now can enter the while l...
j=0 while (j < 11): print("inside while J=" , j) if (j == 3): break j += 1 # increment j by 1 (same as j=j+1) print("I am free J=", j) ''' Look at first line of code, we have set j=0 initially. the program now can enter the while l...
Add a comment...
Post has attachment
Public
Decimal to Roman Numeral Algorithm in Python
Problem : Write a method that when passed an integer between 1 and 3000 returns a string in Roman numeral. 4 should return 'IIII'. Hint: Use the integer division and modulus methods. Roman Numerals : I = 1, V = 5, X = 10, L = 50, C = 100, D = 500, M = 1000 ...
Problem : Write a method that when passed an integer between 1 and 3000 returns a string in Roman numeral. 4 should return 'IIII'. Hint: Use the integer division and modulus methods. Roman Numerals : I = 1, V = 5, X = 10, L = 50, C = 100, D = 500, M = 1000 ...
Add a comment...
Post has attachment
Wait while more posts are being loaded