Spring 2010
CS101- Introduction to Computing
Time: 90 min
M - 58
CS101 - Introduction to Computing - Q.No. 1
Analytical Engine is ------------------
► An electrical machine
► A digital machine
► An analog machine
► A special purpose machine
CS101 - Introduction to Computing - Q.No. 2
Website design should NOT be __________.
► Unified
► Complex
► Consistent
► Predictable
CS101 - Introduction to Computing - Q.No. 3
TCP stands for ___________.
► Total communication protocol
► Transmission control protocol
► Transfer control protocol
► Transfer collection protocol
CS101 - Introduction to Computing - Q.No. 4 ( M - 1 )
A vocabulary and set of grammatical rules for instructing a computer to perform specific tasks is called
► Software
► Programming language
► Device driver
► Interpreter
CS101 - Introduction to Computing - Q.No. 5 ( M - 1 )
A _________ is a meaningful, easy-to-remember ‘label’ for an IP address.
► TCP address
► Domain name
► Network name
► VoIP
CS101 - Introduction to Computing - Q.No. 6 ( M - 1 )
In spreadsheets, cell address A12 means _______.
► Row A, Cloumn 12
► Row 12, Cloumn A
► Row 2,Cloumn A1
► Row A1, Cloumn 2
CS101 - Introduction to Computing - Q.No. 7 ( M - 1 )
According to the heuristic, the number of defects remaining in a system after a given level of tests is proportional to ___________.
► The number found on very first day.
► The number found during the development.
► The number found during the test.
► None of the given options.
CS101 - Introduction to Computing - Q.No. 8 ( M - 1 )
Which one is the best option for designing a Medical Expert System?
► Rule Based System
► Genetic Algorithm
► Fuzzy Logic
► Neural Network
CS101 - Introduction to Computing - Q.No. 9 ( M - 1 )
Command that allows you to recover form mistakes is called __________.
► Clear
► Edit
► Undo
► Break
CS101 - Introduction to Computing - Q.No. 10 ( M - 1 )
The document.write( ) method expects ___________ as its argument.
► Integer
► Float
► String
► Boolean
CS101 - Introduction to Computing - Q.No. 11 ( M - 1 )
We use ___________ to stop Break-Ins.
► Scanners
► Intrusion detectors
► Utilities
► None of the given options
CS101 - Introduction to Computing - Q.No. 12 ( M - 1 )
The developer report to ___________ in a development team.
► Team Lead
► Project Manager
► CEO
► IT Manager
CS101 - Introduction to Computing - Q.No. 13 ( M - 1 )
The key responsibilities of a project manager is _____________.
► Planning and tracking of the project
► Arranging of the appropriate resources
► Client relationship management
► All of the given options
CS101 - Introduction to Computing - Q.No. 14 ( M - 1 )
The key responsibilities of the architect of the project is______________.
► Technology selection
► High-level design
► Makes certain that the implementation remains true to the design
► All of the given options
CS101 - Introduction to Computing - Q.No. 15 ( M - 1 )
The important attribute of image tag is ________________.
► src
► image
► None of the given options
► alt
CS101 - Introduction to Computing - Q.No. 16 ( M - 1 )
onAbort , onError are the _______________ of the image object.
► Event Handler
► Properties
► Methods
► None of the given options
CS101 - Introduction to Computing - Q.No. 17 ( M - 1 )
Now a days, users communicate with the computer using a consistent __________ provided by the Operating System.
► Command-line interface
► Application Interface
► User Interface
► Protocol
CS101 - Introduction to Computing - Q.No. 18 ( M - 1 )
One can browse documents residing on a remote computer using ________ protocol.
► HTTP
► SMTP
► FTP
► TELNET
CS101 - Introduction to Computing - Q.No. 19 ( M - 1 )
Which of the following device can be used to control network traffic?
► Cable
► Connector
► Hub
► Repeater
CS101 - Introduction to Computing - Q.No. 20 ( M - 1 )
User can remotely log on to a computer and can have a control over it like a local user using
► TelNet Protocol
► TelNet Protocol and connected to the user through TCP/IP network
► TelNet protocol and FTP
► TCP/IP and FTP
CS101 - Introduction to Computing - Q.No. 21 ( M - 1 )
If(studentMarks>70);
(
document.write( "Grade A");
}
(
document.write( "Grade A");
}
Which of following is correct format of above code:
► If(studentMarks>70);
(
document.write( "Grade A");
};
(
document.write( "Grade A");
};
► If(studentMarks70)
(
document.write( "Grade A");
}
(
document.write( "Grade A");
}
► If(studentMarks>70)
{
document.write( "Grade A");
}
{
document.write( "Grade A");
}
► None of above options
CS101 - Introduction to Computing - Q.No. 22 ( M - 1 )
Which of the following language is object based but not object oriented language.
► javascript
► visual basic
► C++
►C#
CS101 - Introduction to Computing - Q.No. 23 ( M - 1 )
asin(x) stands for __________
► Asynchronous sine
► Alpha Sine
► Automated Sine
► ArcSine
CS101 - Introduction to Computing - Q.No. 24 ( M - 1 )
The output of POW (3, 2) is______________.
► 6
► 4
► 9
► 12
CS101 - Introduction to Computing - Q.No. 25 ( M - 1 )
The Right most portion or the third portion of the URL contains______ .
► Protocol Identifier
► Server Name
► Directory Name
► None of the given
CS101 - Introduction to Computing - Q.No. 26 ( M - 1 )
Which Image format is known as Lossless original format.
► JPEG
► GIF
► Bitmap
► Vector
CS101 - Introduction to Computing - Q.No. 27 ( M - 2 )
What is a function? Give one example.
Answer:
Function is a reusable code (group of statement) that is executed when the function is called. It is also known as sub-program. Function is normally defined in the head section of the code.
CS101 - Introduction to Computing - Q.No. 28 ( M - 2 )
What is an intelligent system?
Answer:
Intelligent systems are the programs developed to perform complicated jobs that reflect human brain and thoughts. If the algorithms are too much complex or can not be solved instantly then we can use such systems. Therefore the well intelligent system not only performs well but it has the capability to rectify any errors by himself if it occurs within his domain.
The examples of intelligent systems are Robotics, Business Intelligence …etc.
CS101 - Introduction to Computing - Q.No. 29 ( M - 2 )
What is meant by semantic error ?
Answer:
It is an error which a developer encounters when a statement is executed but it was not intended by him (the developer). Such errors are very difficult to locate during testing. Mostly these occur during abnormal circumstances. It may be referred as the logical error.
CS101 - Introduction to Computing - Q.No. 30 ( M - 2 )
What is best algorithm?
Answer:
Greedy algorithm is the best algorithm as it is n algorithm that always takes the best immediate, or local solution while finding ananswer.
CS101 - Introduction to Computing - Q.No. 31 ( M - 3 )
How can we include images in a web page using HTML and Java script?
Answer:
Images can be included in HTML by employing tag, below is the format of