Answer Sheet:: Category: Analytical
Answer Sheet:: Category: Analytical
C,C++,MySql,Xml,Html,AJAX,PH
Skills:
Category : Analytical
1).
While riding in my villege, I saw
in his yard. I enquired how man
altogether 60 eyes and 86 feet
How many ducks and pigs he h
Pegs - 13
Ducks - 17
D- 5
G- 1
Hex(number)
function DeleteAFile(a_strFileNa
' routine deletes a_strFileName
' if delete w as success then r
ALTER ROUTINE
document.formname.fieldname.f
b) ActiveDocument.Name="Test
a) ActiveWindow .Visible=False
b) ActiveDocument.Visible=Fals
c) ActiveDocument.ActiveWindo
Application.Visible=False
a) ActiveDocument.GoToEnd
b) Selection.EndKey w dStory
c) ActiveDocument.EndKey w d
a) ActiveDocument.GoToEnd
a) ActiveDocument.TypeText "T
b) ActioveDocument.Text="This
c) Selection.TypeText "This is a
ActioveDocument.Text="This is
a) ActiveDocument.Open ("C:\te
b) Documents.Open ("C:\test.do
c) Application.Open ("C:\test.do
b) Documents.Open ("C:\test.do
- (644) -S/T: Jan/11 02:28:14 E/T: Jan/11 02:28:35 T/T: 00:21
Category : Visual Basic 6.0
20). Explain FreeFile function w
EXAMPLE
EOF - EndOfFile
BOF - Begining of File
LOCK - LOCk file
An
application programming interfac
structures, object classes and/o
and/or operating system service
applications
Activex
DLL
It runs w ithin the main program
fast. It is easy to test.
Activex EXE
Function DeleteLine(a_strFilena
' If No. of lines found in a_strFi
' Delete a_intLineNo line from a
- (30) -S/T: Jan/11 02:47:17 E/T: Jan/11 02:47:43 T/T: 00:26
Category : MS SQL
28). Which of the follow ing is th
a) @@colcount
b) @@error
c) @@row count
Denormalization is a technique t
normal forms of database mode
database access
a) ABS
b) ASC
c) DESC
b) ASC
c) DESC
Yes
No
Question: While riding in my villege, I saw a farmer tending his pegs and ducks in his yard. I enquired
how many of each he had. He replied- "I have altogether 60 eyes and 86 feet between them."
How many ducks and pigs he had exactly? What do you think is the answer?
Pegs - 13
Ducks - 17
Question: What do you think, how many cars are there in USA?
Question: A + B + C +D = D + E + F + G = G + H + I =17.
IF A = 4 WHAT ARE THE VALUES OF D AND G. EACH LETTER TAKEN ONLY ONE OF THE DIGIT FROM 1 TO
9.
Question: What are the differences between the Dim, Public, and Private Statements in VBScript?
Private statement variables are available only to the VBScript in which they are declared.
Variables declared with Dim at the VBScript level are available to all procedures within the VBScript
Question: What is the command or symbol used in VBScript for writing remarks?
function DeleteAFile(a_strFileName)
end function
Question: Write a .vbs which will delete a file. FileName to delete will be passed in as first command line
argument.
Question: In MS Word, what is the command that returns name of word document currently having
focus?
Question: When you start MS Word, by default the open balnk document has a title "Document1 -
Microsoft Word". You want to change this to read "Test - Microsoft Word". Which of the following
commands will do as desired.
a) ActiveDocument.Name="Test"
c) ActiveDocument.ActiveWindow.Caption="Test"
Question: Which of the following commands you use to make active MS Word document in-visible?
a) ActiveWindow.Visible=False
b) ActiveDocument.Visible=False
c) ActiveDocument.ActiveWindow.Visible=False
d) Application.Visible=False
Question: Write a macro procedure which will disbale "File->New" menu option.
Question: Which of the following commands you use to go to end of the document?
a) ActiveDocument.GoToEnd
b) Selection.EndKey wdStory
c) ActiveDocument.EndKey wdText
d) Application.GoToEnd
Question: Which of the following command you use to type "This is a test" in active document.
b) ActioveDocument.Text="This is a test"
Question: Which of the following commands you use to open "c:\test.doc" document?
a) ActiveDocument.Open ("C:\test.doc")
b) Documents.Open ("C:\test.doc")
c) Application.Open ("C:\test.doc")
d) Window.Open ("C:\test.doc")
Question: Explain in detail EOF, BOF, Lock and LOC fuctions with reference to file manipulations.
Question: How can I set Short Cut keys for few text boxes drawn on a form?
Question: Complete this routine which will delete passed line from a text file.
' Delete a_intLineNo line from a_strFileName text file and save it
' return True if success
End Function
a) @@colcount
b) @@error
c) @@rowcount
d) @@version
Question: What is the STUFF function and how does it differ from the REPLACE function?
Question: How do you use DBCC statements to monitor various aspects of a SQL server installation?
DBCC stands for database consistency checker.
DBCC CHECKDB – Ensures that tables in the db and the indexes are
correctly linked.and
percentage.
Question: What is better - 2nd Normal form or 3rd normal form? Why?
Question: I would like to insert a row into the EMPLOYEE table, which has three columns: EMPID,
LASTNAME, and SALARY. I would like to enter data for EMPID 59694, LASTNAME Harris, but no salary.
Which statement would work best?
Question: Which two of the following orders are used in ORDER BY clauses? (choose two)
a) ABS
b) ASC
c) DESC
d) DISC
Question: Once i have developed the COM wrapper do i have to still register the COM in registry?