Describe an advantage of using vector graphics instead of bitmaps to represent images.

Often using vector graphics is better for images with which you want to retain scalability, as vector graphics store the information of the shapes (objects) that make up the image instead of the colour of each individual pixel. When scaling up and image bitmaps will often become blurry, as they are predicting what the image should look like as opposed to creating a similar shape with new parameters.

DS

Related Computing A Level answers

All answers ▸

Write pseudocode for the binary search algorithm and state, with an explanation, it's worst case complexity in big-O notation


Explain how the even parity system works when transmitting ASCII codes. Include a description of the roles of the sending device and the receiving device during transmission.


What is an interface and why are they useful?


Given an ordered array of integers "V" and a integer "Sum", write a function that would return "true" if it finds two numbers in V that add up to Sum, and "false" otherwise.