مسرد بجروت علم الحاسوب
مسرد بجروت علم الحاسوب
تعريفات بلغة بسيطة لكلّ مصطلح ستراه يوم الامتحان.
- [AR] Algorithm[AR] A finite sequence of steps that leads from a given input to a correct output.
- [AR] Array[AR] An ordered collection of values of the same type, held together under one name.
- [AR] Boolean[AR] A data type that holds one of two values: true or false.
- [AR] Class[AR] A template that defines data and behaviour, from which instances can be created.
- [AR] Loop[AR] A structure that runs the same block of code repeatedly until a condition becomes false.
- [AR] Method[AR] A function attached to a class that operates on a specific instance of it.
- [AR] Object[AR] A specific instance of a class — the concrete data that filled the template.
- [AR] Recursion[AR] A function that calls itself to solve a smaller version of the same problem.