Wednesday, January 30, 2019

M3-R4: Programming & Problem Solving Through 'C' Language January 2019

PART ONE
(Answer all the questions)


1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “OMR” answer sheet supplied with the question paper, following instructions therein.

1.1 Which of the following is the correct order of evaluation for the below expression?
(A) */%+-=
(B) =*/%+-
(C) /*%-+=
(D) *%/-+=
Answer

1.2 Which of the following is true for variable names in C
(A) They can contain alphanumeric characters as well special characters.
(B) It is not an error to declare a variable to be one of the keyboards (like goto, static)
(C) Variable names cannot start with a digit
(D) Variable can be of any length
Answer

1.3 What is the output of this C code?
 #include<stdio.h>
 int main()
 {
     int x=2,y=0;
     int z=y&&(y\=10);
     printf(“%d\n”,z);
     return 0;
 }
(A) 1
(B) 0
(C) undefined behavior due to order of evaluation
(D) 2
Answer

1.4
 main()
 {
     int i=1;
     while()
     {
         printf(“%d”,i++);
         if(i>10)
         break;
     }
 }
(A) The condition in while loop is must
(B) There should be a semicolon in the while loop
(C) The while loop should be replaced by for loop
(D) No error
Answer

1.5 What is right way to initialize arrays ?
(A) int num[6]={2,4,12,5,45,5};
(B) int n[]={2,4,12,5,45,5};
(C) int n[6]={2,4,12};
(D) int n[6]={2,4,12,5,45,5};
Answer

1.6 What will be the output of the following program?
    In C, if you pass an array as an argument to a function, what actually gets passed?
(A) Value of elements in array
(B) First element of array
(C) Base address of array
(D) Address of the last element of array
Answer

1.7
 #include<stdio.h>
 void fun(int *ptr)
 {
     *ptr=30;
 }
 int main()
 {
     int y=20;
     fun(&y);
     printf(“%d”,y);
     return 0;
 }
The output of above program is
(A) 20
(B) 30
(C) Compiler error
(D) Runtime error
Answer

1.8 If the two strings are identical, then strcmp() function returns
(A) -1
(B) 1
(C) 0
(D) infinity
Answer

1.9 What is the maximum number of dimensions an array in C may have ?
(A) 2
(B) 8
(C) 20
(D) Theoretically no limits. the only practical limits are memory and compilers
Answer

1.10 Is the following statement declaration or definition:
extern int i;
(A) Declaration
(B) Definition
(C) Function
(D) Error
Answer

2. Each statement below is either TRUE or FALSE. Choose the most appropriate one and enter your choice in the “OMR” answer sheet supplied with the question paper, following instructions therein.

2.1 The expressions *ptr++ and ++*ptr are same
2.2 C provides the strcmp() function to compare strings
2.3 A function cannot be defined inside another function.
2.4 Goto can be used to jump from main function to other function.
2.5 The default parameter passing mechanism is call by value.
2.6 The expressions arr and &arr same for an array of 10 integers
2.7 Memory allocation can be done by using keyword „create‟.
2.8 The expressions int fun(int arr[]); and int fun(int arr[2]); are same.
2.9 There can be two return statements inside a function.
2.10 Break statement can be used to exit a loop.
Answer

3. Match words and phrases in column X with the closest related meaning/ word(s)/phrase(s) in column Y. Enter your selection in the “OMR” answer sheet supplied with the question paper, following instructions therein.

X Y
3.1 For is A. is another name for a variable
3.2 Float B. more priority than +
3.3 Reference C. cannot return array
3.4 # define directive D. is not a correct variable type
3.5 enum is E. an entry controlled loop
3.6 Function F. is used to signal the beginning and end of code blocks
3.7 Logical OR Operator G. defines a macro
3.8 *has H. is a keyword
3.9 Real I. function all C programs must contain
3.10 Comments in C J. is the correct operator to compare two variables
K. user defined data types
L. /* */
M. ||
Answer

4. Each statement below has a blank space to fit one of the word(s) or phrase(s) in the list below. Choose the most appropriate option, enter your choice in the “OMR” answer sheet supplied with the question paper, following instructions therein.

A Return B Global C Sequential
D Infinite E do-while F Union
G Null H Ternary I integer
J Pointer K Auto L prototype
M Argument

4.1 An array elements are always stored in _______________ order.
4.2 The value obtained in the function is given back to main by using _______ keyword.
4.3 By default, storage class of local variable is _________.
4.4 _________ loop can be terminated using break statement.
4.5 __________ is a variable which holds the address of another variable.
4.6 Variables that are alive and active throughout the program are called _________ variables.
4.7 _________ is an exit control loop.
4.8 A pointer that does not point to any data object is _________.
4.9 The conditional operator ( ? : ) is a ___________.
4.10 In _________ all elements are stored in the same memory location.
Answer
    Part two

Sunday, January 20, 2019

M2-R4: Internet Technology & Web Design January 2019

PART ONE
(Answer all the questions)

1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “OMR” answer sheet supplied with the question paper, following instructions therein.

1.1 ARPANET Stands for
(A) Advanced Research Projects Agency Network
(B) Advance Research Project Agency Network
(C) Asymmetric Routing Project Advance Network
(D) None of Above

1.2 Which of the following layer is an end-to-end layer?
(A) Data Link Layer
(B) Transport Layer
(C) Network Layer
(D) Physical Layer
1.3 Router Operate at which layer?
(A) Network
(B) Physical
(C) Data Link
(D) Transport
1.4 Flow Control is performed at which of the following layer?
(A) Network
(B) Physical
(C) Data Link
(D) None of the options
1.5 <a> tag in HTML is used for creating
(A) List
(B) Links
(C) Address
(D) None of the options
1.6 Which topology is used by FDDI
(A) Bus Topology
(B) Ring Topology
(C) Dual Ring Topology
(D) Mesh Topology
1.7 Which of the following is are special address
(A) 0.0.0.0
(B) 127.0.0.1
(C) 127.[anything]
(D) All of the options
1.8 Connection oriented services at network layer in OSI model is called
(A) Datagram subnet 
(B) Virtual circuit
(C) Packet switching 
(D) None of the options
1.9 ISDN PRI has how many channels
(A) 22B+1D
(B) 23B+1D
(C) 24B+1D
(D) 25B+1D
1.10The size of an ATM cell is 
(A) 51 octets
(B) 53 octets
(C) 55 octets
(D) None of the options
2. Each statement below is either TRUE or FALSE. Choose the most appropriate one and enter your choice in the “OMR” answer sheet supplied with the question paper, following instructions therein.

2.1 The correct way to make an email link in HTML is <a href=”mailto:xx@yyy”>
2.2 Infrared waves and Optical Fibre cable uses light waves for transmission of data
2.3 ATM uses asynchronous time-division multiplexing, and encodes data into small, fixed-sized packets called cells.
2.4 HTTP is a stateless protocol.
2.5 Bridges do not forward LAN Broadcast at all.
2.6 Subnet Mask is made by setting network bits to all “O” s and setting host, bits to all “1”s.
2.7 Using HTML, you can create user defined tags.
2.8 ISDN prescribes two levels of service-BRI and PRI 
2.9 HTML is case sensitive.
2.10 href stands for hypertext reference.
3. Match words and phrases in column X with the closest related meaning/ word(s)/phrase(s) in column Y. Enter your selection in the “OMR” answer sheet supplied with the question paper, following instructions therein.

X Y
3.1 Represented in hexadecimal format A. Physical Layer
3.2 Character Stuffing B. Multicast
3.3 Every node is connected to every other node C. 32 bits
3.4 One to many communication D. Broadcast
3.5 Standard network protocol used to transfer computer files
between a client and server
E. MAC Address
3.6 Total Internal Reflection F. 48 bits
3.7 Bit Stuffing G. Twisted Pair Wire
3.8 Numbered List in HTML H. SLIP
3.9 Length of MAC Address I. Optical Fibre
3.10 Modulation J. FTP
K. PPP
L. Mesh
M. Ol

4. Each statement below has a blank space to fit one of the word(s) or phrase(s) in the list below. Choose the most appropriate option, enter your choice in the “OMR” answer sheet supplied with the question paper, following instructions therein.

A Port B Interpreted C Error Detecting
D FDDI E EMI F Tree Network
G Layering H Broadcast I Class D
J OLX K Broadcast L Compiled
M Flipkart

4.1 ___________ concept used in Networking Models.
4.2 ___________ address are used at Transport layer.
4.3 Fault tolerance feature is provided in ____________.
4.4 Twisting in Twisted pair is done for the purposes of canceling out ___________ from external sources.
4.5 ____________ is used in night vision equipment when there is insufficient visible light to see.
4.6 CRC is ___________ technique.
4.7 Ethernet supports ________________ transmission.
4.8 ______________ is an example of C2C E-Commerce Model.
4.9 JavaScript is a high-level, dynamic and ___________ programming language.
4.10 Multicasting support is provided in _____________ Address.
Answer
Part two    

Thursday, January 17, 2019

M4.3-R4: Introduction to ICT Resources January 2019

PART ONE
(Answer all the questions)

1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “OMR” answer sheet supplied with the question paper, following instructions therein.

1.1 ___________ is a device which is used to connect two different networks.
(A) Repeater
(B) Gateway
(C) Bridge
(D) None of the above
Answer

1.2 ___________ is known as loop back address.
(A) 200.200.1.1 
(B) 10.10.1.1
(C) 224.1.1.1 
(D) 127.0.0.1
Answer

1.3 ___________ is a bootstrap program in Windows.
(A) LiBoot
(B) GRUB
(C) LIGR
(D) NTLDR
1.4 Number of usable Host with address 192.168.128.0/22
(A) 10
(B) 100
(C) 1000
(D) 1022
1.5 Ethernet uses_________ method to access medium
(A) CSMA/CD
(B) CSMA/CA
(C) CSMA/AC
(D) CSMA/DC
1.6 ____________ topology is highly expensive
(A) Star
(B) Tree
(C) Fully Mesh
(D) Common Bus
1.7 OSI Model consists of ____________ number of layers.
(A) Four
(B) Five
(C) Six
(D) seven
1.8____________ memory is faster than RAM
(A) Cache
(B) Pen Drive
(C) HDD
(D) EPROM
1.9 ____________ is used to compress files and folders
(A) LinZip
(B) WinZip
(C) RER
(D) COMPRESS
1.10____________ Key is used to take snapshot of desktop screen
(A) Alt+Print Screen
(B) Enter+Print Screen
(C) F1+Print Screen
(D) Print Screen
2. Each statement below is either TRUE or FALSE. Choose the most appropriate one and enter your choice in the “OMR” answer sheet supplied with the question paper, following instructions therein.

2.1 MBR is known as boot partition.
2.2 Formatting drive will rearrange data in hard disk drive.
2.3 PCI slot is available in computer to install graphics card.
2.4 Fibre optic cable reduces cross talk effect.
2.5 Central Point of failure is disadvantage of star topology.
2.6 Steps of creation of User and Groups are similar in Linux operating system.
2.7 Defragmentation of Hard disk will erase content of drive.
2.8 Wireless Network uses radio waves to transmit signals.
2.9 NFS is a file sharing protocol in Windows operating system.
2.10 Switches take decision based on MAC Address. 
3. Match words and phrases in column X with the closest related meaning/ word(s)/phrase(s) in column Y. Enter your selection in the “OMR” answer sheet supplied with the question paper, following instructions therein.

X Y
3.1 Physical Address A. Collision Free Topology
3.2 Reduction of File Size B. OSI
3.3 Standard Creation Committee for Communication C. EEPROM
3.4 Logical Address D. ROM
3.5 Programmable Storage E. IP address
3.6 A Type of Printer F. Cost Effective Topology
3.7 Provides Internet G. Ping command
3.8 Mesh Topology H. pkzip
3.9 BUS Topology I. ISP
3.10 Command to test Network J. Ipconfig command
K. MAC address
L. Laser-jet
M. ISO
Answer

4. Each statement below has a blank space to fit one of the word(s) or phrase(s) in the list below. Choose the most appropriate option, enter your choice in the “OMR” answer sheet supplied with the question paper, following instructions therein.

A Operating System B Scan Disk C Circuit
D Path E UDP F Low Level
G Dynamic link library H High Level I Packet
J ROM BIOS K Recycle Bin L HDD
M Disk Cleanup

4.1 The DLL extension stands for _______.
4.2 _______ is a connectionless protocol.
4.3 In ______ switching, dedicated path is established before data is transferred.
4.4 _______ is a physical part of PC that keeps track of the hardware resources on the system.
4.5 Deleted files can be retrieved from ________.
4.6 ________ is a utility that removes unnecessary files from a slow running hard drive.
4.7 ________ is a utility program, which searches for unmapped file blocks of HDD.
4.8 ________ identifies on file’s location in the HDD.
4.9 ________ acts as an interface between user and hardware.
4.10 ________ formatting reformats file system of HDD.
Answer

Part two      

M1-R4: IT Tools & Business Systems January 2019

PART ONE
(Answer all the questions)

1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “OMR” answer sheet supplied with the question paper, following instructions therein.

1.1 Which is the technology used in the evaluation of the aptitude test?
(A) OCR
(B) OMR
(C) MICR
(D) MCR
Answer

1.2 SQL stands for:
(A) Standard Query Language
(B) Structured Query Language
(C) Shortest Query Language
(D) System Query Language
Answer

1.3 Which of the following is an impact printer?
(A) Laser
(B) Ink-jet
(C) Dot-matrix
(D) None of the options
Answer

1.4 To cut text from the document. press the keys
(A) Ctrl and V
(B) Ctrl and C
(C) Ctrl and A
(D) Ctrl and X
Answer

1.5 ROUND(1363.45,-2) returns
(A) 1400
(B) -1364
(C) 1363.45
(D) 1464
Answer

1.6 The number of bits to store a BCD digit is:
(A) 2
(B) 4
(C) 6
(D) 8
Answer

1.7 Numbers in base 8 are called as
(A) Octal System
(B) Hexadecimal System
(C) Decimal  System
(D) Binary Number  System
Answer

1.8 A collection of worksheets is called as
(A) Excel Sheets
(B) Workbook
(C) Excel Worksheets
(D) Excel Book
Answer

1.9 Binary number 1110 is equal to the decimal number           .
(A) 3
(B) 1
(C) 7
(D) 14
Answer

1.10 Which of the following is used to create newspaper style columns?
(A) Format Tabs
(B) Table Insert Table
(C) Insert Textbook
(D) Format Columns
Answer

2. Each statement below is either TRUE or FALSE. Choose the most appropriate one and enter your choice in the “OMR” answer sheet supplied with the question paper, following instructions therein.

2.1 MICR stands for magnetic Ink Character Reader.
2.2 Database can contain table, query and report.
2.3 Absolute cell referencing always refer to the small cell in spreadsheet.
2.4 Volatile memory is directly accessible by the CPU
2.5 Many operating systems are designed as collection of program modules.
2.6 Multitasking is also called parallel processing.
2.7 Page setup option is in table menu in MS Word.
2.8 Maximum zoom percentage in word document is 500.
2.9 A string of 8 Bits is called Byte.
2.10 The Recycle Bin is a folder that provides a convenient place to store frequently used documents, graphics and other files.
Answer

3. Match words and phrases in column X with the closest related meaning/ word(s)/phrase(s) in column Y. Enter your selection in the “OMR” answer sheet supplied with the question paper, following instructions therein.

XY
3.1A supercomputer’s speed measured inA.Artificial-Logic Unit
3.2ALU stand forB.Oracle
3.3Computers have several additional storage location calledC.Nanoseconds or Pico-second
3.4First all-electronic computer wasD.Arithmetic-Logic Unit
3.5ASCII stand forE.Random Access Memory
3.6Number System we use for our day-today activitiesF.Register access Memory
3.7Ram Stand forG.Mark-1
3.8SELECT isH.Registers
3.9Popular RDBMSI.Linux
3.10Open Source Operating SystemJ.Decimal
K.Decimal
L.Decimal
M.Decimal
Answer

4. Each statement below has a blank space to fit one of the word(s) or phrase(s) in the list below. Choose the most appropriate option, enter your choice in the “OMR” answer sheet supplied with the question paper, following instructions therein.


AF7BF4CTable
DUndoEF5FBinary Coded Decimal
GredoHProgramIrecord
J=K&L1024
MKernel module

4.1 Computer can execute a prerecorded list of instruction called a           .
4.2 To cancel the last editing, we use the            button.
4.3 The short cut key of slide show is           .
4.4 The key for spell check in MS word is           .
4.5 Formula in MS-Excel being with            sign.
4.6            is a complete collection of data displayed in row & columns.
4.7 BCD stand for           .
4.8 The central module of an operating system is called           .
4.9 1 GB is equivalent of            MB
4.10 Data items grouped together for storage purpose is called a           .
Answer

Part two