Prayer time |
Disclaimer: This website uses web services freely available on the Internet for Prayer, Weather and Currency sections, and the website will not bear any responsibilities for any errors.
'); $('.currency-inner .small-text1').html('1 '+ base_cr+' '+equal_text); $('.currency-inner .small-text2').html(cr_ratio + ' ' + cr); $('.currency-inner-inner select:first').val(base_cr); $('.currency-inner-inner select:last').val(cr); $('.currency-inner-inner input:first').val('1'); $('.currency-inner-inner input:last').val(cr_ratio); currencyFinish="Yes"; ShowLoadedDivs(); }, bindCurrencyList: function() { $('.currency-inner select').append('
'); for(var propt in currencyRates.rates){ $('.currency-inner select').append('
'); } }, exchange: function(input, inputUnit,outputUnit) { var input_base = 1,output_base=1; if (currencyRates.rates[inputUnit] !== undefined) input_base = currencyRates.rates[inputUnit]; else if(currencyRates.rates[inputUnit] == currencyRates.base) input_base = 1; else return null; if (currencyRates.rates[outputUnit] !== undefined) output_base = currencyRates.rates[outputUnit]; else if(currencyRates.rates[outputUnit] == currencyRates.base) output_base = 1; else return null; return (input * output_base / input_base).toFixed(2); } }; var weather_call = { getWeather: function() { var city=$('.city .city-label').attr('data-eng-name'); var me = this; if (xhr_weather != null) xhr_weather.abort(); // clear $('.weather span,.weather-temp,.weather-text,.weather-inner .today,#forecast').html(''); $('.weather-icon').attr('src', '').attr('alt', ''); $('.weather img').hide(); var searchtext = "select * from weather.forecast where woeid in (select woeid from geo.places(1) where text='" + city + "') and u='c'"; xhr_weather = $.getJSON("https://query.yahooapis.com/v1/public/yql?q=" + searchtext + "&format=json").success(function(data) { $('.weather-top .weather').hide(); if (data.query.results == null) return; // condition var condition = data.query.results.channel.item; $('.weather-temp').html(me.getWeatherDeg(condition.condition.temp)); $('.weather-icon').attr('src', me.getWeatherIcon(condition)).attr('alt', condition.condition.text); $( ".wi" ).addClass(setWeatherIcon(condition.code)); var weather_text = condition.condition.text; weather_text = weather_text.substr(0, 1).toUpperCase() + weather_text.substr(1); $('.weather-text').text(weather_text); $('.weather-inner .today').text(me.getWeatherDay(condition.condition.date.substr(0, 3))); // forecast var forecast = data.query.results.channel.item.forecast; var count = forecast.length > 3 ? 3 : forecast.length; for (var i = 0; i < count; i++) { $('#forecast').append('
'); } //$('.weather-top .weather').css('display','inline-block'); weatherFinish="Yes"; ShowLoadedDivs(); }).error(function(xhr) { $('.weather-top .weather').hide(); weatherFinish="Fail"; ShowLoadedDivs(); }); }, getWeatherIcon: function(condition) { if (condition.description != undefined) { var str = condition.description; if (str.indexOf('img src"') != -1) str = str.substr(str.indexOf('img src"') + 9); if (str.indexOf('"/-->') != -1) str = str.substr(0, str.indexOf('"/-->') + 5); if (str.indexOf('http:') == 0 && str.indexOf('.gif') == str.length - 5) return str; else { return 'http://l.yimg.com/a/i/us/we/52/' + condition.condition.code + '.gif'; } } return 'http://l.yimg.com/a/i/us/we/52/' + condition.code + '.gif'; }, getWeatherDeg: function(s) { return formatFloat(parseFloat(s)) + '°C'; //return formatFloat(parseFloat(s) * 1.8 + 32) + '°F'; }, getWeatherDay: function(s) { switch (s.toLowerCase()) { case 'mon': return ""; case 'tue': return ""; case 'wed': return ""; case 'thu': return ""; case 'fri': return ""; case 'sat': return ""; case 'sun': return ""; } return ""; } }; var prayer_call = { getPrayerTime:function() { var city=$('.city .city-label').attr('data-eng-name'); var me = this; if (xhr_prayer != null) xhr_prayer.abort(); $('.prayer-inner table').remove(); xhr_prayer = $.getJSON("//muslimsalat.com/"+city+"/daily.json?key=02ab4404c697c3c6afe00d4cb04b6ae7&jsoncallback=?").success(function(data) { $('.weather-top .time1').hide(); if (data.title == null || data.items == undefined) return; if (data.items.length != 0) { $('.prayer-inner').append('
Fajr | ' + data.items[0].fajr.replace("pm","pm").replace("am","am") + ' |
Shurooq | ' + data.items[0].shurooq.replace("pm","pm").replace("am","am") + ' |
Dhuhr | ' + data.items[0].dhuhr.replace("pm","pm").replace("am","am") + ' |
Asr | ' + data.items[0].asr.replace("pm","pm").replace("am","am") + ' |
Maghrib | ' + data.items[0].maghrib.replace("pm","pm").replace("am","am") + ' |
Isha | ' + data.items[0].isha.replace("pm","pm").replace("am","am") + ' |
'); if (data.items[0].dhuhr != undefined) { $('.weather-top .time1 >span').html(data.items[0].dhuhr.replace("pm","pm").replace("am","am") + '
Dhuhr'); //$('.weather-top .time1').css('display','inline-block'); prayTimeing=data; } prayTimeFinish="YES"; ShowLoadedDivs(); } }).error(function(xhr) { $('.weather-top .time1').hide(); prayTimeFinish="Fail"; ShowLoadedDivs(); }); } }; var timezone_call = { getTimezone: function() { if (xhr_timezone != null) xhr_timezone.abort(); var PlacesApiKey = "AIzaSyCgjwbhzWv1G5nbD3y9s51PJdfhulVaWrU"; xhr_timezone = $.getJSON('https://maps.googleapis.com/maps/api/timezone/json?location='+encodeURIComponent($('.city .city-label').attr('data-lat'))+','+encodeURIComponent($('.city .city-label').attr('data-lng'))+'×tamp='+(Math.round((new Date().getTime()) / 1000)).toString()+'&key='+PlacesApiKey).success(function(data) { if(data.rawOffset!=undefined) { var d = new Date(); d.setSeconds(d.getSeconds()+d.getTimezoneOffset()*60 + data.rawOffset); $('.time2 .time').text(formatAMPM(d, data.rawOffset, true)); var fulldate=d.toDateString(); $('.time2 .date').text(FormatDateNumber(d)); currentTime = (formatAMPM(d, data.rawOffset, false)); // $('.weather-top .time2').css('display','inline-block'); dateFinish="Yes"; ShowLoadedDivs(); } else { $('.weather-top .time2').hide(); dateFinish="Fail"; ShowLoadedDivs(); } }).error(function(xhr) { $('.weather-top .time2').hide(); dateFinish="Fail"; ShowLoadedDivs(); alert(xhr.responseJSON.message); }); } }; function FormatDateNumber(date) { var d = new Date(date), month = '' + (d.getMonth() + 1), day = '' + d.getDate(), year = d.getFullYear(); if (month.length < 2) month = '0' + month; if (day.length < 2) day = '0' + day; return [year, month, day].join('-'); } function FormateDate(s){ return s.replace("Mon","Mon").replace("Sun","Sun").replace("Tue","Tue").replace("Wed","Wed").replace("Thu","Thu").replace("Fri","Fri").replace("Sat","Sat") .replace("Jan","Jan") .replace("Feb","Feb") .replace("March","Mar") .replace("Apr","Apr") .replace("May","May") .replace("June","June") .replace("July","July") .replace("Aug","August") .replace("Sep","Sep") .replace("Oct","Oct") .replace("Nov","Nov") .replace("Dec","Dec"); } var SetupCurrencyAndCities = $.ajax({ url: 'https://openexchangerates.org/api/latest.json?app_id=4184ae93cb7a47f489edb83054997069&base=QAR', success: function (result) { base_cr =result.base; currencyRates=result; currency_call.bindCurrencyList(); currencyFinish="YES"; ShowLoadedDivs(); }, error: function(xhr, status, error) { $('.weather-wrapper').hide(); $('.row.country-module').css("margin-top","0"); currencyFinish="Fail"; ShowLoadedDivs(); } }); $(function () { cities = [{"Title":"New York","EnglishName":"New York","Currency":"USD","CurrencyCode":"USD","Latitude":"40.705311","Longitude":"-74.258188"},{"Title":"Doha","EnglishName":"Doha","Currency":"QAR","CurrencyCode":"Qar","Latitude":"25.3028404","Longitude":"51.5274827"}]; for (var i = 0; i < cities.length; i++) { $('.city-list').append('
'+cities[i].Title+'
'); } SetupCurrencyAndCities.done(SetUpCities); }); function ShowLoadedDivs() { if (currencyFinish == "NO" || weatherFinish == "NO" || prayTimeFinish == "NO" || dateFinish == "No") return; ShowNextPrayTime(); if (currencyFinish != "NO") $('#currency-div').show("slow"); if (weatherFinish != "NO") $('#weather-div').show("slow"); if (prayTimeFinish != "NO") $('#time-div').show("slow"); if (dateFinish != "NO") $('#time2-div').show("slow"); currencyFinish="NO"; weatherFinish="NO"; prayTimeFinish="NO"; dateFinish="NO"; } function ShowNextPrayTime() { var nextPrayTime, nextPrayName; if(prayTimeing.items[0].fajr == undefined ||prayTimeing.items[0].dhuhr == undefined ||prayTimeing.items[0].asr == undefined ||prayTimeing.items[0].maghrib == undefined ||prayTimeing.items[0].isha == undefined ||currentTime == undefined) return; currentTime=ConvertTo24(currentTime); if (ConvertTo24(prayTimeing.items[0].fajr) > currentTime) { console.log("fajr") nextPrayTime=prayTimeing.items[0].fajr; nextPrayName="Fajr"; } else if (ConvertTo24(prayTimeing.items[0].dhuhr) > currentTime) { console.log("dhuhr") nextPrayTime=prayTimeing.items[0].dhuhr; nextPrayName="Dhuhr"; } else if (ConvertTo24(prayTimeing.items[0].asr) > currentTime) { console.log("asr"); nextPrayTime=prayTimeing.items[0].asr; nextPrayName="Asr"; } else if (ConvertTo24(prayTimeing.items[0].maghrib) > currentTime) { console.log("maghrib") nextPrayTime=prayTimeing.items[0].maghrib; nextPrayName="Maghrib"; } else if (ConvertTo24(prayTimeing.items[0].isha) > currentTime) { console.log("isha") nextPrayTime=prayTimeing.items[0].isha; nextPrayName="Isha"; } else { console.log("fajr") nextPrayTime=prayTimeing.items[0].fajr; nextPrayName="Fajr"; } $('.weather-top .time1 >span').html(nextPrayTime.replace("pm","pm").replace("am","am") + '
'+nextPrayName+''); } function ConvertTo24(time) { var hours = Number(time.match(/^(\d+)/)[1]); var minutes = Number(time.match(/:(\d+)/)[1]); var AMPM = time.match(/\s(.*)$/)[1]; if ((AMPM == "pm" || AMPM == "م") && hours < 12) hours = hours + 12; if ((AMPM == "am" || AMPM == "ص") && hours == 12) hours = hours - 12; var sHours = hours.toString(); var sMinutes = minutes.toString(); if (hours < 10) sHours = "0" + sHours; if (minutes < 10) sMinutes = "0" + sMinutes; return sHours + ":" + sMinutes; } function SetUpCities() { if(cities.length>0) { $('.city-list div:eq(0)').trigger('click'); } } $('.city .city-label').click(function(e) { if($('.city-list > div').length!=0) $('.city-list').toggle(); }); $(document).on('click','.city-list div',function() { $(this).parent().hide(); $('#currency-div').hide(); $('#weather-div').hide(); $('#time-div').hide(); $('#time2-div').hide(); if (dateFinish != "NO") var current_city = $('.city .city-label').attr('data-eng-name'); if(current_city==$(this).attr('data-eng-name')) return; $(this).closest('.city').find('.city-label').text($(this).text()) .attr('data-eng-name',$(this).attr('data-eng-name')) .attr('data-currency',$(this).attr('data-currency')) .attr('data-currency-code',$(this).attr('data-currency-code')) .attr('data-lat',$(this).attr('data-lat')) .attr('data-lng',$(this).attr('data-lng')); CitiesAsDDL(); currency_call.setCurrency(); timezone_call.getTimezone(); weather_call.getWeather(); prayer_call.getPrayerTime(); }); function CitiesAsDDL() { $('.city-list').html(''); for (var i = 0; i < cities.length; i++) { if($('.city-label').attr('data-eng-name') == cities[i].EnglishName || $('.city-label').text() == cities[i].EnglishName || $('.city-list div').text() == cities[i].EnglishName) continue; $('.city-list').append('
'+cities[i].Title+'
'); } } $(document).mouseup(function (e){ var container = $('.city-list,.city'); if (!container.is(e.target)&& container.has(e.target).length === 0) $('.city-list').hide(); }); $('.weather-expand').click(function () { if ($('.weather-bottom').css('display') == 'none') $('.weather-bottom').slideDown(); else $('.weather-bottom').slideUp(); }); // prevent non-numeric char $('.currency-inner-inner input').keypress(function(e) { if (e.which < 48 || e.which > 57) e.preventDefault(); var another = $('.currency-inner-inner input').not($(this)); var r = currency_call.exchange($(this).val(),$(this).next().val(),another.next().val()); if(r!=null) another.text(r); else another.text('0'); }); // excahnge currency $('.currency-inner-inner input').keyup(function() { var another = $('.currency-inner-inner input').not($(this)); var r = currency_call.exchange($(this).val(),$(this).next().val(),another.next().val()); if(r!=null) another.val(r); else another.val('0'); }); $('.currency-inner-inner select').change(function() { var another = $('.currency-inner-inner select').not($(this)).prev(); var r = currency_call.exchange($(this).prev().val(), $(this).val(), another.next().val()); if (r != null) another.val(r); else another.val('0'); }); function formatFloat(s) { s = parseFloat(s).toFixed(2); if((s*100)%10==0) s = s.substr(0, s.length - 1); if((s*10)%10==0) s = s.substr(0, s.length - 1); if(s.substr(s.length - 1)=='.') s = s.substr(0, s.length - 1); return s; } function formatAMPM(date, offset, timeOnly) { var hours = date.getHours(); var minutes = date.getMinutes(); var ampm = hours >= 12 ? "pm" : "am"; hours = hours % 12; hours = hours ? hours : 12; // the hour '0' should be '12' minutes = minutes < 10 ? '0' + minutes : minutes; offset = ((offset < 0 ? '-' : '+') + // Note the reversed sign! pad(parseInt(Math.abs(offset / 3600)), 2) + pad(Math.abs(offset % 3600), 2)); while (offset.substr(offset.length -1) == "0") { offset= offset.slice(0,-1); } if (offset == "+0" || offset == "-0") { offset = ''; } else { if (offset.substr(offset.length -2) == "00") { offset= offset.slice(0,-2); } offset = ' (' + offset + ')'; } var strTime = timeOnly? (hours + ':' + minutes + ' ' + ampm + offset): (hours + ':' + minutes + ' ' + ampm); return strTime; } function pad(number, length) { return number; var str = "" + number; while (str.length < length) { str = '0' + str; } return str; } function setWeatherIcon(condid) { switch(condid) { case '0': var icon = 'wi-tornado'; break; case '1': var icon = 'wi-storm-showers'; break; case '2': var icon = 'wi-tornado'; break; case '3': var icon = 'wi-thunderstorm'; break; case '4': var icon = 'wi-thunderstorm'; break; case '5': var icon = 'wi-snow'; break; case '6': var icon = 'wi-rain-mix'; break; case '7': var icon = 'wi-rain-mix'; break; case '8': var icon = 'wi-sprinkle'; break; case '9': var icon = 'wi-sprinkle'; break; case '10': var icon = 'wi-hail'; break; case '11': var icon = 'wi-showers'; break; case '12': var icon = 'wi-showers'; break; case '13': var icon = 'wi-snow'; break; case '14': var icon = 'wi-storm-showers'; break; case '15': var icon = 'wi-snow'; break; case '16': var icon = 'wi-snow'; break; case '17': var icon = 'wi-hail'; break; case '18': var icon = 'wi-hail'; break; case '19': var icon = 'wi-cloudy-gusts'; break; case '20': var icon = 'wi-fog'; break; case '21': var icon = 'wi-fog'; break; case '22': var icon = 'wi-fog'; break; case '23': var icon = 'wi-cloudy-gusts'; break; case '24': var icon = 'wi-cloudy-windy'; break; case '25': var icon = 'wi-thermometer'; break; case '26': var icon = 'wi-cloudy'; break; case '27': var icon = 'wi-night-cloudy'; break; case '28': var icon = 'wi-day-cloudy'; break; case '29': var icon = 'wi-night-cloudy'; break; case '30': var icon = 'wi-day-cloudy'; break; case '31': var icon = 'wi-night-clear'; break; case '32': var icon = 'wi-day-sunny'; break; case '33': var icon = 'wi-night-clear'; break; case '34': var icon = 'wi-day-sunny-overcast'; break; case '35': var icon = 'wi-hail'; break; case '36': var icon = 'wi-day-sunny'; break; case '37': var icon = 'wi-thunderstorm'; break; case '38': var icon = 'wi-thunderstorm'; break; case '39': var icon = 'wi-thunderstorm'; break; case '40': var icon = 'wi-storm-showers'; break; case '41': var icon = 'wi-snow'; break; case '42': var icon = 'wi-snow'; break; case '43': var icon = 'wi-snow'; break; case '44': var icon = 'wi-cloudy'; break; case '45': var icon = 'wi-lightning'; break; case '46': var icon = 'wi-snow'; break; case '47': var icon = 'wi-thunderstorm'; break; case '3200': var icon = 'wi-cloud'; break; default: var icon = 'wi-cloud'; break; } return icon; }
Doha, September 20 (QNA) In confirmation of the active presence of the State of Qatar at the highest level in international forums and its contribution to the discussion of international issues and finding solutions to them, and the State of Qatar's full support for the United Nations and its lofty goals and noble message, His Highness Sheikh Tamim bin Hamad Al Thani will deliver Later in the day, the Emir, may God protect him, delivered a comprehensive speech at the opening session of the 77th session of the United Nations General Assembly.
Doha, September 27 (QNA) The State of Qatar and the United States of America signed today the joint declaration on the exchange of information related to the FIFA World Cup Qatar 2022.
Doha, September 26 (QNA) Qatar Islamic Bank (QIB) won the Excellence Award in Direct Payment Processing for the year 2021 from Citibank, an annual award given to partner banks, the best in their class, in recognition of their success in implementing commercial and financial banking payments in US dollars. .
Doha, September 25 (QNA) Mr. Willie Walsh, Director-General of the International Air Transport Association (IATA), confirmed that Hamad International Airport is capable of accommodating visitors to the FIFA World Cup Qatar 2022 and providing them with an outstanding service thanks to its modern and advanced equipment and mechanisms that allow complete smooth running. In the influx of fans from all over the world.
New York, September 25 (QNA) - FIFA President Gianni Infantino welcomed football fans from around the world to Qatar to attend the FIFA World Cup Qatar 2022 which will be held from Nov. 20 to Dec. 18.
New York, September 23 (QNA) The State of Qatar participated in the annual ministerial meeting of the least developed countries, on the sidelines of the 77th session of the United Nations General Assembly in New York. The State of Qatar was represented at the meeting by HE Sultan bin Saad Al Muraikhi, Minister of State for Foreign Affairs.
Recent Events
- Citizen Services
- Visas
- Attestation
- Foreigners in Qatar
- Issuance/ Renewing of Passports
- Issuance of passage permits to return to Qatar
- Issuance of passage permits for newly- born babies.
- Power of Attorneys
- Issuance of “to whom it may concern” certificate.
- Transport of dead body.
- Tourist Visa upon arrival
- Official Visa service
- Attestation of commercial documents
- Civil documents
- Personal Documents
- Judicial Documents
- Educational documents
- Medical documents
- Other documents
- Issuance of “Good conduct” Certificate.
FAQs
How do I contact the embassy in Qatar? ›
- Address. EP 31 A, Chandragupta Marg Chanakyapuri. 110021. New Delhi.
- Phone. +91-11-26118787. +91-11-26117988.
- Fax. +91-11-26886080.
- Email. newdelhi@mofa.gov.qa.
A consulate is the office of a consul. A type of diplomatic mission, it is usually subordinate to the state's main representation in the capital of that foreign country (host state), usually an embassy (or, only between two Commonwealth countries, a high commission).
Who is the current ambassador to Qatar? ›Dana Shell Smith was confirmed by the Senate as the U.S. Ambassador to Qatar on July 10, 2014. Previously, she served as Principal Deputy Assistant Secretary of Public Affairs from 2011 to 2014 and as Deputy Assistant Secretary for International Media.
How do I contact the New York embassy? ›Emergency Contact Details
If you are in need of emergency assistance, please contact the Consulate at +1 212 230 2480 or +1 212 319 2555 and leave a message on the emergency line.
For any questions related to the nonimmigrant visas, please contact the call center at +974-4423-1248 or email support-Qatar@ustraveldocs.com. The call center is open from 7 a.m. to 7 p.m. 7 days a week. Inquiries should contain full contact information from the sender.
How do I speak to someone at the US Embassy? ›Contact the nearest U.S. embassy or consulate, or call these numbers in the United States: From the U.S. & Canada - 1-888-407-4747. From Overseas - +1 202-501-4444.
What can a consulate do for you? ›Consulates provide passport, birth registration and many others services for visiting or resident American citizens in a country. They also have consular sections which issue visas for foreign citizens to visit, study and work in the United States.
Can a consulate issue visa? ›Most U.S. visa applicants can get their visa from any U.S. consulate or embassy, but there are a few problems one might face. By Tiffney Johnson, J.D. As a broad rule, someone is allowed to apply for a nonimmigrant visa, such as a tourist, student, or other temporary visa, at any visa-issuing U.S. consulate or embassy.
Who is in charge of a consulate? ›People who work in any sort of consulates are called consular officers. The person in charge is called a consul, or consul general.
Is certificate attestation mandatory for Qatar visa? ›The Government of Qatar requires all educational/Personal certificates, professional or academic, issued from India to be attested by the Indian Embassy/Consulate in Qatar for further attestation by the Ministry of Foreign Affairs of Qatar Government before grant of Qatar Visa.
Who is ambassador of Doha Qatar? ›
The embassy is the seat of political exchange, so it is usually located in the capital of the host country. Consulates are located in other major cities — financial capitals, tourist areas or large cities with healthy job markets.
What is the meaning of consulate general? ›A consul general is an official who heads a consulate general and is a consul of the highest rank serving at a particular location. A consul general may also be responsible for consular districts which contain other, subordinate consular offices within a country.
How many embassies are in New York City? ›Nine diplomatic missions in New York City listed below are also formally accredited as each country's official embassy to the United States. There are 116 missions in the city.
Can US citizens travel to Qatar without visa? ›Do I Need a Visa for Qatar? A visa is required for US citizens to travel to Qatar. US citizens must also hold a valid passport, and it is advisable that the passport have a minimum of six months remaining validity after the date the traveler plans to depart Qatar.
What are the possible questions in U.S. visa interview? ›- What is the purpose of your visit to the US? ...
- Have you been to the US before? ...
- Do you have relatives or friends currently in the US? ...
- Details on your friends / relatives in the US. ...
- Where will you be residing in the United States?
- visit the MoI website.
- select 'Visa Services'
- select 'Visa Inquiry & Printing'
- you can choose to check using your visa number or passport number.
- select your nationality and input the verification code.
- click on 'Submit', and you will be able to check the status of your visa.
After your submission, the U.S. Embassy, or Consulate will respond to your request via email within 1-2 business days.
How can I get help from U.S. Embassy? ›If you are overseas and in need of emergency assistance contact the nearest U.S. embassy or consulate. If you are concerned about a loved one overseas, please call: From the U.S. & Canada - 1-888-407-4747. From Overseas - +1 202-501-4444.
Can you just walk into an embassy? ›Yes, all non-emergency services require an appointment.
What are two things the embassy consulate are not permitted to do? ›
Cash checks. Locate or provide information on U.S. citizens without their permission. Provide information on schools or businesses in the U.S. or Thailand. Renew or replace driver's licenses.
Can an embassy protect you? ›In extreme or exceptional circumstances, U.S. embassies and consulates can offer alternative forms of protection, including (in most countries) temporary refuge, a referral to the U.S. Refugee Admissions Program, or a request for parole to the U.S. Department of Homeland Security.
What is the difference between a passport and a visa? ›The main difference between a visa and a passport is that a visa is an endorsement placed within a passport that grants the holder official permission to enter, leave or stay in a country for a specified time period. The most common visa types are tourist, student, work and transit visas.
What will you do if your visa is rejected answer? ›After being found ineligible for a visa, you may reapply in the future. If you reapply for a visa after being found ineligible, with the exception of 221(g) refusals, you must submit a new visa application and pay the visa application fee again.
How long is consular processing taking? ›Consular Processing takes between 5 to 13 months on average. Once the Consular Processing application is approved, you enter the United States as a permanent resident.
How long does it take to get a visa interview? ›On average, waiting times for an appointment are around two to three weeks – under normal conditions.
How do you address a consulate general in a letter? ›Addressing a letter to a consul general is simple. You just use the person's normal prefix for the person's name: Mr., Mrs., Ms., Dr., etc. When addressing a letter you should write "Mr. John Smith." In the following line, write "Consul General." Then, begin a new line to list the street address.
Who are consular agents? ›noun. a consular officer of the lowest rank, often a designated foreign national, stationed at a place where no full consular service is established.
What do you call a consul general? ›Dear Consul-General. 'Consul-General' or 'Sir' or 'Mrs/Ms' Honorary Consuls-General.
How many days will take for certificate attestation in Qatar? ›Required time to complete Qatar certificate attestation
Though in general, it takes about 20-30 working days and sometimes more. So be patient and you will get your documents attested successfully.
What are the documents required for Qatar attestation? ›
- Original Degree/ Certificate with HRD. ( Xerox Copies not allowed)
- Final Year Original Marks Sheet.
- Passport Copy. ( First, Last & Visa pages)
Those wishing to enter the State of Qatar have to obtain an entry visa before booking the flight. The visa must be stamped (by stickers system) in the passport before booking the flight.
Does Qatar have an embassy in the US? ›The embassy of Qatar in Washington, D.C. is located at 2555 M Street, NW and can be contacted by telephone on (202) 274 1600 and (202) 274 1603 as well as by email info.dc@mofa.gov.qa and washington@mofa.gov.qa.
How much is passport renewal in Qatar? ›USD | QAR | |
---|---|---|
Adult Passport Renewal DS-82 | $130 | 475 |
Passport Adult Card | $30 | 110 |
Passport Minor Card | $15 | 55 |
Consular Report of Birth Abroad | $100 | 365 |
Click General Services. From General Services, choose “Inquire Travel Ban.” From here, there is a page that contains a circular of travel bans. From here, you will check to see if your ID number is in that list. If this is not the case, then you have no travel ban.
How much is monthly salary in Qatar? ›The gross salary range for people working in Qatar is typically from 5,296.00 QAR (minimum salary) to 17,707.00 QAR (highest average, actual maximum salary is higher). This is the total monthly salary including bonuses. Salaries can vary drastically among different job categories.
How much do Qatar workers make? ›17 of 2020 sets the minimum wage in Qatar for all private-sector workers, including domestic workers, at QAR 1,000 per month as a basic wage, as well as QAR 500 per month allocated by the employer for accommodation expenses and QAR 300 per month for food, unless the employer already provides adequate food or ...
How much is house maid salary in Qatar? ›The average base salary is around QR750 a month, but monthly salaries of live-maids can vary from QR900 to QR2500 a month, apart from a flight ticket home every two years. Hiring a part-time maid can cost QR35 to QR45 an hour, apart from transport costs.
How many consulates are in the US? ›There are about 168 Foreign Embassies and 731 Consulates placed in the territory of United States. United States itself in total counts near 163 Embassies and 93 Consulates spread all over the world.
Why do people go to the embassy? ›Embassy: Embassies are locations in foreign countries where diplomats are based. They help citizens seeking to communicate with their home country and local nationals who wish to travel to the country the embassy represents. Consulate: Consulates are branch offices of an embassy.
What is a US Consular Agency? ›
The Bureau of Consular Affairs provides passport services to U.S. citizens, issues Visas to enter the U.S., manages the Diversity Visa Lottery, and provides services to U.S. citizens abroad.
What do you call the head of a consulate? ›Officers performing consular duties are known as consuls or, if more junior, vice consuls. The chief of the consulate is known as the consul.
What is the difference between an ambassador and a consul? ›An ambassador is a direct representative of a head of state to another country, which is why each country only has one. A consul is a representative of a government to another, and there can be many of these per country.
What are the benefits of being an honorary consul? ›Honorary consuls receive only an expense allowance for the work they do. Most honorary consuls hold the position in addition to their regular job. They carry out tasks on the basis of a volunteer agreement rather than an employment contract. Honorary consuls are appointed for a period of five years or less.
What consulates are in New York City? ›- Albanian Consulate. 320 E 79th Street. ...
- Antigua Dept-Tourism and Trade. 610 5th Avenue, #311. ...
- Consulate General of Argentina. 12 W 56th Street. ...
- Consulate of the Bahamas. 231 E 46th Street. ...
- Consulate General of Bangladesh. ...
- Consulate General of Brazil. ...
- British Consulate. ...
- Bulgarian Consulate General.
Getting Help in an Emergency
What can you do to get help in an emergency? Contact the nearest U.S. embassy or consulate, or call these numbers in the United States: From the U.S. & Canada - 1-888-407-4747. From Overseas - +1 202-501-4444.
The Embassy of the United States of America in Baghdad is the diplomatic mission of the United States of America in the Republic of Iraq. Ambassador Alina Romanowski is currently the Chief of Mission. At 104 acres (42 ha), it is the largest embassy in the world; it is nearly as large as Vatican City.
Does Qatar have a US embassy? ›The Department of State Celebrates the Groundbreaking of the New U.S. Embassy in Doha, Qatar. Highlighting the deepening ties of friendship between the United States and Qatar, Deputy Secretary of State for Management and Resources Brian P.
Is there a US embassy in Doha? ›Homepage - U.S. Embassy in Qatar.
How can I get business visa in Qatar? ›- Visit the official website of the Qatar Embassy online.
- Fill out the Qatar business visa application form.
- Attach scanned copies of the required documents as per the type.
- Submit the documents along with the application form online.
- Pay the needed visa fee for the processing.
Is certificate attestation mandatory for Qatar visa? ›
The Government of Qatar requires all educational/Personal certificates, professional or academic, issued from India to be attested by the Indian Embassy/Consulate in Qatar for further attestation by the Ministry of Foreign Affairs of Qatar Government before grant of Qatar Visa.
What is the process of certificate attestation? ›Attestation in the home country – A document is then attested to give it an international standing. The attestation of certificate is taken to the relevant ministry of foreign affairs of the applicant's country where the document originated. The ministry attests the documents by cross-checking the details of a notary.
How can I get certificate attestation in Qatar? ›You may submit a request to the Department of Consular Affairs at the Ministry of Foreign Affairs (MOFA) to authenticate your educational documents. This service aims at legalizing educational documents to be used abroad and inside the State of Qatar.
Can US citizens travel to Qatar without visa? ›Do I Need a Visa for Qatar? A visa is required for US citizens to travel to Qatar. US citizens must also hold a valid passport, and it is advisable that the passport have a minimum of six months remaining validity after the date the traveler plans to depart Qatar.
What are the possible questions in U.S. visa interview? ›- What is the purpose of your visit to the US? ...
- Have you been to the US before? ...
- Do you have relatives or friends currently in the US? ...
- Details on your friends / relatives in the US. ...
- Where will you be residing in the United States?
For the most up to date guidance, please see the Qatar Ministry of Health website. Tourist visas: When traveling on a U.S. tourist passport, travelers may obtain a free visa upon arrival, if they have six-months validity in their passport and a return or onward ticket.
Is US Immigration done in Doha? ›No you cannot. Immigration can only be done after landing in USA. In Abu Dhabi airports these service is available,i heard that Qatar airways will provide that. Not yet, Qatar may provide as flights and frequency to USA are increasing but not sure when.
Is Qatar visa available now? ›Being 'the most open country in the Middle East', Qatar allows citizens from over 95 countries to obtain a visa waiver on arrival in the country. Passengers from eligible countries can now apply for a Qatar visa on arrival visa hassle-free by simply going through some procedures and requirements.
How much bank balance is required for U.S. tourist visa? ›The amount of bank balance you should have for applying to the US tourist visa depends on the duration. If it is a 15-day trip, you must have $ 5,000-10,000 in your bank. Is travel insurance compulsory for the US travel visa? No, travel insurance is not compulsory for the US travel visa.
How much is Qatar visa fee? ›This single-entry visa, which can be obtained for a fee of QAR 100, payable by Visa or Mastercard, is valid for 30 days and may be renewed for an additional three months.
How long does Qatar visa take to process? ›
HOW LONG DOES IT TAKE TO GET A QATAR VISA? The process for a Qatar visa application usually takes from four to 15 working days. Unforeseen circumstances may affect the processing time so be sure to apply well in advance.
How much is Qatar work visa fee? ›For Indians, the Qatar Work Visa costs about 19,500 (INR). This includes the fee for both the Work Visa and the Residence Permit, which you will need to work in Qatar. The costs may be subject to change depending on exchange rates and where you apply for your Work Visa.