What is PHP Flashcards

1
Q

a versatile and widely-used server-side scripting language for creating dynamic and interactive web applications.

A

Advanced PHP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

general-purpose programming language used to design a website or web application

A

Advanced PHP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

advanced PHP is the server-side scripting language embedded with HTML to develop ______, ______, or _____

A

Static website, dynamic website, or web applications

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what are the advantages of HTML

A
  • used to build websites
  • supported by all browsers
  • can be integrated with other languages like CSS, Javascript
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Enumerate the features of PHP

A
  • open-source and free
  • php server-side scripting
  • interpreted language
  • database connectivity
  • object-oriented programming
  • built-in functions
  • session management
  • security features
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

PHP is firstly open source which means anyone can
use PHP code without any licensing. Along with this one can run PHP on any
operating system like Windows, macOS, Linux, Unix and more.

A

open-source and free

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

PHP code executes on the server before sending
HTML content to the user’s browser, allowing for the dynamic generation of
web pages and handling user interactions.

A

php server-side scripting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

PHP code is interpreted line by line, eliminating the
need for compilation and simplifying development and testing processes.

A

interpreted language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

PHP integrates seamlessly with various databases like
MySQL, PostgreSQL, and Oracle, facilitating data storage and retrieval for
web applications.

A

Database connectivity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

PHP supports OOP concepts
like classes, objects, inheritance, and polymorphism, enabling better code organization and modularity.

A

object-oriented programming

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

PHP comes with a rich set of built-in functions for various tasks such as string manipulation, date and time handling, file handling, and more, reducing the need for external libraries.

A

built-in functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

PHP allows for user session management, enabling personalized experiences and storing user data across multiple page visits.

A

session management

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

While security considerations are essential for any development language, PHP offers several built-in security features and best practices to help mitigate vulnerabilities.

A

security features

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

who developed PHP

A

Rasmus Lerdorf

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

when was PHP developed

A

1994

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Common Gateway Interface (CGI) binaries are written in

A

C programming language

17
Q

what is the latest version of PHP

A

PHP version 8, released on November 24, 2022

18
Q

What is the structure that defines PHP computer language

A

PHP syntax

19
Q

True or false: The PHP script is executed on the server and the HTML
result is sent to the browser.

20
Q

What does PHP mean

A

Hypertext Preprocessor

21
Q

True or False: PHP or Hypertext Preprocessor is a widely used open-source general-purpose scripting language and can be embedded with HTML.

22
Q

what is the file name extension of PHP

23
Q

True or False: PHP scripts can be written anywhere in the document
within PHP tags along with normal HTML.

24
Q

What are the canonical php tags

A

<?php…?>

25
Q

True or false: Everything outside of a pair of opening and closing tags is ignored by the PHP parser.

26
Q

What are the open and closing tags called

A

delimiters

27
Q

Every PHP command ends with a

A

semicolon (;)

28
Q

True or False: all the keywords, functions, and class names in PHP are NOT case sensitive except variables

29
Q

True or False: PHP is case-sensitive when it comes to variables