1. A banking application is online. As soon as Martin finished his session, Lisa logged on and did some banking. The connection string created for each of them is as follows: String ConnStr= «Server=BankServer;Database=BankDB;User=Martin;Password=gilbo123;» String ConnStr= «Server=BankServer;Database=BankDB;User=Lisa;Password=kari75;» Which of the following statements will be correct in case the connection pooling is also switched on? Answers: • There is a possibility of Lisa using the same connection object as created for Martin from the connection pool • Lisa can not use someone else’s connection from the connection pool • Lisa can pick any other ideal connection from the connection pool • None of the above 2. Which of the following statements are false regarding the 3 timer classes provided by the .NET framework?+ a) System.Windows.Forms.Timer b) System.Timers.Timer c) System.Threading.Timer Answers: • System.Windows.Forms.Timer requires Windows Forms (WinForms)...