Jr Instructor(Information Communication Technology System Maintenance) (cat no 93/2018)

PROVISIONAL ANSWER KEY
Question Paper Code: 61/2019/OL
Category Code: 093/2018
Exam: Jr Instrctor(Information Communication
Technology System Maintenance)
Medium of Question: English
Date of Test 31-12-2019
Department Industrial Training
Alphacode A
Question1:-What are the active devices of I generation computer
A:-Vacuum tubes
B:-Transister
C:-Integrated Circuits
D:-Microprocessor
Correct Answer:- Option-A
Question2:-Which of the following is not a language translator
A:-Assembler
B:-Interpreter
C:-Compiler
D:-Application
Correct Answer:- Option-D
Question3:-1 Kilobyte = _____ bits
A:-8 bits
B:-`2^(10)`bits
C:-`8xx2^(10)` bits
D:-`8xx2^(16)` bits
Correct Answer:- Option-C
Question4:-Which one of the following is a volatile memory?
A:-ROM
B:-RAM
C:-EPROM
D:-EEPROM
Correct Answer:- Option-B
Question5:-Which of the following is an extension of image file?
A:-exe
B:-txt
C:-jpeg
D:-doc
Correct Answer:- Option-C
Question6:-The term “Pentium” relates to
A:-Operating system
B:-Microprocessor
C:-Hard disk
D:-Output device
Correct Answer:- Option-B
Question7:-Which of the following is not a flavor of Linux?
A:-Redhat
B:-Ubuntu
C:-Suse
D:-OS/2
Correct Answer:- Option-D
Question8:-Which of the following is used to keep a process running in background even after the user logout from shell?
A:-bg
B:-hup
C:-&
D:-nohup
Correct Answer:- Option-D
Question9:-On successful execution, fork returns _____ to parent process
A:-0
B:-1
C:-Child process id
D:-Parent process id
Correct Answer:- Option-C
Question10:-Which of the following is used to display the content of a file in octal format?
A:-cat
B:-oct
C:-od
D:-octal
Correct Answer:- Option-C
Question11:-What will be the output of the program?
#include
main()
{ float b=5, h=2, a;
a = 1/2 * b * h;
printf(“%f”,a);
}
A:-10
B:-10.000000
C:-0
D:-0.000000
Correct Answer:- Option-D
Question12:-Default return type of a function is
A:-null
B:-void
C:-int
D:-float
Correct Answer:- Option-C
Question13:-Which of the following is the last character of a string
A:-\0
B:-\n
C:-\t
D:-none of these
Correct Answer:- Option-A
Question14:-Name of an array returns _____
A:-First element of the array
B:-Size of the array
C:-Number of elements of the array
D:-Base address of the array
Correct Answer:- Option-D
Question15:-What will be the output of the following program segment?
#include
main()
{ int i;
for (i = 3; i <5; i++); printf("%d",i); } A:-3, 4 B:-5 C:-4 D:-None of these Correct Answer:- Option-B Question16:-What will be the output of the following program segment #include
main()
{ int z, x = 4, y = -10, a=4, b=2;
z = x++ – –y*b/a;
printf(%d”,z);
}
A:-6
B:-7
C:-8
D:-9
Correct Answer:- Option-D
Question17:-What will be the output?
main()
{ union stud
{ char name [10];
int regno;
int mark1;
int mark2;
} st;
printf(“%d,sizeof(st));
A:-16
B:-0
C:-12
D:-10
Correct Answer:- Option-D
Question18:-What is the return value of malloc()?
A:-size of the allocated memory
B:-base address of the allocated memory
C:-1 if memory allocation is success
D:-none of these
Correct Answer:- Option-B
Question19:-Which of the following header file must be included to use dynamic memory allocation functions?
A:-dos.h
B:-stdio.h
C:-stdlib.h
D:-memory.h
Correct Answer:- Option-C
Question20:-What will be the data type returned by the following function?
#include
int func()
{
return (float)(char)8.3;
}
A:-int
B:-float
C:-char
D:-multiple typecasting not allowed
Correct Answer:- Option-A
Question21:-What will be the output of the following program
#include
main()
{ int a=5b *3 % 6 – 8 + 3;
printf(“%d”,a);
}
A:-10
B:-2
C:–2
D:-3
Correct Answer:- Option-C
Question22:-Information on basic system configuration is stored in
A:-BIOS
B:-CMOS
C:-CONFIG.SYS
D:-ROM
Correct Answer:- Option-B
Question23:-Where do PC store CMOS settings?
A:-RAM
B:-Flash ROM
C:-South bridge
D:-NVRAM
Correct Answer:- Option-B
Question24:-How can you remove a CMOS password?
A:-Flash the BIOS
B:-Change the system clock to 00/00/0000
C:-Sent it back to factory
D:-Remove jumper on the mother board
Correct Answer:- Option-D
Question25:-Power-on self-test checks all of the flowing except
A:-CPU
B:-Memory
C:-Modem
D:-Video
Correct Answer:- Option-C
Question26:-Which of the following is a special database that holds key information about your system including the device
drivers?
A:-BOOT.INI
B:-CONFIG.SYS
C:-SYSTEM.INI
D:-Registry
Correct Answer:- Option-D
Question27:-IDE cables have how many pins?
A:-24
B:-32
C:-40
D:-64
Correct Answer:- Option-C
Question28:-Which controller support an external CD drive?
A:-ESDI
B:-MFM
C:-SCSI
D:-ARLL
Correct Answer:- Option-C
Question29:-Which of the following describes a fragmented hard disk?
A:-Files are corrupted
B:-Clusters of data are damaged
C:-Storage media is damaged
D:-Files are not stored in consecutive clusters
Correct Answer:- Option-D
Question30:-A 16 bit address bus can generate _____ addresses.
A:-65536
B:-32768
C:-32767
D:-None of these
Correct Answer:- Option-A
Question31:-The size of registers of 8086 microprocessor.
A:-12 bits
B:-8 bits
C:-16 bits
D:-32 bits
Correct Answer:- Option-C
Question32:-If there is a carry from lowest nibble during addition, _____ flag is set.
A:-Carry flag
B:-Overflow Flag
C:-Auxiliary carry
D:-Sign flag
Correct Answer:- Option-C
Question33:-The number of address and data lines of 8086
A:-8 and 8
B:-16 and 16
C:-20 and 16
D:-16 and 20
Correct Answer:- Option-C
Question34:-Which directory contains configuration files in linux?
A:-/bin/
B:-/etc/
C:-/root/
D:-/dev/
Correct Answer:- Option-B
Question35:-On successful completion, fork() returns _____ to the parent process.
A:-0
B:-1
C:–1
D:-Process ID of child process
Correct Answer:- Option-D
Question36:-What will be the output of the following program?
static int a = 3;
void main()
{ a = 5;
{
int a = 7;
}
printf(“%d”,a);
}
A:-3
B:-5
C:-7
D:-12
Correct Answer:- Option-B
Question37:-Default storage class of a variable declaration is _____
A:-auto
B:-extern
C:-static
D:-register
Correct Answer:- Option-A
Question38:-Fast access to data items available in a database file can be provided through
A:-Index file
B:-data file
C:-data dictionary
D:-metadata file
Correct Answer:- Option-C
Question39:-The term _____ is used to refer to a row in a table
A:-fields
B:-attributes
C:-Tuple
D:-none of these
Correct Answer:- Option-C
Question40:-Which one of the follow is not a RDBMS?
A:-Foxpro
B:-Oracle
C:-Mysql
D:-Sql server
Correct Answer:- Option-A
Question41:-Which one of the following is used to create a virtual relation for storing a query?
A:-view
B:-function
C:-procedure
D:-table
Correct Answer:- Option-A
Question42:-which one of the following option clause is used with view to reject the tuples that do not satisfy the “where
condition”?
A:-with
B:-with check
C:-check
D:-none of these
Correct Answer:- Option-B
Question43:-When using Foreign Key, the _____ of one relation is referenced in another relation
A:-Foreign Key
B:-Primary Key
C:-Check constraint
D:-None of these
Correct Answer:- Option-B
Question44:-_____ is the preferred method for enforcing data integrity
A:-Constraints
B:-Triggers
C:-Cursors
D:-Stored Procedure
Correct Answer:- Option-A
Question45:-What values does the count(*)function ignore?
A:-null values
B:-Integer
C:-character
D:-none of these
Correct Answer:- Option-A
Question46:-The _____ statement is used in SQL for authorization
A:-implement
B:-revoke
C:-grant
D:-none of these
Correct Answer:- Option-C
Question47:-_____ is executed when a table is modified
A:-procedure
B:-function
C:-trigger
D:-none of these
Correct Answer:- Option-C
Question48:-Which of the following command is used to delete a particular column in a relation?
A:-DELETE
B:-ALTER
C:-UPDATE
D:-DROP
Correct Answer:- Option-B
Question49:-A transaction completes its execution is said to be
A:-Saved
B:-Rolled
C:-Committed
D:-Loaded
Correct Answer:- Option-C
Question50:-The language used in application program to request for data from DBMS is
A:-DDL
B:-DML
C:-DCL
D:-all of these
Correct Answer:- Option-B
Question51:-Which of the following is NOT related to OOP?
A:-Encapsulation
B:-Data Abstraction
C:-Data Hiding
D:-Data Dictionary
Correct Answer:- Option-D
Question52:-In a class defined using an Object Oriented Programming language:
A:-All data and functions should be public to maximise flexibility and ease of use
B:-Nearly all data should be private and most functions should be public
C:-Nearly all data should be public and most functions should be private
D:-All data must be private, but functions are neither private nor public
Correct Answer:- Option-B
Question53:-Which among the following is an Object-Oriented Programming language?
A:-Java
B:-Simula 67
C:-Smalltalk
D:-All the above
Correct Answer:- Option-D
Question54:-_____ are the basic run times entities in an object-oriented system.
A:-Objects
B:-Classes
C:-Functions
D:-All the above
Correct Answer:- Option-A
Question55:-Operator Overloading
A:-Defines a new meaning to an existing operator
B:-Enables operators to work with objects
C:-Implements polymorphism
D:-All of the above
Correct Answer:- Option-D
Question56:-Virtual function in C++ implements _____
A:-Inheritance
B:-Polymorphism
C:-Data hiding
D:-None of the above
Correct Answer:- Option-B
Question57:-Multiple inheritance can be achieved in Java using _____
A:-Applets
B:-Servlets
C:-Interface
D:-Swing
Correct Answer:- Option-C
Question58:-Which of the following statements is TRUE about constructors?
A:-Constructors are automatically invoked when objects of the class are created
B:-Constructors can be overloaded
C:-The return type of constructors is void ( )
D:-Both (A) and (B)
Correct Answer:- Option-D
Question59:-Wrapping up of data and associated functions into one single unit is called
A:-Abstraction
B:-Encapsulation
C:-Data Hiding
D:-Polymorphism
Correct Answer:- Option-B
Question60:-Which among the following OOP feature promotes code reusability?
A:-Data Hiding
B:-Polymorphism
C:-Inheritance
D:-Late Binding
Correct Answer:- Option-C
Question61:-Private members of a class are accessible to:
A:-Member functions of that class
B:-Friend functions of that class
C:-All functions in the program
D:-Both (A) and (B)
Correct Answer:- Option-D
Question62:-A class which is not used to create objects, but is designed to act as a base class to be inherited by other
classes is called:
A:-Abstract class
B:-Virtual base class
C:-Template class
D:-None of the above
Correct Answer:- Option-A
Question63:-Which of the following programs in UNIX helps us to configure a machine as a proxy server?
A:-Apache
B:-Poff
C:-Synaptic
D:-Squid
Correct Answer:- Option-D
Question64:-The maximum number of class A networks possible according to the IPv4 addressing scheme is:
A:-32
B:-64
C:-126
D:-256
Correct Answer:- Option-C
Question65:-172.0.14.87 is a Class _____ address
A:-Class A
B:-Class B
C:-Class C
D:-Class D
Correct Answer:- Option-B
Question66:-In IPv6 address is a _____ bit address
A:-32
B:-64
C:-128
D:-256
Correct Answer:- Option-C
Question67:-How fast can CAT 6 cable transfer data?
A:-Upto 10 Mbps
B:-Upto 100 Mbps
C:-Upto 1 Gbps
D:-Upto 10 Gbps
Correct Answer:- Option-D
Question68:-The number of half duplex links required to connect five computers in mesh topology is:
A:-25
B:-20
C:-10
D:-15
Correct Answer:- Option-B
Question69:-A network device that connects dissimilar networks by providing the translation from one set of protocols to
another is:
A:-Switch
B:-Router
C:-Gateway
D:-Modem
Correct Answer:- Option-C
Question70:-Which among the following protocols is used for translating from IP address to MAC address?
A:-ICMP
B:-ARP
C:-RARP
D:-IGRP
Correct Answer:- Option-B
Question71:-The input and output ports of a router perform the _____ layer functions:
A:-Physical and Data link
B:-Network
C:-Both (A) and (B)
D:-None of the above
Correct Answer:- Option-A
Question72:-Transport Layer is responsible for _____ delivery of data:
A:-Node to node
B:-Process to process
C:-Hop to hop
D:-All of the above
Correct Answer:- Option-B
Question73:-A firewall is used in a network to:
A:-Prevent fire in a network
B:-To scan for viruses in files
C:-Prevent unauthorized access to the network
D:-None of the above
Correct Answer:- Option-C
Question74:-The maximum number of active devices in a Piconet is:
A:-4
B:-6
C:-7
D:-8
Correct Answer:- Option-D
Question75:-Which of the following is a private network?
A:-LAN
B:-WAN
C:-MAN
D:-None of the above
Correct Answer:- Option-A
Question76:-The IEEE standard for Wireless LAN is:
A:-IEEE 802.3
B:-IEEE 802.4
C:-IEEE 802.11
D:-IEEE 802.7
Correct Answer:- Option-C
Question77:-A protocol that allows non-ASCII messages to be sent through e-mails:
A:-MIME
B:-IMAP
C:-POP3
D:-SMTP
Correct Answer:- Option-A
Question78:-A sniffer is
A:-A protocol
B:-A virus
C:-A program that monitors and analyzes network traffic
D:-None of the above
Correct Answer:- Option-C
Question79:-Providing, managing and maintaining hardware, software, content integrity, security and reliable high speed
connection for a website is called:
A:-Web hosting
B:-Web Browsing
C:-Web Crawling
D:-Navigation
Correct Answer:- Option-A
Question80:-The system that helps users to identify host computers in a network by their names instead of their IP
addresses is:
A:-TCP
B:-DNS
C:-PPP
D:-ARP
Correct Answer:- Option-B
Question81:-A computer virus that copies itself to the beginning of the hard disk, where it is automatically executed when
the system is turned ON is called _____
A:-Worm
B:-Trojan Horse
C:-Boot sector virus
D:-None of the above
Correct Answer:- Option-C
Question82:-What is a trap door in a program?
A:-A security hole inserted while writing the program, which is intended for later use
B:-An error in the program
C:-Security hole in a network
D:-None of the above
Correct Answer:- Option-A
Question83:-Honeypot is an example for
A:-Security auditing software
B:-Intrusion detection software
C:-Encryption software
D:-Virus
Correct Answer:- Option-B
Question84:-Which feature of cloud computing allows the service to change in size or volume in order to meet user’s needs?
A:-Scalability
B:-Security
C:-Virtualization
D:-Cost savings
Correct Answer:- Option-A
Question85:-DoS is the acronym for
A:-Denial of Security
B:-Delivery of Service
C:-Denial of Service
D:-Delivery of Security
Correct Answer:- Option-C
Question86:-Which among the following is NOT a web browser?
A:-Microsoft Edge
B:-Google Chrome
C:-Mozilla Firefox
D:-None of the above
Correct Answer:- Option-D
Question87:-URL stands for _____
A:-Universal Resource Locator
B:-Uniform Resource Locator
C:-Unified Resource Locator
D:-Universal Route Locator
Correct Answer:- Option-A
Question88:-What should be the first tag in any HTML document?
A:-
B:-<br /> C:-<document><br /> D:-<html><br /> Correct Answer:- Option-D<br /> Question89:-Domain names used by commercial establishments usually have the suffix _____<br /> A:-.com<br /> B:-.org<br /> C:-.ac.in<br /> D:-.gov.in<br /> Correct Answer:- Option-A<br /> Question90:-Choose the correct HTML tag to make the text bold:<br /> A:-<b><br /> B:-<bold><br /> C:-<strong><br /> D:-Both (A) and (B)<br /> Correct Answer:- Option-D<br /> Question91:-Marquee is a tag in HTML used to:<br /> A:-Mark the list of items to maintain in queue<br /> B:-Mark the text so that it is hidden in browser<br /> C:-Display text with scrolling effect<br /> D:-None of the Above<br /> Correct Answer:- Option-C<br /> Question92:-CSS is an acronym for<br /> A:-Cascading Style Sheet<br /> B:-Cascading Style System<br /> C:-Cascading server Sheet<br /> D:-None of the above<br /> Correct Answer:- Option-A<br /> Question93:-Which of the following statements is TRUE about JavaScript?<br /> A:-JavaScript is designed to add style to HTML pages<br /> B:-JavaScript is designed to add interactivity to HTML pages<br /> C:-JavaScript is used to perform server side scripting operations<br /> D:-None of the Above<br /> Correct Answer:- Option-B<br /> Question94:-_____ is a built-in JavaScript function which can be used to execute another function after a given time interval.<br /> A:-Timeout( )<br /> B:-TimeInterval( )<br /> C:-setTimeout( )<br /> D:-All of the above<br /> Correct Answer:- Option-C<br /> Question95:-A dynamic web page is<br /> A:-Displayed the same every time<br /> B:-Generated on demand by a program on a request from browser<br /> C:-Both (A) and (B)<br /> D:-None of the above<br /> Correct Answer:- Option-B<br /> Question96:-Which of the following is NOT TRUE about PHP?<br /> A:-PHP can be used to develop web applications<br /> B:-PHP makes a website dynamic<br /> C:-PHP applications cannot be compiled<br /> D:-PHP cannot be embedded into HTML<br /> Correct Answer:- Option-D<br /> Question97:-PHP scripts are enclosed with _____<br /> A:-<php>…</php> B:-<?php...?><br /> C:-?php…?php<br /> D:-</p> <p>…</p> <p> Correct Answer:- Option-B<br /> Question98:-Which of the following is the correct statement to create an array in PHP?<br /> (i) state[0] = “Kerala”;<br /> (ii) $state[ ] = array(“Kerala”);<br /> (iii) $state[0] = “Kerala”;<br /> (iv) $state = array(“Kerala”);<br /> A:-(iii) and (iv)<br /> B:-(ii) and (iii)<br /> C:-Only (iv)<br /> D:-(ii), (iii) and (iv)<br /> Correct Answer:- Option-A<br /> Question99:-Which one of the following PHP functions allow user-defined functions to accept variable length argument lists?<br /> A:-func_get_argv()<br /> B:-func_get_args()<br /> C:-get_argv()<br /> D:-get_args()<br /> Correct Answer:- Option-B<br /> Question100:-_____ is the concatenation operator in PHP<br /> A:-.(dot)<br /> B:-+<br /> C:-=<br /> D:-^<br /> Correct Answer:- Option-A</p> <nav class="pagination group"> </nav><!--/.pagination--> </div> <div class="clear"></div> </div><!--/.entry--> </div><!--/.post-inner--> </article><!--/.post--> <div class="clear"></div> <p class="post-tags"><span>Tags:</span> <a href="https://keralapsconline.in/tag/jr-instructorinformation-communication-technology-system-maintenance-cat-no-93-2018/" rel="tag">Jr Instructor(Information Communication Technology System Maintenance) (cat no 93/2018)</a></p> <h4 class="heading"> <i class="far fa-hand-point-right"></i>You may also like...</h4> <ul class="related-posts group"> <li class="related post-hover"> <article class="post-1210 post type-post status-publish format-standard hentry category-uncategorized tag-assistant-town-planner-departmental-quota-town-and-country-planning exam-year-220"> <div class="post-thumbnail"> <a href="https://keralapsconline.in/assistant-town-planner-departmental-quota-town-and-country-planning/" class="hu-rel-post-thumb"> <svg class="hu-svg-placeholder thumb-medium-empty" id="63f16c712bb90" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M928 832q0-14-9-23t-23-9q-66 0-113 47t-47 113q0 14 9 23t23 9 23-9 9-23q0-40 28-68t68-28q14 0 23-9t9-23zm224 130q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zm-1024 574h1536v-128h-1536v128zm1152-574q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zm-1024-642h384v-128h-384v128zm-128 192h1536v-256h-828l-64 128h-644v128zm1664-256v1280q0 53-37.5 90.5t-90.5 37.5h-1536q-53 0-90.5-37.5t-37.5-90.5v-1280q0-53 37.5-90.5t90.5-37.5h1536q53 0 90.5 37.5t37.5 90.5z"/></svg> <img class="hu-img-placeholder" src="https://keralapsconline.in/wp-content/themes/hueman/assets/front/img/thumb-medium-empty.png" alt="ASSISTANT TOWN PLANNER – DEPARTMENTAL QUOTA – TOWN AND COUNTRY PLANNING" data-hu-post-id="63f16c712bb90" /> </a> <a class="post-comments" href="https://keralapsconline.in/assistant-town-planner-departmental-quota-town-and-country-planning/#respond"><i class="far fa-comments"></i>0</a> </div><!--/.post-thumbnail--> <div class="related-inner"> <h4 class="post-title entry-title"> <a href="https://keralapsconline.in/assistant-town-planner-departmental-quota-town-and-country-planning/" rel="bookmark">ASSISTANT TOWN PLANNER – DEPARTMENTAL QUOTA – TOWN AND COUNTRY PLANNING</a> </h4><!--/.post-title--> <div class="post-meta group"> <p class="post-date"> <time class="published updated" datetime="2023-02-08 09:10:22">February 8, 2023</time> </p> <p class="post-byline" style="display:none"> by <span class="vcard author"> <span class="fn"><a href="https://keralapsconline.in/author/kpowbadmn/" title="Posts by kpowbadmn" rel="author">kpowbadmn</a></span> </span> · Published <span class="published">February 8, 2023</span> </p> </div><!--/.post-meta--> </div><!--/.related-inner--> </article> </li><!--/.related--> <li class="related post-hover"> <article class="post-668 post type-post status-publish format-standard hentry category-uncategorized tag-pharmacist-grade-ii-ayurveda exam-year-7"> <div class="post-thumbnail"> <a href="https://keralapsconline.in/pharmacist-grade-ii-ayurveda-2/" class="hu-rel-post-thumb"> <svg class="hu-svg-placeholder thumb-medium-empty" id="63f16c712db9f" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M928 832q0-14-9-23t-23-9q-66 0-113 47t-47 113q0 14 9 23t23 9 23-9 9-23q0-40 28-68t68-28q14 0 23-9t9-23zm224 130q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zm-1024 574h1536v-128h-1536v128zm1152-574q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zm-1024-642h384v-128h-384v128zm-128 192h1536v-256h-828l-64 128h-644v128zm1664-256v1280q0 53-37.5 90.5t-90.5 37.5h-1536q-53 0-90.5-37.5t-37.5-90.5v-1280q0-53 37.5-90.5t90.5-37.5h1536q53 0 90.5 37.5t37.5 90.5z"/></svg> <img class="hu-img-placeholder" src="https://keralapsconline.in/wp-content/themes/hueman/assets/front/img/thumb-medium-empty.png" alt="PHARMACIST GRADE II – AYURVEDA" data-hu-post-id="63f16c712db9f" /> </a> <a class="post-comments" href="https://keralapsconline.in/pharmacist-grade-ii-ayurveda-2/#respond"><i class="far fa-comments"></i>0</a> </div><!--/.post-thumbnail--> <div class="related-inner"> <h4 class="post-title entry-title"> <a href="https://keralapsconline.in/pharmacist-grade-ii-ayurveda-2/" rel="bookmark">PHARMACIST GRADE II – AYURVEDA</a> </h4><!--/.post-title--> <div class="post-meta group"> <p class="post-date"> <time class="published updated" datetime="2023-02-08 05:16:21">February 8, 2023</time> </p> <p class="post-byline" style="display:none"> by <span class="vcard author"> <span class="fn"><a href="https://keralapsconline.in/author/kpowbadmn/" title="Posts by kpowbadmn" rel="author">kpowbadmn</a></span> </span> · Published <span class="published">February 8, 2023</span> </p> </div><!--/.post-meta--> </div><!--/.related-inner--> </article> </li><!--/.related--> <li class="related post-hover"> <article class="post-1903 post type-post status-publish format-standard hentry category-uncategorized tag-food-safety-officer-sr-for-sc-st-food-safety exam-year-505 department-food-safety"> <div class="post-thumbnail"> <a href="https://keralapsconline.in/food-safety-officer-sr-for-sc-st-food-safety/" class="hu-rel-post-thumb"> <svg class="hu-svg-placeholder thumb-medium-empty" id="63f16c712ffa2" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M928 832q0-14-9-23t-23-9q-66 0-113 47t-47 113q0 14 9 23t23 9 23-9 9-23q0-40 28-68t68-28q14 0 23-9t9-23zm224 130q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zm-1024 574h1536v-128h-1536v128zm1152-574q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zm-1024-642h384v-128h-384v128zm-128 192h1536v-256h-828l-64 128h-644v128zm1664-256v1280q0 53-37.5 90.5t-90.5 37.5h-1536q-53 0-90.5-37.5t-37.5-90.5v-1280q0-53 37.5-90.5t90.5-37.5h1536q53 0 90.5 37.5t37.5 90.5z"/></svg> <img class="hu-img-placeholder" src="https://keralapsconline.in/wp-content/themes/hueman/assets/front/img/thumb-medium-empty.png" alt="Food Safety Officer (SR for SC/ ST) – Food Safety" data-hu-post-id="63f16c712ffa2" /> </a> <a class="post-comments" href="https://keralapsconline.in/food-safety-officer-sr-for-sc-st-food-safety/#respond"><i class="far fa-comments"></i>0</a> </div><!--/.post-thumbnail--> <div class="related-inner"> <h4 class="post-title entry-title"> <a href="https://keralapsconline.in/food-safety-officer-sr-for-sc-st-food-safety/" rel="bookmark">Food Safety Officer (SR for SC/ ST) – Food Safety</a> </h4><!--/.post-title--> <div class="post-meta group"> <p class="post-date"> <time class="published updated" datetime="2023-02-09 04:29:50">February 9, 2023</time> </p> <p class="post-byline" style="display:none"> by <span class="vcard author"> <span class="fn"><a href="https://keralapsconline.in/author/kpowbadmn/" title="Posts by kpowbadmn" rel="author">kpowbadmn</a></span> </span> · Published <span class="published">February 9, 2023</span> · Last modified <span class="updated">February 10, 2023</span> </p> </div><!--/.post-meta--> </div><!--/.related-inner--> </article> </li><!--/.related--> </ul><!--/.post-related--> <section id="comments" class="themeform"> <!-- comments open, no comments --> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/jr-instructorinformation-communication-technology-system-maintenance-cat-no-93-2018/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://keralapsconline.in/wp-comments-post.php" method="post" id="commentform" class="comment-form"><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required="required"></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required="required" /></p> <p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="text" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required="required" /></p> <p class="comment-form-url"><label for="url">Website</label> <input id="url" name="url" type="text" value="" size="30" maxlength="200" autocomplete="url" /></p> <p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time I comment.</label></p> <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='1438' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p></form> </div><!-- #respond --> </section><!--/#comments--> </div><!--/.hu-pad--> </main><!--/.content--> <div class="sidebar s1 collapsed" data-position="right" data-layout="col-2cl" data-sb-id="s1"> <button class="sidebar-toggle" title="Expand Sidebar"><i class="fas sidebar-toggle-arrows"></i></button> <div class="sidebar-content"> <div class="sidebar-top group"> <p>Follow:</p> </div> <ul class="post-nav group"> <li class="next"><strong>Next story </strong><a href="https://keralapsconline.in/junior-instructor-desktop-publishing-operator-cat-no597-2017/" rel="next"><i class="fas fa-chevron-right"></i><span>Junior Instructor (Desktop Publishing Operator) (cat no597/2017)</span></a></li> <li class="previous"><strong>Previous story </strong><a href="https://keralapsconline.in/assistant-professor-in-community-dentistry-nca-kerala-medical-education/" rel="prev"><i class="fas fa-chevron-left"></i><span>ASSISTANT PROFESSOR IN COMMUNITY DENTISTRY – NCA – KERALA MEDICAL EDUCATION</span></a></li> </ul> <div id="block-2" class="widget widget_block widget_search"><form role="search" method="get" action="https://keralapsconline.in/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search"><label for="wp-block-search__input-1" class="wp-block-search__label" >Search</label><div class="wp-block-search__inside-wrapper " ><input type="search" id="wp-block-search__input-1" class="wp-block-search__input wp-block-search__input" name="s" value="" placeholder="" required /><button type="submit" class="wp-block-search__button wp-element-button" >Search</button></div></form></div><div id="block-3" class="widget widget_block"><div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Posts</h2><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://keralapsconline.in/organiser-for-sports-in-schools-general-education/">Organiser for Sports in Schools – General Education</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://keralapsconline.in/manager-personnel-apex-societies-of-co-operative-sectors-in-kerala/">Manager (Personnel) – Apex Societies of Co operative Sectors in Kerala</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://keralapsconline.in/pump-operator-museum-and-zoos/">Pump Operator – Museum and Zoos</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://keralapsconline.in/dairy-extension-officer-dairy-development-department/">Dairy Extension Officer – Dairy Development Department</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://keralapsconline.in/scientific-assistant-physiotherapy-medical-education/">Scientific Assistant (Physiotherapy) – Medical Education</a></li> </ul></div></div></div><div id="block-4" class="widget widget_block"><div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container"><h2>Recent Comments</h2><div class="no-comments wp-block-latest-comments">No comments to show.</div></div></div></div> </div><!--/.sidebar-content--> </div><!--/.sidebar--> </div><!--/.main-inner--> </div><!--/.main--> </div><!--/.container-inner--> </div><!--/.container--> <footer id="footer"> <section class="container" id="footer-widgets"> <div class="container-inner"> <div class="hu-pad group"> <div class="footer-widget-1 grid one-third "> <div id="block-5" class="widget widget_block"><div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container"><h2>Archives</h2><ul class=" wp-block-archives-list wp-block-archives"> <li><a href='https://keralapsconline.in/2023/02/'>February 2023</a></li> </ul></div></div></div><div id="block-6" class="widget widget_block"><div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container"><h2>Categories</h2><ul class="wp-block-categories-list wp-block-categories"> <li class="cat-item cat-item-1"><a href="https://keralapsconline.in/category/uncategorized/">Uncategorized</a> </li> </ul></div></div></div> </div> <div class="footer-widget-2 grid one-third "> </div> <div class="footer-widget-3 grid one-third last"> </div> </div><!--/.hu-pad--> </div><!--/.container-inner--> </section><!--/.container--> <section class="container" id="footer-bottom"> <div class="container-inner"> <a id="back-to-top" href="#"><i class="fas fa-angle-up"></i></a> <div class="hu-pad group"> <div class="grid one-half"> <div id="copyright"> <p>Kerala PSC Online © 2023. All Rights Reserved.</p> </div><!--/#copyright--> <div id="credit" style=""> <p>Powered by <a class="fab fa-wordpress" title="Powered by WordPress" href="https://wordpress.org/" target="_blank" rel="noopener noreferrer"></a> - Designed with the <a href="https://presscustomizr.com/hueman/" title="Hueman theme">Hueman theme</a></p> </div><!--/#credit--> </div> <div class="grid one-half last"> </div> </div><!--/.hu-pad--> </div><!--/.container-inner--> </section><!--/.container--> </footer><!--/#footer--> </div><!--/#wrapper--> <script src='https://keralapsconline.in/wp-includes/js/underscore.min.js?ver=1.13.4' id='underscore-js'></script> <script id='hu-init-js-js-extra'> var HUParams = {"_disabled":[],"SmoothScroll":{"Enabled":false,"Options":{"touchpadSupport":false}},"centerAllImg":"1","timerOnScrollAllBrowsers":"1","extLinksStyle":"","extLinksTargetExt":"","extLinksSkipSelectors":{"classes":["btn","button"],"ids":[]},"imgSmartLoadEnabled":"1","imgSmartLoadOpts":{"parentSelectors":[".container .content",".post-row",".container .sidebar","#footer","#header-widgets"],"opts":{"excludeImg":[".tc-holder-img"],"fadeIn_options":100,"threshold":0}},"goldenRatio":"1.618","gridGoldenRatioLimit":"350","sbStickyUserSettings":{"desktop":false,"mobile":false},"sidebarOneWidth":"340","sidebarTwoWidth":"260","isWPMobile":"","menuStickyUserSettings":{"desktop":"stick_up","mobile":"stick_up"},"mobileSubmenuExpandOnClick":"1","submenuTogglerIcon":"<i class=\"fas fa-angle-down\"><\/i>","isDevMode":"","ajaxUrl":"https:\/\/keralapsconline.in\/?huajax=1","frontNonce":{"id":"HuFrontNonce","handle":"95ada95074"},"isWelcomeNoteOn":"","welcomeContent":"","i18n":{"collapsibleExpand":"Expand","collapsibleCollapse":"Collapse"},"deferFontAwesome":"1","fontAwesomeUrl":"https:\/\/keralapsconline.in\/wp-content\/themes\/hueman\/assets\/front\/css\/font-awesome.min.css?3.7.23","mainScriptUrl":"https:\/\/keralapsconline.in\/wp-content\/themes\/hueman\/assets\/front\/js\/scripts.min.js?3.7.23","flexSliderNeeded":"","flexSliderOptions":{"is_rtl":false,"has_touch_support":true,"is_slideshow":false,"slideshow_speed":5000}}; </script> <script src='https://keralapsconline.in/wp-content/themes/hueman/assets/front/js/hu-init.min.js?ver=3.7.23' id='hu-init-js-js'></script> <script src='https://keralapsconline.in/wp-includes/js/comment-reply.min.js?ver=6.1.1' id='comment-reply-js'></script> <!--[if lt IE 9]> <script src="https://keralapsconline.in/wp-content/themes/hueman/assets/front/js/ie/respond.js"></script> <![endif]--> </body> </html><!-- WP Fastest Cache file was created in 0.20319008827209 seconds, on 19-02-23 0:25:21 -->