You are here: Home > Competitive Exams
All posts from

nielit.gov.in O Level Course Examination 2018 Old Question Paper : National Institute of Electronics & Information Technology

Name of the Organisation : National Institute of Electronics & Information Technology – NIELIT
Examination : O Level Course Examination 2018
Document Type : Old Question Paper
Year : January 2018
Subject Code : M1-R4 /M2-R4 /M3-R4 /M4.1-R4/M4.1-R4/M4.2-R4/M4.3-R4/M4.3-R4
Website : http://www.nielit.gov.in/content/january-2018

NIELIT O Level Course Examination Old Question Paper

Question Paper of O Level Course Examination All subject Question Paper January 2018 is now available in the official website of Directorate Of Economics And Statistics

Related / Similar Question Papers :
NIELIT O Level Course Exam Old Question Papers January 2019

Download Question Paper :
IT Tools & Business Systems : https://www.pdfquestion.in/uploads/M1IT.pdf
Internet Technology : https://www.pdfquestion.in/uploads/M2Int.pdf
‘C’ Language : https://www.pdfquestion.in/uploads/M3Clan.pdf
.Net Technology : https://www.pdfquestion.in/uploads/M41.NET.pdf
Multimedia : https://www.pdfquestion.in/uploads/M42mul.pdf
ICT Resources : https://www.pdfquestion.in/uploads/M43ICT.pdf

Instructions for Candidate

** Carefully read the instructions given on Question Paper, OMR Sheet and Answer Sheet.
** Question Paper is in Hindi and English language. Candidate can choose to answer in any one of the language (i.e., either Hindi or English)

** There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions.
** PART ONE is Objective type and carries 40 Marks. PART TWO is subjective type and carries 60 Marks.

** PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question paper, as per the instructions contained therein. PART ONE is NOT to be answered in the answer book for PART TWO.

** Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be supplied at the table when the answer sheet for PART ONE is returned. However, candidates who complete PART ONE earlier than one hour, can collect the answer book for PART TWO immediately after handing over the answer sheet for PART ONE.

** Candidate cannot leave the examination hall/room without signing on the attendance sheet or handing over his Answer sheet to the invigilator. Failing in doing so, will amount to disqualification of Candidate in this Module/Paper.

** After receiving the instruction to open the booklet and before answering the questions, the candidate should ensure that the Question booklet is complete in all respect.

Model Questions

IT Tools & Business Systems

1. Binary equivalent of (53.625)10 is __________.
A) (110101.101)2
B) (111101.001)2
C) (110111.100)2
D) (100101.101)2

2. FAT stands for _____________.
A) File Allocation Table
B) Folder Allocation Table
C) Folder Allocation Transition
D) File Allocation Transition

3. ___________ operation of file or folder is required to move location of file or folder.
A) Copy followed by Paste
B) Cut followed by Paste
C) Move followed by Paste
D) Change location

4. To get Help when using Office, you would click the ____________.
A) F1 Key
B) F2 Key
C) F3 Key
D) F4 Key

5. Operating System can be installed from following resources.
A) Disk
B) Network
C) Remote Installation
D) All of the above

6. ________ device is required for the Internet connection.
A) Joystick B) CD Drive
C) Mouse D) NIC Card

7. Size of Floppy disks is _________.
A) 5¼-inch
B) 2¼- inch
C) 7¼-inch
D) All of the above

8. ________ Memory is used to store BIOS on Motherboard.
A) ROM
B) RAM
C) CACHE
D) None of the Above

9. ______ is a known as high level language.
A) Windows 7
B) Linux
C) Microsoft .NET
D) Apple

10. User interact with the operating system through a set of __________.
A) Commands
B) USB Sticks
C) Scanner
D) All of the above

Internet Technology & Web Design

1. A webpage displays a picture. What tag was used to display that picture?
A) picture
B) image
C) img
D) src

2. <b> tag makes the enclosed text bold. What is other tag to make text bold?
A) <strong>
B) <dar>
C) <black>
D) <emp>

3. Which tag inserts a line horizontally on your web page?
A) <hr>
B) <line>
C) <line direction=”horizontal”>
D) <tr>

4. Which of the following protocol is used by remote login?
A) telnet
B) ftp
C) smtp
D) ntp

5. What should be the first tag in any HTML document?
A) <head>
B) <title>
C) <html>
D) <document>

6. What should be the last tag in any HTML document?
A) </head>
B) </html>
C) </title>
D) </document>

7. Which of the following is a search engine?
A) Twitter
B) Facebook
C) myspace
D) google

8. To create HTML document you require a
A) Web page editing software
B) High powered computer
C) Just a notepad can be used
D) None of above

9. The special formatting codes in HTML document used to present content are
A) tags
B) attributes
C) values
D) None of above

10. In HTML document the tags
A) Should be written in upper case
B) should be written in lower case
C) should be written in proper case
D) can be written in both uppercase or lowercase

Programming & Problem Solving Through ‘C’ Language

1. What will be output if you compile and execute the following ‘C’ code?
void main(){
float a=5.2;
if(a==5.2)
printf(“Equal”);
else if(a<5.2)
printf(“Less than”);
else
printf(“Greater than”);
}
A) Equal
B) Less than
C) Greater than
D) Compilation error

2. What will be output if you compile and execute the following ‘C’ code?
void main(){
int i=4,x;
x=++i + ++i + ++i;
printf(“%d”,x);
}
A) 21
B) 18
C) 12
D) Compilation error

3. The following code ‘for(;;)’ represents an infinite loop. It can be terminated by.
A) break
B) exit(0)
C) abort()
D) All of the mentioned

4. Arguments that take input by user before running a program are called?
A) main function arguments
B) main arguments
C) Command-Line arguments
D) Parameterized arguments

5. Automatic variables are allocated memory in
A) heap
B) Data segment
C) Code segment
D) stack

Application Of .Net Technology

1. Which of the following components of the .NET framework provide an extensible set of classes that can be used by any .NET compliant programming language?
A) .NET class libraries
B) Common Language Runtime
C) Common Language Infrastructure
D) Component Object Model

2. Which of the following .NET components can be used to remove unused references from the managed heap?
A) Common Language Infrastructure
B) CLR
C) Garbage Collector
D) Class Loader

3. Code that targets the Common Language Runtime is known as
A) Unmanaged
B) Distributed
C) Legacy
D) Managed Code

4. Which of the following is the root of the .NET type hierarchy?
A) System.Object
B) System.Type
C) System.Base
D) System.Parent

5. Which of the following statements is incorrect about a delegate?
A) A single delegate can invoke more than one method.
B) Delegates can be shared.
C) Delegate is a value type.
D) Delegates are type-safe wrappers for function pointers

6. Shared assemblies are installed where?
A) System Assembly Cache
B) Global Assembly Cache
C) Machine Assembly Cache
D) Windows Assembly Cache

Introduction To Multimedia

1. Which of the following is not a video file extension?
A) MP4
B) AVI
C) JPG
D) MOV

When you provide a structure of a linked elements through which the user can navigate, interactive multimedia becomes –
A) Hyper Text Markup Language
B) Hypermedia
C) Web media
D) Multimedia

3. In Monochrome monitor each pixel has a black and white value between:
A) 0 – 250
B) 0 – 25
C) 0 – 1
D) 0 – 230

4. The elements of multimedia are _____
A) Text, graphics, sound, video, animation, interactivity
B) Graphics, sound, video, animation, interactivity
C) Sound, video, animation, interactivity
D) Video, animation, interactivity

5. One of the disadvantages of multimedia is
A) Cost
B) Adaptability
C) Usability
D) Relativity

6. A smaller version of an image is called a:
A) Aclipart
B) bitmap
C) portable network graphic
D) thumbnail

7. VRML stands for which of the following?
A) Very Real Marking Language
B) Virtual Reality Marking Language
C) Virtual Reality Markup Language
D) Virtual Reality Makeup Language

8. The delay that occurs during the playback of a stream is called ________.
A) stream delay
B) playback delay
C) jitter
D) event delay

9. What does MIDI stands for
A) Musical Internet Digital Interface
B) Musical Internet Digital Interrupt
C) Musical Instrument Digital Interface
D) Musical Instrument Download Interface

10. Which of the following statements is true?
A) It is not a good idea to virus check plugins since this can delay viewing a multimedia object.
B) From time-to-time you may need to install a new plugin to play a multimedia object.
C) Browsers come with all of the necessary plugins for playing multimedia content.
D) Helpers and plugins are one and the same concepts.

Leave a Reply

How to add comment : 1) Type your comment below. 2) Type your name. 3) Post comment.

www.pdfquestion.in © 2021

Contact Us   Privacy Policy   SiteMap