Software SDLC Primary Concept
@. SDLC: The full meaning of SDLC is Software Development Life Cycle. SDLC is a process used by the software industry to design, develop and test high quality software. SDLC is a process followed for a software project, within a software organization. The typical stages in the Software Development Life Cycle include: In this phase, […]
Java Basic Tutorial | Java Programming
Java Basic Tutorial | Java Programming Introduction to Java Java is a high-level programming language originally developed by SunMicrosystems and released in 1995.Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. Features of Java Object Oriented: In Java, everything is an Object. Java can be easily […]
Computer Fundamental
Computer Basic Concept @. Computer Memory Computer memory is the storage space in the computer, where data is to be processed and instructions required for processing are stored. Each location has a unique address in memory. @. CPU Register: CPU Register or processor register is a quickly accessible location available to a computer’s CPU. It […]
Software Fundamental
Software Fundamental The Institute of Electrical and Electronic Engineers or IEEE: Software is a collection of computer programs, procedures, rules, associated documentation, and data. Software: Software is a set of instructions, data, or programs used to operate computers and execute specific tasks. It is the opposite of hardware, which describes the physical aspects of a […]
OOP Basic in Java | Object Oriented Programming
OOP Basic in Java | Object Oriented Programming What is object-oriented programming (OOP)? Object-oriented programming (OOP) is a computer programming model that organizes software design around data, or objects, rather than functions and logic. An object can be defined as a data field that has unique attributes and behavior. OOP focuses on the objects that developers […]
HTML Learning Tutorial P001
HTML Learning Tutorial P001 What is HTML? A Simple HTML Document <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Example Explained What is an HTML Element? An HTML element is defined by a start tag, some content, and an end tag: <tagname> Content goes here… </tagname> The HTML element is everything from […]