Skip to main content

Multimedia page with popular questions








Popular questions:
(Find your Question Click to view)
11. Write a short note on hardware requirements of multimedia.
12. Write a short note on Digital to analog converter (DAC).
13. Explain signal to noise ratio.
14. Write a short note on Pulse Code Modulation.
15. Explain different types of Fourier Representation.
16. Explain the sampling step of analog to digital conversion.
17. Explain Nyquist theorem and its importance.
18. Explain the quantization step in Analog to Digital conversion.
19. Explain the relation between sampling rate and bit depth.
20. Define waves and explain the properties of waves.
21. Explain the concept of temporal waves and spatial waves.
22. Explain Elementary waves and composite waves.
23. Write a short note on Simple Harmonic Motion.
24. Write a short note on Lempel Ziv coding technique.
25. Explain the construction and working of digital camera.
26. Write a short note on Hypertext.
27. Explain different ways in text insertion.
28. Explain different types of images and the basic steps of image processing.
29. Write a short note of Postscript.
30. Explain the working of Scanner.
31. Write a short note on gamut and color dependency of color models.
32. Explain the architecture of Hypertext document.
33. Differentiate between RGB and CMYK color models.
34. List and explain the fundamental characteristics of sound.
35. Write a short note on Raster Scanning Principle.
36. Write a short note on Psychoacoustics.
37. Define Psychoacoustics, Explain the concept of masking in Psychoacoustics.
38. Write a short note on sensors for TV cameras.
39. Write a short note on Masking.
40. Explain the following concepts on Raster Scanning Principle: Aspect Ratio, Resolution.
41. Differentiate between CRT and LCD.
42. List and explain different video file formats.
43. List and explain different audio file formats.
44. Write a short note on Run Length Encoding Technique. Explain with the help of an example.
45. Explain lossy and lossless compression technique.
46. Define compression and explain the need of compression.
47. Explain the modes of operation and the stages of JPEG compression.
48. Explain inter frame and intra frame compression.
49. Write a short note on arithmetic coding.
50. List and explain the steps of JPEG coding.
51. Explain the concept of Huffman coding and its basic algorithm.
52. Explain different reasons for implementing animation.
53. Write a short note on multimedia production.
54. Write a short note scripting and interactivity in content design.
55. Explain the following concept of visual design: Basic layout, Pace and Running length.
56. Write a short note on flash tool.
57. Define multimedia authoring metaphor and explain scripting metaphor in detail.
58. Explain the following concept: Authorware, Authoring tools.
59. List and explain different types of animation.
60. Write a short note on technical design aspect of multimedia.
61. Write a short note on Dreamweaver.
62. Explain cast metaphor and slide show metaphor.

Comments

Popular posts from this blog

Explain the tools used to monitor system security.

12.Explain the tools used to monitor system security. Ans. 1. People who, for purpose of larceny or to amuse themselves, like to break into computers, they are called ‘crackers’. 2. If there is a vulnerability in a system they will find it and use it against you. 3. Preventing use of your machine for nefarious purpose and guarding against intrusion are, in the end, your responsibility alone. 4. Red hat equips you with tools to detect and deal with unauthorised access of many kinds. 5. You need to configure those tools and understand how to sense the warning they provide. 6. Fortunately Linux is development community is quick to find potential exploits and to create ways of slamming the doors before crackers can enter in your system. 7. Red hat is careful enough to making available new, patched version in which potential exploits have been found. 8. You should make sure to download and install the repaired package. 9. This line of defence...

Explain the file systems supported by Linux.

21.Explain the file systems supported by Linux. Ans. 1. Linux can read/write to several file system that originated with other operating system much different from Linux. 2. One reason that Linux supports so many file systems is the design of its virtual file system (VFS) layer, its provides a fairly universal forms of file support, file systems supported by Linux are as follows: 3. ext3: • Ext3 stands for third extended file system. • Starting from Linux Kernel 2.4.15 ext3 was available. • The main benefit of ext3 is that it allows journaling. • Journaling has a dedicated area in the file system, where all the changes are tracked. • When the system crashes, the possibility of file system corruption is less because of journaling. (If no journaling, then fsck command (file system consistency check) is used to check for the corrupted file and to repair that file). • ext3 keeps a record of uncommitted file transactions and applies only those transactions when the sy...

Explain the rc script and how they can be managed by manually.

18.Explain the rc script and how they can be managed by manually. Ans. 1. ‘rc’ scripts are stored in ‘/etc/rc.d’ directory, rc scripts are used to stop and start services for runlevels. 2. In ‘/etc/rc.d’ directory we have some additional directories rc0.d, rc1.d, rc2.d, rc3.d, rc4.d, rc5.d and rc6.d, the numbers in directory name corresponds to the runlevel and contains the scripts for runlevels. 3. For example let’s take runlevel 5, init program looks in the ‘/etc/rc.d/rc5.d/’ directory for the processes to start and stop. 4. All the scripts in the rc5.d directory are symbolic like to the actual scripts that are located in the ‘/etc/rc.d/init.d/’ directory. The use of symbolic link means that the runlevel can be modified by adding or removing symlinks or changing the order the script run. 5. rc scripts contains symbolic links which can be modified to change the runlevels. 6. Symbolic links begins with a ‘k’ and a number or an ‘s’ and a number. Example: S25netfs -...