- Q How Polymorphism supported in Java
- Q What are the social and economic benefits of advertising? Explain with examples.
- Q What woman's name was given to the horrendously abusive laundry asylums for 'fallen women' run by the Catholic Church, starting in 18th century Ireland, spreading to other countries and persisting well into the 1900s?
- Q Explain the meaning of keyword 'extern' in a function declaration.
- Q What is Operations Research?
- Q Name first monochrome film converted electronically to colour
- Q Who is an 'alternate payee'?
- Q Write syntax to define friend functions in C++.
- Q Specify the importance of various PCR based molecular markers
- Q What is meant by time-slicing?
- Q Following is the syntax of one of the methods to write into a file: fs.writeFile(filename, data[, options], callback) This method will over-write the file if file already exists. If you want to write into an existing file then you should use another method available. Parameters Here is the description of the parameters used: path - This is string having file name including path. data - This is the String or Buffer to be written into the file. options - The third parameter is an object which will hold {encoding, mode, flag}. By default encoding is utf8, mode is octal value 0666 and flag is 'w' callback - This is the callback function which gets a single parameter err and used to to return error in case of any writing error.