Answer:
ill take the points anyway
Explanation:
Answer:
The purpose of wordpress is to develop blogs or dynamic websites.
Answer:
So a statement could be the front-end is what we see and the back-end is what we don't see, the behind the scenes. Like a play, we see the characters and them acting out a story but we dont see who is doing the lights, playing the music, fixing the costumes and makeup etc..
Explanation:
The term front-end means interface while the term back-end means server. So imagine you go on your social media app, what you can see like your friends list and your account and the pictures you post, who liked the pictures and all of that is called the front-end and is what <em>you</em> as a user can interact with; front-end development is the programming that focuses on the visual aspect and elements of a website or app that a user will interact with its called in other words the client side. Meanwhile, back-end development focusing on the side of a website users can't see otherwise known as the server side, its what code the site uses and what it does with data and how a server runs and interacts with a user on whatever device surface they're using.
Answer:
Malware is designed to cause damage to a stand alone computer or a networked pc. So wherever a malware term is used it means a program which is designed to damage your computer it may be a virus, worm or Trojan.
Explanation:
Answer:
a[i] = a[len(a) - i - 1]
Explanation:
Based on the definition of corresponding elements above,
First element of a list and last element are corresponding :
Using this :
Given a list defined as 'a'
First element of list is at index 0
Last element of a list is at index ; len(a) - 1
For a list containing 10 elements:
Second element corresponds to second to the last element
Second element is at index 1;
Second to the Last element is at index 8
(since indexing starts from 0)
Second element = a[1]
Second to the last element = a[len(a) - i - 1]
Hence,
a[i] = a[len(a) - i - 1]