Posts

Showing posts from August, 2018

Operating Systems

Image
Why created  an Operating systems for computers? As computer systems diversified and became more complex and powerful, it became increasingly impractical to write programs that functioned as both an operating system and a useful application.In response, individual mainframe computer owners began to develop system software that made it easier to write and run programs and operating systems were born. Every program that ran on these early systems had to include all of the code necessary to run the computer, communicate with connected hardware, and perform the computation the program was actually intended to perform. History of operating systems. The first operating system was created by General Motors in 1956 to run a IBM mainframe computer. And then In 1960 s, IBM was the first computer manufacturer to take on the task of operating system development and began distributing operating systems with their computers.GE, Digital Equipment Corporation are some of the companies who ...

Hypothetical ideas

Image
මොනවද මේ hypothetical ideas කියන්නේ...???  උපකල්පනය ඇති අදහස්... උපකල්පන යනු කිසිදු ඔප්පු කිරීමකින් තොරව යම්කිසි දෙයක් සිදුවන ආකාරය විස්තර කිරීමට යොදාගන්නා චින්තනයකි. ලොව බිහිවන බොහොමයක් නව නිර්මාණ සඳහා මූලික වී ඇත්තේ මිනිසුන්ගේ මනස තුල ඇතිවන නව අදහස්ය.  මානවයාගේ මුල් අවදියේ සිට එදිනෙදා ජීවිතයේ විවිධ අවශ්‍යතා සපුරා ගත් ආකාරය දිනෙන් දින වෙනස් විය.  වර්තමානය වන විට මුල් අවදියට වඩා හාත්පසින්ම වෙනස් සංකීර්ණ අවශ්‍යතා රැසක් මිනිසා සපුරා ගනිමින් පවතී. සියලු නිර්මාණ බිහිි් වනුයේ දැනට පවතින නිර්මාණ සහ එවායේ ඇති දුෂ්කරතා හදුනා ගැනීමෙනි.    යම් කාර්‍යක් කරන විට විවිධාකාර දුෂ්කරතා වලට මුහුන දීමට අපටද සිදුවේ. එවැනි අවස්තා වලදී අපටද එම කාර්‍ය පහසු කර ගැනීම  සදහා නව අදහස් පහල විය හැක.  එම අවස්තා දෙස ප්‍රායොගිකව සිතා එම සිතුවිලි ක්‍රියාවට නැංවීමට උත්සාහ  කිරීමෙන් නව නිර්මාණ ලෝකයට බිහි වේ. Hypothetical ideas හෙවත් උපකල්පිත අදහස් වල වැදගත්කම එයයි. මේ ලිපි පෙලේ ඊළග ලිපි වලින් අපි බලමු මිනිසුන් තුල යම් යම් දේවල් කෙරෙහි ඇතිවන විවිධාකාර hypo...

Introduction to Computer Number Systems

Image
C omputer can understand only numbers. When we type letters or words computer translates it in to numbers. This technique is used to represent numbers in the computer system architecture. Only Binary,Octal,Decimal and hexadecimal number systems supports in computer architecture. Specially in your Advanced level syllabus you should have clear idea about what is a number system and how to convert one number system to another. Binary Number System Binary number system has only two digits, 0 and 1.So base of binary number system is 2. Every value represents with 1 and 0.Each position in a binary number represent a 0 power of the base(2). Binary calculations a.Binary to octal b.Binary to decimal c.Binary to hexadecimal Octal Number System Octal number system has only eight digits(8) from 0 to 7. So base of octal number system is eight. Every value represents with 0,1,2,3,4,5,6 and 7 in this number system. each positon in an octal number represents a 0 power of the base(8). ...