Skip to main content

Posts

Showing posts from February, 2025

Basic interview questions or General Interview Questions

Preparing for an interview is key to making a great first impression. Here are some common questions you might encounter, along with some tips on how to answer them: About You & Your Background: "Tell me about yourself." (Focus on professional experience and skills relevant to the job. Keep it concise – about 2 minutes.) Don't just recite your resume. Highlight key accomplishments and career progression. Example: "I'm a [Your Profession] with [Number] years of experience in [Your Field]. My background includes [briefly mention 2-3 key areas of expertise]. In my previous role at [Previous Company], I was responsible for [1-2 impactful responsibilities]. I'm particularly interested in [Area of Interest] and I'm looking for a challenging role where I can contribute to [Company's Mission/Goals]." "Why are you interested in this position?" (Show you've researched the company and role, and explain how it fits your career goa...

Basic HTML Interview Questions

Here are some basic interview questions related to HTML that can help you prepare: What is HTML? HTML (HyperText Markup Language) is the standard language used to create and design web pages and web applications. What is the basic structure of an HTML document? Explain the roles of <!DOCTYPE html>, <html>, <head>, <title>, and <body> tags. Mention that the <head> contains meta-information (not displayed) and the <body> contains the visible content. What are HTML elements and tags? HTML elements are building blocks of HTML pages. Tags are used to mark the beginning and end of an HTML element, enclosed in angle brackets, such as <tagname> and </tagname>.   What is the difference between <div> and <span>? <div>: A block-level element used to group other elements for styling purposes or layout. <span>: An inline element used to group text or other inline elements for styling. What are the key HTML5 features?...

Dynamically adding option to the dropdown list instenly using text box | How to Show/Hide text box when select Other from dropdown list

JavaScript Code: $(document).on('click','.btcl', function(){     var dataString = 'Rule=comp_list';     $.ajax({         type: "POST",         url: "ajax.php",         data: dataString,         cache: false,         success: function(data){             $("#company_list").html(data);         }     }); }); $(document).on('change','#enq_company', function(e){        var t=e.target.type;     //var val = $('#enq_company option:selected').val();     var val = $(this).val();         if(val=="new" || t=="text") {         var dataString = 'val='+val+'&Rule=ins_comp';         ...

Using single jQuery Ajax function/Call to load child dropdown based on Parent dropdown selction instead of multiple functions

Using single jQuery Ajax function/Call to load child drop down based on Parent drop down selection instead of multiple functions. <script type="text/javascript"> $(document).ready( function() {         // All in On RNS Ajax Call     $('.rnscall').on('change', function(){                var val = $(this).find('option:selected').val();         var rnsid=this.id;         if(rnsid=="proj_city_id") {             var dataString = 'city_id='+val+'&drop=loc'; var rnsresult="#proj_loc_id";         } else if(rnsid=="proj_type") {             var dataString = 'type_id='+val+'&drop=subtype'; var rnsresult="#proj_subtype";         }         $.a...

Formula for EMI Calculation

This is the formula to caluculate: E = P×r×(1 + r)n/((1 + r)n - 1) E is EMI where P is Priniple Loan Amount r is rate of interest calualted in monthly basis it should be = Rate of Annual interest/12/100 if its 10% annual ,then its 10/12/100=0.00833 n is tenture in number of months Eg: For 100000 at 10% annual interest for a period of 12 months it comes  to 100000*0.00833*(1 + 0.00833)12/((1 + 0.00833)12 - 1) = 8792