Q1 clearance of letter boxes placed at Railway stations where there are Mail Offices should, as far as possible, be fixed by Superintendents of RMS |
Q2 Machine franked articles can be posted at not more than --------offices specified by the Head of the Division in the license Two |
Q3 Who is responsible for seeing that the franked articles have been franked in the prescribed manner and that systematic underpayment is not going on.? The Postmaster of office of Posting |
Q4 Machine-franked articles posted in letter-boxes should be treated as --------- unpaid articles |
Q5 The Indian Post Office Bill having been passed by the Legislature received its assent on 22nd March 1898. |
Q6 In which offence the police officer may arrest without warrant Cognizable offence |
Q7 Compulsory Retirement is a ---------- penalty Major |
Q8 Withholding of increments of pay is a ------------penalty Minor |
Q9 If a government servant committed misconduct in earlier employment , then who will take action ? The present disciplinary authority |
Q10 Who is the appointing authority of presenting officer in a disciplinary case? The Disciplinary authority |
Q11 If a government servant is kept away from duty for certain period till an enquiry investigation is completed , then the action is called as ----------- Suspension |
Q12 CCS CCA rules come in to force on the 1st December 1965 |
Q13 From the ‘CCA ‘ the ‘ A’ denotes for -------------- Appeal |
Q14 The civil services of the union shall be classified as four groups. Which is third one classification Group C |
Q15 In which article of Indian constitution of India specify about Central Civil Services (CCA) rules Article 148 |
Q16 If a Government servant was taken into police custody and period exceeds forty Eight hours then this is called as -------- Deem Suspension |
Q17 When a Government is under suspension the premium of PLI polices must be recovered from Subsistence allowance The above said statement is False |
Q18 If a government servants refused to work overtime then this mass action called as Strike |
Q19 Railway servant is not coming under CCS(temporary service ) Rules The above said statement is True |
Q20 in what case or condition that the disciplinary case should come to an end? Death of the alleged offender |
Q21 An official who may have to appear as witness in case should not be appointed as the presenting officer or Inquiry officer The above said statement is True |
Q22 As per term and condition for appointing retired officer as inquiry officers , what is age limit of retired officer Not more than 70 years of age as on the first July of the year of his empanelment |
Q23 What is mention in Rule 14 (5) of CCS (CCA) rules 1965 ? The disciplinary authority may itself inquire into the charges against the accused government |
Q24 Whether an informal warning may be considered as censure No |
Q25 Whether a Government servant under suspension can be transferred to another place No |
Prepared by S Jayachandran, Sys Adm , Mavelikara Postal Division, Kerala -690101 If you want more question please intimate to me Mail id shankarjayac123@gmail.com or mobile no 9961464279 |
Showing posts with label Questions / Answers. Show all posts
Showing posts with label Questions / Answers. Show all posts
Tuesday, August 23, 2011
Study Materiel for IPO Examinations
Monday, August 22, 2011
LGO examination : Model Questions
Last Grade Official [LGO] Examination for the promotion of
Postal Assistants/Sorting Assistants
Write with Ball Point pen in boxes and HB pencils for darkening the responses for MCQs [Multiple Choice Questions] Max Marks 100
PAPER – II Time 60 Minutes
[a] France [b] Bhutan [c] Myanmar [d] Srilanka
2. Unpaid articles addressed by the public to officials of the Department of Post should
be taxed with postage, treated as refused and forward to _________ for returning to
sender
[a] Sender [b] Head of Department of Posts [c] RLO [d] office of posting
3. Registered Bundles are prepared whenever there are more than ______ uninsured
Registered articles of the letter mail for any Post Office for which any direct mail bag
is not closed.
4 Greetings mails posted in non-seasonal period sent by earliest available
[a] Surface mode [b] Air lift mode [c] Air lift without collecting surcharge
[d] Treated as First Class mails for dispatch
5 Territorial Bundles are prepared when number of articles is ________ or more.
[a] 12 [b] 16 [c] 30 [d] 25
6 In Meghdoot Millennium Point of Sale [POS] to go to the next field press
[a] Enter/TAB key [b] Alt Key [c} Del key [d] Ctrl key
7. Crediting annual premium for a Rural Postal Life Insurance [RPLI] policy,
Grace period of ______ days will be allowed for the holder to pay the premium
without fine.
[a] 30 days [b] 45 days [c] 60 days [d] 75 days
8 Yellow strip in corner check slips are used for
a] Rajdhani mails [b] Metro mails [c] Air-Mails [d] Express Bundle
9. Rebate rate for RPLI Policy premium payment for twelve advance months is
[a] 0.5 % [b] 1% [c] 2% [c] 2 ½ %
10 For issuing duplicate RPLI/PLI policy, application in prescribed format should be
submitted in Rs ________ Stamp paper .
[a] Rs 50 [b] Rs 100 [c] Rs 250 [d] Rs 60
Sunday, August 21, 2011
SQL Server 2008 - Interview Questions and Answers
1. What are the basic functions for master, msdb, model, tempdb and resource databases?
1. The master database holds information for all databases located on the SQL Server instance and is theglue that holds the engine together. Because SQL Server cannot start without a functioning masterdatabase, you must administer this database with care.
2. The msdb database stores information regarding database backups, SQL Agent information, DTS packages, SQL Server jobs, and some replication information such as for log shipping.
3. The tempdb holds temporary objects such as global and local temporary tables and stored procedures.
4. The model is essentially a template database used in the creation of any new user database created in the instance.
5. The resoure Database is a read-only database that contains all the system objects that are included with SQL Server. SQL Server system objects, such as sys.objects, are physically persisted in the Resource database, but they logically appear in the sys schema of every database. The Resource database does not contain user data or user metadata.
2. What is Service Broker?
Service Broker is a message-queuing technology in SQL Server that allows developers to integrate SQL Server fully into distributed applications. Service Broker is feature which provides facility to SQL Server to send an asynchronous, transactional message. it allows a database to send a message to another database without waiting for the response, so the application will continue to function if the remote database is temporarily unavailable.
3. Where SQL server user names and passwords are stored in SQL server?
They get stored in System Catalog Views sys.server_principals and sys.sql_logins.
4. What is Policy Management?
Policy Management in SQL SERVER 2008 allows you to define and enforce policies for configuring and managing SQL Server across the enterprise. Policy-Based Management is configured in SQL Server Management Studio (SSMS). Navigate to the Object Explorer and expand the Management node and the Policy Management node; you will see the Policies, Conditions, and Facets nodes.
5. What is Replication and Database Mirroring?
Database mirroring can be used with replication to provide availability for the publication database. Database mirroring involves two copies of a single database that typically reside on different computers. At any given time, only one copy of the database is currently available to clients which are known as the principal database. Updates made by clients to the principal database are applied on the other copy of the database, known as the mirror database. Mirroring involves applying the transaction log from every insertion, update, or deletion made on the principal database onto the mirror database.
6. What are Sparse Columns?
A sparse column is another tool used to reduce the amount of physical storage used in a database. They are the ordinary columns that have an optimized storage for null values. Sparse columns reduce the space requirements for null values at the cost of more overhead to retrieve nonnull values.
7. What does TOP Operator Do?
The TOP operator is used to specify the number of rows to be returned by a query. The TOP operator has new addition in SQL SERVER 2008 that it accepts variables as well as literal values and can be used with INSERT, UPDATE, and DELETES statements.
8. What is CTE?
CTE is an abbreviation Common Table Expression. A Common Table Expression (CTE) is an expression that can be thought of as a temporary result set which is defined within the execution of a single SQL statement. A CTE is similar to a derived table in that it is not stored as an object and lasts only for the duration of the query.
9. What is MERGE Statement?
MERGE is a new feature that provides an efficient way to perform multiple DML operations. In previous versions of SQL Server, we had to write separate statements to INSERT, UPDATE, or DELETE data based on certain conditions, but now, using MERGE statement we can include the logic of such data modifications in one statement that even checks when the data is matched then just update it and when unmatched then insert it. One of the most important advantages of MERGE statement is all the data is read and processed only once.
10. What is Filtered Index?
Filtered Index is used to index a portion of rows in a table that means it applies filter on INDEX which improves query performance, reduce index maintenance costs, and reduce index storage costs compared with full-table indexes. When we see an Index created with some where clause then that is actually a FILTERED INDEX.
Alasan Memilih Bergabung di Pulsagram
Allowances
Announcements
APLIKASI HP
APLIKASI PC
Banking
bisnis internet
BISNIS ONLINE
BOLA
BSNL
Business
Cara Buat Akun Liberty Reserve (LR)
Cara Daftar Di Neobux
Cara kerja Copy Paste
Cara mendapatkan uang dari duitbux
Cara Mendapatkan Uang dari Facebook Melalui Like To Cash
Cara Mudah Cari Dollar Via Donkeymails
Cara mudah dapat uang melalui internet dengan Dollarsincome
CEA
CGHS
Computer Guidelines
Customer Care
dapat dollar gratis
Dollar Dari Clicksense
Dollar Dari Neobux
dollar gratis
DOP News
DOP Orders
DOPT Orders
DOWNLOAD
Education
Employees News
Employment News
Entertainments
Events
Exam / Result
Exam / Syllabus
FACEBOOK
FAQ
For System Administrators
Forms
GDS
General Informations
General Knowledge
GOVT Orders
Guidelines
Hardwares
Health Tips
Holiday Home
Honorarium / Incentives
Income Tax
INFO KITA
Info Lowongan Kerja
Internet Tips
IPO
JOB COPAS
Jual
KERJA COPY PASTE
Kerja Sampingan
Kode Bank Indonesia
Latest Software Updates
Leave Rules
Lowongan kerja aman
Lowongan kerja copy paste
LOWONGAN KERJA ONLINE
LTC
MACP
Mails
MASTER BURUNG
Membuat Account PayPal
Menaikkan atau menurunkan berat badan dengan Herbalife
Menghasilkan Uang dari PTC Lokal Wisbux
Mobile Tips
National Pension System (NPS)
Network Trouble shooting
News
Obat Pemutih Gigi Membuat Gigi Putih Berseri
Pay Commission
Pension
Persmin
Pie Susu Bali Paling Enak dan Asli Yah Merek Kami...
PLI and RPLI
PointOfSale
Postal Informations
Postal Savings Schemes
Printer Trouble shooting
Printing Tips
Project Arrow
ptc terpercaya
Questions / Answers
Railway
Recovery Tips
Registry Tips
Registry Tools
Reimbursement
rental mobil di surabaya
RMS
Rulings
SanchayPost
Savings Scheme
SB Orders
SBCO
Security Guidelines
Security Tips
sewa mobil di surabaya
Software Tips
Softwares
SQL
Staffs and Welfare
Tanya - Jawab
Technology
TEMPLATE
Testimoni
Tips and Tricks
TN - தமிழ்நாடு
Tools
Training
Transfer / Postings
Trouble shooting
UnCategorized
Union News
Useful Softwares
Utilities
Verifikasi PayPal tanpa Credit Card
Virus Solutions
Websites
windows 7
Windows Server
Windows Tips
Windows Vista
wootekh biolo slimming capsule wsc biolo
world slimming capsule biolo