Jammu and Kashmir GK Question- JK General Knowledge

j&k Objective GK Question




  1. Who was the last ruling Maharaja of Jammu and Kashmir
    1. A. Hari Singh       Correct Answer
    2. B. Pratap Singh      
    3. C. Ranbir Singh      
    4. D. Gulab Singh      
  2.  

    The Wular Lake is located in which district
    1. A. Udhampur District     
    2. B. Baramulla District      
    3. C. Bandipora District        Correct Answer
    4. D. Kupwara District      
  3.  

    Which one is recognised as the state flower of J&K
    1. A. Rose     
    2. B. Lily      
    3. C. Lotus        Correct Answer
    4. D. Daisy      
  4.  

    In 1897, first railway line was built in Jammu and Kashmir to connect Jammu with which city
    1. A. Sialkot       Correct Answer
    2. B. Udhampur      
    3. C. Delhi      
    4. D. Rawalpindi      
  5.  

    Which city has the most population in J&K
    1. A. Udhampur     
    2. B. Jammu      
    3. C. Srinagar        Correct Answer
    4. D. Anantnag      
  6.  

    The Shalimar Bagh was built by
    1. A. Shah Jahan     
    2. B. Akbar      
    3. C. Babur      
    4. D. Jahangir        Correct Answer
  7.  

    Srinagar is located on the banks of the
    1. A. Chenab river     
    2. B. Jhelum river        Correct Answer
    3. C. Indus river      
    4. D. Lidder river      
  8.  

    Total number of districts in Jammu and Kashmir
    1. A. 22       Correct Answer
    2. B. 24      
    3. C. 28      
    4. D. 32      
  9.  

    Total number of national parks in Jammu and Kashmir
    1. A. 3     
    2. B. 4      
    3. C. 5        Correct Answer
    4. D. 7      
  10.  

    On which hill, the Vaishno Devi mandir is located
    1. A. Katra     
    2. B. Aru      
    3. C. Trikuta        Correct Answer
    4. D. Sonamarg      
  11.  

    The Shalimar Bagh was built in the year
    1. A. 1606     
    2. B. 1619        Correct Answer
    3. C. 1627      
    4. D. 1635      
  12.  

    Which one is the longest river in Jammu Kashmir
    1. A. Indus River     
    2. B. Jhelum River      
    3. C. Chenab River        Correct Answer
    4. D. Doda River      
  13.  

    The kargil war was fought in the year
    1. A. 1998     
    2. B. 1999        Correct Answer
    3. C. 2000      
    4. D. 2001      
  14.  

    Which one is the largest district in Jammu and Kashmir by areawise
    1. A. Leh       Correct Answer
    2. B. Kargil      
    3. C. Doda      
    4. D. Baramula      
  15.  

    The Hemis National Park is famous for
    1. A. Golden Eagle     
    2. B. Tiger      
    3. C. Wolf      
    4. D. Snow Leopard        Correct Answer
  16.  

    Which article of the Indian constitution give special state status to Jammu and Kashmir
    1. A. Article 120     
    2. B. Article 180      
    3. C. Article 260      
    4. D. Article 370        Correct Answer
  17.  

    Between which mountain ranges is Kashmir Valley located
    1. A. Himadri - Pir Pranjal       Correct Answer
    2. B. Shivalik - Himachal      
    3. C. Karakoram - Himachal      
    4. D. Himadri - Himachal      
  18.  

    Who is the first Chief Minister of Jammu and Kashmir
    1. A. Hari Singh     
    2. B. Syed Mir Qasim      
    3. C. Ghulam Mohammed Sadiq        Correct Answer
    4. D. Sheikh Abdullah      
  19.  

    Total number of Lok Sabha Constituency in Jammu and Kashmir is
    1. A. 4     
    2. B. 6        Correct Answer
    3. C. 8      
    4. D. 9      
  20.  

    Which of the following lakes of India is located in Jammu and Kashmir
    1. A. Phuljhar Lake     
    2. B. Koleru Lake      
    3. C. Anchar Lake        Correct Answer
    4. D. Hamirsar Lake      
  21.  

    Sheikh Abdullah died in the year
    1. A. 1978     
    2. B. 1982        Correct Answer
    3. C. 1985      
    4. D. 1989      
  22.  

    Which town in Jammu Kashmir is also known as Apple Town
    1. A. Sopore       Correct Answer
    2. B. Anantnag      
    3. C. Shupiyan      
    4. D. Jammu      
  23.  

    From which year the Constitution of Jammu and Kashmir implement
    1. A. 1956     
    2. B. 1962      
    3. C. 1963      
    4. D. 1965        Correct Answer

Important jQuery and Javascript Code for Project

JQuery and Javascript Code Snippet


$("#fee_exp").change(function(){
   if ($(this).val() == 'Y') {
     $("#check").removeClass('hide');
     $("#check1").addClass('required');
   }else{
     $("#check").addClass('hide');
     $("#check1").removeClass('required');
   }
});


          function submitform()
              {
                $('#registeration').find('form').submit();
                $('.clearFields').val('');
               }



$('#splitPayment input:radio').change(function() {
    if ($(this).val() === 'Y') {
       $('#accountDetail').removeClass('hide');
       $('#primary_account').addClass('required');
       $('#additional_account').addClass('required');

    } else if ($(this).val() === 'N') {
           $('#accountDetail').addClass('hide');
           $('#primary_account').removeClass('required');
    $('#additional_account').removeClass('required');
    $('#primary_account').val("");
    $('#additional_account').val("");
    }
 });



/*Input Field Validation */

 $(".nameclass").on('input', function(event) {
  var regexp = /[^a-zA-Z @]/g;
   if($(this).val().match(regexp)){
     $(this).val( $(this).val().replace(regexp,'') );
   }
 });

 $(".initials").on('input', function(event) {
  var regexp = /[^a-zA-Z .]/g;
   if($(this).val().match(regexp)){
     $(this).val( $(this).val().replace(regexp,'') );
   }
 });

 $(".address").on('input', function(event) {
  var regexp = /[^a-zA-Z0-9 /,]/g;
   if($(this).val().match(regexp)){
     $(this).val( $(this).val().replace(regexp,'') );
   }
 });

 $(".textonly").on('input', function(event) {
  var regexp = /[^a-zA-Z]/g;
   if($(this).val().match(regexp)){
     $(this).val( $(this).val().replace(regexp,'') );
   }
 });
 
 $(".textnumber").on('input', function(event) {
  var regexp = /[^a-zA-Z0-9]/g;
   if($(this).val().match(regexp)){
     $(this).val( $(this).val().replace(regexp,'') );
   }
 });
 
 $(".numberonly").on('input', function(event) {
  var regexp = /[^0-9]/g;
   if($(this).val().match(regexp)){
     $(this).val( $(this).val().replace(regexp,'') );
   }
 });

 $(".onlytextspace").on('input', function(event) {
   var regexp = /[^a-zA-Z\s]+$/g;  
   if($(this).val().match(regexp)){
     $(this).val( $(this).val().replace(regexp,'') );
   }
 }); 

 $(".onlydottextspace").on('input', function(event) {
     //var regexp = /^([\s\.]?[a-zA-Z0-9]+)+$/;
  var regexp = /[^,/0-9a-zA-Z\s\.]+$/g;  
   if($(this).val().match(regexp)){
     $(this).val( $(this).val().replace(regexp,'') );
   }
 });



$(document).ready(function(){
 
 $('#class_id').change(function(){
 var classId = $('#class_id').val();

 $.ajax({      
   url: base_url+base_path+"/get-subject-list",
   type: "post",
   data: { classId : classId },
   dataType: "json",
   
  success: function(data){
     $("#subject_id").empty();
     $("#subject_id").append('<option>Select Subject</option>');
     $.each(data,function(key,value){
     $("#subject_id").append('<option value="'+key+'">'+value+'</option>');
    });
   }
  });
 });
     
});





$('#edudist_name').click(function(){
    
   var edudistId = $('#edudist_name').val();  
   var edudist=[];
   
  $.ajax({      
    url: base_url+base_path+"/check-rev-school",
    type: "post",
    data: { edudistId : edudistId },
    dataType: "json",
    
   success: function(data){
      $("#camp_id").empty();
      $("#camp_id").append('<option>Select</option>');
      $.each(data,function(key,value){
      $("#camp_id").append('<option value="'+key+'">'+value+'</option>');
       edudist.push(key);
       });
        $("#edudist_name").append('<option value="'+edudist.join()+'"> ALL </option>');
     }
   });
 });



       $("#date1").datepicker({
            dateFormat: "dd-mm-yy",
            maxDate : 0, 
            onSelect: function (date) {
                var dt1 = $('#date1').datepicker('getDate');
                var dt2 = $('#date2').datepicker('getDate');
                
                $('#date2').datepicker('option', 'minDate', dt1);
            }
        });
        $('#date2').datepicker({
            dateFormat: "dd-mm-yy",
            maxDate : 0, 
            minDate: $('#date1').datepicker('getDate'),
            onClose: function () {
                var dt1 = $('#date1').datepicker('getDate');
                var dt2 = $('#date2').datepicker('getDate');
                //check to prevent a user from entering a date below date of dt1
                if (dt2 <= dt1) {
                    var minDate = $('#date2').datepicker('option', 'minDate');
                    $('#date2').datepicker('setDate', minDate);
                }
            }
          });      
 });

Our Feature Post

There is a tree between houses of A and B If the tree leans on As House

    There is a tree between houses of A and B. If the tree There is a tree between houses of A and B. If the tree leans on A’s House, the t...

Our Popular Post