SWASTICK YOUTH COMPUTER TRAINING CENTRE
(A Government of West Bengal Initative Under the Directorate of Youth services)
Village-Paschim Sridharpur, Post-Gurudaspur, P.S-Dholahat, Dist-24Pgs(S),
Block-Patharpratima, Pin-743349, Contact No : 97336 00064
Subject : (DITA-IT) MCQ ON-LINE EXAM,
COURSE : DITA, Time : 30 MINUTES, Marks : (2×15+40)=70
Question 1.
Subprocesses are often represented by:
A rectangle with a double edge
A diamond
An oval
Activities
Question 2.
In a flowchart an input or output instruction is represented by
A rectangle
A rhombus
A parallelogram
A circle
Question 3.
Flowcharts and pseudocode are examples of tools used in the program __________
phase.
specification
design
code
test
Question 4.
Program flowcharts are the parts of
operation chart
process chart
algorithms flowchart
system flowcharts
Question 5.
The complexity of Binary search algorithm is
O(n)
O(log n)
O(n2)
O(n log n)
Question 6.
Which of the following sorting algorithms is of divide-and-conquer type?
Bubble sort
Insertion sort
Quick sort
All of above
Question 7.
The space factor when determining the efficiency of algorithm is measured by
Counting the maximum memory
needed by the algorithm
Counting the minimum memory
needed by the algorithm
Counting the average memory
needed by the algorithm
Counting the maximum disk
space needed by the algorithm
Question 8.
Flowcharts can be helpful in:
Identifying process inefficiencies
Coding
Testing algorithms
All of the above
Question 9.
Swimlane flowcharts are used to:
Represent delays in a process
Represent roles and
responsibilities
Represent start and end points
None of the above
Question 10.
What is the purpose of a flowchart?
To write complex equations
To represent the steps in a
process visually
To test software
None of the above
Question11.
What does a circular connector represent in a flowchart?
Input/output
Continuation of the process
Start or end
Decision
Question 12.
Which of the following is not the required condition for binary search algorithm?
The list must be sorted
There should be the direct
access to the middle element in any sublist
There must be mechanism to
delete and/or insert elements in list
None of above
Question 13.
When flowchart direction lines are unclear then the programmer can use
arrows
horizontal lines
vertical lines
inverted triangle
Question 14.
When sender and receiver of an e-mail are on same system, we need only two
IP
Domain
Servers
User Agents
Question 15.
A world wide web contains web pages
residing in many computers
created using HTML
with links to other web pages
residing in many computers
linked together using HTML
Question 16.
______ is a technology that allows you to send and receive messages over the Internet without
the delay of traditional postal services.
India post
Speed post
Registered post
email
Question 17.
Uses of Internet
Communication
Information Retrieval
Presentation of information
All of the above
Question 18.
In a URL what does .org represents
Educational institute
Military site
Organization
Commercial
Question 19.
Which of these is correct email address?
userName@website@com
userName.website.com
userName.website@com
userName@website.com
Question 20.
In a URL what does .gov represents
commercial
educational institute
military site
government
Question 21.
In a URL what does .edu represents
Indian
Account
Entranet
Educational institute
Question 22.
The browser’s __________ keeps a list of web pages you have visited during the current
session.
history
cache
favorites
trail
Question 23.
WWW stands for
World wide web
World Web Wide
Web Wide World
None of the above
Question 24.
CSS stands for
Client Resource System
Character Style system
Cable System Style
Cascading Style Sheet
Question 25.
An email sent from unknown persons for improving the sale, image, appeal or other
characteristics of a product is called_____.
Junk
Important
Virus
Trojan
Question 26.
Unsolicited emails may be filtered and separated into _______ .
spam bin
inbox
sent mails
draft
Question 27.
A search value can be exact value or it can be ___?
Relationship
Logical operator
Wild card character
Comparison operation
Question 28.
Which of the following statements is true regarding relationships in MS Access?
Relationships cannot be
created in Access
A one-to-many relationship is
the most common type of relationship
A many-to-many relationship
cannot exist in Access
Relationships are only created
through queries
Question 29.
Which of the following database object is created first before any other created?
Query
Table
Report
Form
Question 30.
Which feature in MS Access allows you to create a structured form for entering data?
Query Wizard
Report
Form Wizard
Table Wizard
Question 31.
Which tool is used in MS Access to combine records from two or more tables?
Query
Relationship
Lookup
Append
Question 32.
The two form layout types will display multiple records at one time are tabular
and___
columnar
justified
date sheet
pivot table
Question 33.
Which of the following is a method to create a new table in MS Access?
Create table by entering data
Create table using wizard
Create table in design view
All of these
Question 34.
The arranging of data in a logical sequence is called
Sorting
Classifying
Reproducing
Summarizing
Question 35.
What is MS Access used for?
Word processing
Database management
Graphic design
Web browsing
Question 36.
Which of the following is true about a "Composite Key" in MS Access?
It is a combination of multiple
fields that uniquely identify a record
It is a key that only identifies
records by a single field
It is used for indexing large
databases
It has no relation to database
normalization
Question 37.
In MS Access, which of the following can be used to limit the records shown in a query result?
Filter
Sort
Format
All of the above
Question 38.
We can remove a relationship defined between two tables by
From Edit menu choose Delete
Relationship
Select the relationship line and
press Delete
Choose Delete option from
Relationship menu
All of above
Question 39.
IF ([Age]>65, "Senior", "Adult"). This expression is an example of
A financial expression
Algebraic expression
A conditional expression
None of the above
Question 40.
In MS Access, which of the following is NOT a valid field size for the "Number" data type?
Integer
Long Integer
Single
Float
Question 41.
What keyword is used to declare a variable in VB6?
Declare
Var
Dim
Set
Question 42.
Which statement is used for error handling in VB6?
On Error Resume Next
Try...Catch
If...Else
Error Resume
Question 43.
Which control is used for creating menus in VB6?
Menu Editor
Menu Strip
Menu Control
Menu Designer
Question 44.
A VB6 project can have multiple:
Forms
Modules
Classes
All of the above
Question 45.
LOOP Concept is applied by
IF-End If
With-End With
For-next
Yes-No
Question 46.
Which of the following is the correct syntax for an IF statement?
If condition Then statements
End If
If condition { statements }
If (condition) Then { statements
}
If condition Then
{ statements } EndIf
Question 47.
What is the default data type for a variable in Visual Basic 6.0?
Integer
String
Variant
Boolean
Question 48.
Arrays in VB6 are declared using:
Dim Array()
Dim Array{}
New Array()
List()
Question 49.
Controls are:
Code
Method
Object
None of the above
Question 50.
Variables appearing in the header of a Function procedure are called
____________.
Value of the function
Parameters
Coordinate
Arguments
Question 51.
What does DAO stand for?
Database Access Operations
Data Access Object
Direct Access Optimization
Data Application Object
Question 52.
Which event is triggered when a form is loaded?
Activate
Load
Initialize
Start
Question 53.
How do you bring up the Find dialog box?
Ctrl + F
Alt + F
Ctrl + H
Shift + F
Question 54.
What is the default mode when opening a file in VB6?
Input
Output
Append
Binary
Question 55.
"Form Load()" the "Load" is name of
Syntex
Procedure
Keyword
None of the above
Copyright © Reserved