
Procedure programming Procedural Pgorgamming can be defined as a programming model which is derived from structured programming, based upon the concept of calling procedure. Languages used in procedure programming ALGOL C FORTRAN Object oriented programming Object oriented programming can be defined as a programming model, which is based upon the concept of object. Languages used in object orien..

What Is a Web Server? A web server is a computer that hosts web pages, making them accessible online. When a user loads a site, the web server will retrieve the relevant files and send them to the browser so the user can interact with them. In this structure, one program 〰️ the client 〰️ requests a resource or service from another program 〰️ the server. Web servers user HTTP(Hypertext Transfer P..

자료구조 (Data Structure) 자료구조는 컴퓨터 상 자료를 효율적으로 저장하기 위해 만들어진 논리적인 구조이다. 자료구조의 현명한 선택을 통해 효율적인 알고리즘을 사용할 수 있게 하여 성능을 향상시킨다. 자료구조의 분류 (Classification of Data Structure) 선형 구조 (Linear Structure) 데이터를 연속적으로 연결한 자료구조. 즉, 데이터 요소가 순차적 또는 선형으로 배열되고, 각 요소들이 이전 및 다음 elements와 붙어있는 구조를 선형 구조라고 한다. 종류로는 리스트, 스택, 큐, 데크가 있다. 비선형 구조 (Non - linear Data Structure) 데이터를 비연속적으로 연결한 자료구조. 즉, 데이터가 비순차적 또는 비선형적으로 배열되어 있다..