Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Technology Questions
In a .NET Windows Forms application, how do you create and attach a context menu using the ContextMenu or ContextMenuStrip component?
In C# and the .NET Framework, what is a delegate and what does it represent?
In C#, how do you create and use a delegate instance in code?
In a .NET application, how can you configure trace switches in the application config file so that tracing can be controlled without recompiling code?
In the .NET runtime, what is the managed execution process and which main stages does it involve?
In ASP.NET, the Global.asax event Session_Start occurs every time a new session is created for a user visiting the application. Is this description correct or incorrect?
In ASP.NET, the Global.asax event Application_Start occurs when the first request for the application is received and the application domain is created. Is this description correct or incorrect?
In ASP.NET, the Global.asax event Application_End occurs when the application domain is shutting down and the ASP.NET application is ending. Is this description correct or incorrect?
In ASP.NET, the Global.asax event Session_End occurs when a user session ends because it times out or is explicitly abandoned. Is this description correct or incorrect?
In ASP.NET Web Forms, which type of events are raised when a web page posts data back to the same page on the server for processing, for example when a Button control is clicked?
In ASP.NET, the statement “Cache events are processed whenever a postback event occurs” is being evaluated. Is this statement correct or incorrect?
In ASP.NET, how can you change the session time out value for a web application?
In web applications, what do we call the small text file stored on the client machine, either on disk or in browser memory, that allows the server to persist key value data across requests?
In ASP.NET Web Forms, which hidden field name is used internally on the page to implement view state across postbacks?
In ASP.NET Web Forms, which mechanism sends data from one page to another as part of the URL, with a limited maximum size for the data that can be sent?
In ASP.NET Web Forms, which validator control checks that an input control contains some data and is not left blank before the page is considered valid?
In ASP.NET Web Forms, which validator control allows you to check whether the value entered in one control matches the value of another control, for example when confirming a password?
In ASP.NET Web Forms, which validator control checks whether the entered data matches a specific pattern or format defined by a regular expression, such as an email address format?
In standard HTML and JavaScript, adding an onclick="window.open(url)" attribute to a control can be used to open a page in a new browser window or tab. Is this description correct or incorrect?
In .NET security, how do you clearly define authentication and authorization, and how do they differ when controlling user access to applications and data?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79