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 distributed systems and component technologies, what is marshalling and why is it needed when passing data across process or machine boundaries?
In mainframe online transaction processing with CICS, how do you typically handle errors in CICS programs and report conditions back to the application logic?
In HTML table design, how can you create a table where different rows have different numbers of visible cells or columns?
In Microsoft COM (Component Object Model), what is the IUnknown interface and what are the names of its three fundamental methods?
In COM or distributed object systems, when is marshalling not required and a client can use an interface pointer directly without proxy or stub?
In Microsoft technologies, define and explain COM (Component Object Model) and its main purpose in building reusable binary components.
In the Windows NT operating system, which three basic file types are commonly distinguished for I/O operations?
In classic Visual Basic (VB 6), does the language support object oriented programming (OOP) concepts, and if so, to what extent?
In Microsoft Excel automation, can you call an old Excel 4 XLM macro from within Excel VBA code, and if so, how is this typically done?
In Windows programming, what is the main difference between DDE (Dynamic Data Exchange) and OLE (Object Linking and Embedding)?
In Visual Basic 6, what are some different ways you can declare and instantiate an object variable, and how do these approaches differ?
How can Visual Basic be used for server side scripting, for example in classic ASP to generate dynamic web pages?
In Visual Basic, what naming rules and best practices should be followed when choosing a variable name?
How can you create Visual Basic based applications or automation logic inside Microsoft Excel, for example to add custom buttons and macros?
In Visual Basic automation, how can you open the Outlook Explorer window or an Outlook application instance from VB code?
In Visual Basic, when are you required to use the keyword End If to close a conditional statement, and when is it not needed?
In PHP object oriented programming, what is the difference between accessing a class method using -> and accessing it using :: ?
In PHP, if md5() is considered a strong hash function, why might a developer still choose to use crc32() or sha1() in some situations?
In a PHP string interpolation example, should you write "$a dollars" or "{$a} dollars" to print the value stored in variable $a followed by the word dollars, and why?
How do I find out the number of parameters passed into function?
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