Part 72 What is dictionary in c# Part 73 What is dictionary in c# continued Part 74 List collection class in c# Part 75 List collection class in c# continued Part 76 Working with generic list class and ranges in c# Part 77 Sort a list of…
public static class WebExtension { public static T Decode<T>(this RequestBase res) { Type type = res.GetType(); // For each property of this object, html decode it if it is of type string foreach (PropertyInfo propertyInfo in type.GetProperties()) {…
61. Evaluate the following SQL statements that are issued in the given order:CREATE TABLE emp(emp_no NUMBER(2) CONSTRAINT emp_emp_no_pk PRIMARY KEY,ename VARCHAR2(15),salary NUMBER(8,2),mgr_no NUMBER(2) CONSTRAINT emp_mgr_fk REFERENCES emp);ALTER TAB…