Answer:
Answered below
Explanation:
LAMP is an example of a web service stack. It is used for developing dynamic websites and applications. It's components include;
1) The Linux operating system, which is built on open source and free development and distribution. Types of Linux distributions include: Ubuntu, Fedora and Debian. This operating system is where sites and applications are built on.
2) The Apache HTTP server. Apache server is developed by the Apache software Foundation and is open source. It is the most popular web server on the internet and plays a role in hosting websites.
3) MySQL is a relational database management system that plays a role in the storage of websites data and information.
4) The PHP programming language is a scripting language for web development whose commands are embedded into an HTML source code. It is a popular server-side language used for backend development.
Answer:
If you fix your program: instead of "while (a=4)" you will have: while(a<4)
It wil print:
> 123
Explanation:
You can check the output of that kind of programs in online repl consoles e.g: https://repl.it/languages/java10
Answer:
A. I believe is 8.57
B. Should be 7
Explanation:
Please forgive me if I'm wrong thats my best shot. However if i am right please mark brainliest
No.
A static variable belongs to the class, not an instance of it. Therefore there only exists one copy of said variable at any given time.
Algorithms are used as a prototype of an actual program, during project design.
The algorithm the manager can use to find the productID of the desktop products is as follows:
Start
i = 0
if i > N, then Exit:
Input productID:
If productID.upper() == 'A' or 'I' or 'E' or 'O' or 'U':
Process data as desktop products
i++
Go to step 2
Stop
Note that algorithms do not conform to programming syntax.
Read more about algorithms at:
brainly.com/question/24793921