BROADCAST ENGINEERING CONSULTANTS INDIA LIMITED 

Broadcast Engineering Consultants India Limited (BECIL)(A Government of India Enterprise under Ministry of Information & Broadcasting) (A Mini Ratna Company) Corporate Office: C-56/A-17, Sector-62, Noida-201307 
Phone: 0120-4177850, Fax: 0120-4177879
Website: www.becil.com

 Applications are invited for empanelment of Temporary staff purely on contract basis for deployment in various government offices in Delhi/NCR. 
1. Office Assistant

Qualification - Graduate (Any Discipline) from a recognized University Work Experience – Minimum 3 years in Government/PSU/Autonomous bodies in the field of administration Age – 21 to 45 years Mode of Selection Written Test 1) General Awareness, English Grammar and English Writing Skill Test 2) Computer Knowledge (Word, Excel & Power Point) 3) Candidates should qualify typing test of 35 wpm in English and/or 30 wpm in Hindi. Interaction/discussion.

Salary : Rs.21,000/-
No. of Requirement : 25

*The rates are subject to change as per Minimum Wages Act, 1948 in the NCT of Delhi. EPF, ESI and other Provisions of Law for contract employees are also applicable. Selection will be made as per prescribed norms and requirement of the job. Application forms may be obtained from BECIL’s Corporate Office: C-56, A/17, Sector-62, Noida-201307 or downloaded from www.becil.com

The duly filled in application form along with self-attested photocopies of educational/ experience certificates, two passport size photograph, Aadhar Card and non-refundable registration fee of Rs.300/- (Rupees Three Hundred Only) by cash or demand draft drawn in favor of BROADCAST ENGINEERING CONSULTANTS INDIA LIMITED payable at New Delhi may be submitted to Assistant General Manager (HR) in BECIL’s Corporate Office at BECIL Bhawan, C-56/A-17, Sector-62, Noida-201307 (U.P). The SC/ST/PH candidates are exempted from registration fee. 

Last date for submission of application forms is August 18, 2017

ADVERTISEMENT


ABOUT BECIL

Broadcast Engineering Consultants India Limited (BECIL) an ISO 9001:2015, ISO 27001:2013 and ISO/IEC 20000:2012 certified, Mini Ratna, Central Public Sector Enterprise of Government of India was established on 24th March 1995. BECIL provides project consultancy services and turnkey solutions encompassing the entire gamut of radio and television broadcast engineering viz; content production facilities, terrestrial transmission facilities, satellite and cable broadcasting facilities in India and abroad. It also provides associated services like building design and construction related to broadcasting, human resource related activities like training and providing man power. BECIL also undertakes supply of specialized communication, monitoring, security and surveillance systems to defense, police and para-military departments. BECIL has its head office in Delhi and corporate office in Noida. The regional office is in Bangalore.
Over the years, BECIL has consciously groomed and developed a team of in-house, versatile and dedicated engineers and also cultivated and harnessing a vast reservoir of professionals drawn from various fields of broadcasting industry which includes public and private broadcasters, defense and cable industry. Through this network of resourceful technical professionals, BECIL has established it pan India presence to serve the needs of the industry.
BECIL has a vast reservoir of experts and integrates the expertise of All India Radio (AIR) and Doordarshan (DD), the national broadcaster of India, creating one of the largest Radio Networks catering to nearly a billion people and the world's largest Terrestrial Television Network supplemented by Analogue and Digital satellite Broadcasting services reaching out to millions of TV homes in India and abroad.
BECIL works as consultancy agency, system integrator as well as a turnkey solution provider in the fields of Broadcast Engineering and Information & Communication Technology.

MISSION:

To play a pivotal role in Modernisation and Growth of Radio and Television Broadcasting through Terrestrial, Cable and Satellite Transmission in India and abroad, and achieve excellence.

VISION:

To facilitate the growth of Broadcasting in India and associated Asian region. To provide world class consultancy services and also undertakes turnkey jobs in the specialized fields of Broadcast Engineering and Information Technology.

like this, where you want to display ads. Many users may not like this widget because of manual works. So to get ride from that you can use this automatic affiliate ad display widget. Even now you can display any widget in the middle of Blog Post. This widget has several features, those are as follows: Display ads at the middle of the Blog Post. You don't have to manually put code. This will automatically search the place to display ads. You can display multiple ad units. Any widget like related post widget can be display at the middle of the Blog posts. You can easily remove the widget. Sounds great! I hope you are pretty excited to integrate this widget in your Blogger site. So let's proceed to the tutorial. Please take a backup of your Blogger template before proceed. After that go through the below steps-by-steps walk through. One of the widely accepted and effective strategy of increasing your revenue from adsense display ad is to experiment with ads placement in different positions of page. One such location is middle of the post, which may increase the chances of noticing your ads and user engagement.




There are two methods of adding display ads in middle of any post in WordPress site.
1.Adding Adsense Code using plugin
This method requires small coding but don’t be afraid as you can do it easily even if you don’t know anything about PHP or coding. There are two ways adding code to middle of your post, you can choose anyone of it –
a) By editing Single.php
  • Login to your WordPress dashboard
  • Goto Appearance (at left sidebar) -> Editor
  • Open single.php file (at right sidebar)
  • Replace < ?php the_content(); ?> with following code
&lt; ?php
$content
= apply_filters('the_content', $post-&gt;post_content);
$content
= explode (' ', $content);
$halfway_mark
= ceil(count($content) / 2);
$first_half_content
= implode(' ', array_slice($content, 0, $halfway_mark));
$second_half_content
= implode(' ', array_slice($content, $halfway_mark));
echo $first_half_content
.'...'; echo 'YOUR ADSENSE CODE OR OTHER ADDS CODE LINK HERE';
echo $second_half_content
;
?&gt;
  • Replace YOUR ADSENSE CODE OR OTHER ADDS CODE LINK HERE with your own Adsense or any ads code.
  • Save and check your blog post to see if it works.
b) By editing functions.php
  • Login to your WordPress dashboard
  • Goto Appearance (at left sidebar) -> Editor
  • Open functions.php file (at right sidebar)
  • Copy and paste following codes in functions.php
function inject_ad_text_after_n_chars($content) {
// only do this if post is longer than 1000 characters
$enable_length
= 1000;
// insert after the first after 500 characters
$after_character
= 500;
if (is_single() &amp;&amp; strlen($content) &gt; $enable_length) {
$before_content
= substr($content, 0, $after_character);
$after_content
= substr($content, $after_character);
$after_content
= explode('', $after_content);
$text
= '

'
;
array_splice
($after_content, 1, 0, $text);
$after_content
= implode('', $after_content);
return $before_content . $after_content;
}
else {
return $content;
}
}
add_filter
('the_content', 'inject_ad_text_after_n_chars');
  • After adding the above code replace with your own Adsense or any ads code.
  • Save and check your blog post to see if it works.
2.Adding Adsense code with the help of plugin
You can also add Adsense display ads by using free WordPress plugin. There are many ad manager plugins. You can try any one. Here are some that I found useful and easy to use.
If you liked this article, then feel free to share it with your friends on Facebookbecause at RedSome we believe, sharing is caring.

Is not simple as 123 you need basic knowledge of Editing blogger templates.  if you are ready to start here are the steps you need to follow step by step,  and at the end you will see that the AdSense ads you define will start showing automatically inside all of your blogger posts.
  • Visit blogger.com and click the blog you want to add AdSense code inside, On the left side You will see different types you need to go to a tab called ‘template. Once you clicked on that, you can see a short display showing your blog live now just beneath it click on the button that says edit HTML.
  • Now open Search tool by Pressing Ctrl + F and then Type  and search for tag code, You’ll find this code several times and you may confuse which one it is going to work, But remember it is always near to this tag “Then uses the post body as the schema.org description, for good G+/FB snippeting”
Now you need to replace the above code with below code.
  • Now you need to open this link in new tab and copy all code and paste this code on Notepad temporarily, open your Adsense Dashboard and choose which ad you want to display inside all blogger posts automatically and copy the ad code.
  •  Next, convert the AdSense ad code in using Ad Converter. (Parsing makes AdSense code XML accepting one.) Now open the notepad and replace the “Paste Parsed Adsense Code Here” text line with you converted AdSense ad code;
Now I have styled the widget using few lines of CSS code, so you might want to change it according to your blog design.
You can change the position of Adsense ad code by changing the value in Red color in above code. [ 0,s.length/2) ]
Final words.
like this, where you want to display ads. Many users may not like this widget because of manual works. So to get ride from that you can use this automatic affiliate ad display widget. Even now you can display any widget in the middle of Blog Post. This widget has several features, those are as follows: Display ads at the middle of the Blog Post. You don't have to manually put code. This will automatically search the place to display ads. You can display multiple ad units. Any widget like related post widget can be display at the middle of the Blog posts. You can easily remove the widget. Sounds great! I hope you are pretty excited to integrate this widget in your Blogger site. So let's proceed to the tutorial. Please take a backup of your Blogger template before proceed. After that go through the below steps-by-steps walk through. Using this method will not ensure you’ll see any earning spike in AdSense. Besides, it may increase the CTR (click through rate), but if you want more customization and flexibility to add Adsense codes inside your blogger post, you might want to shift to WordPress. Either way happy blogging and share you views in our new comment system.

<style>#topbar {height:25px;width:auto;background: #005094 url(‘http://lh3.ggpht.com/_beEpWOXwLJE/TIb57Lu4fwI/AAAAAAAABE0/q7niFVRbyNE/top-toolbar.jpg’);background-repeat:repeat-x;text-align:left;padding-top:4px;}#adsground {height:auto;margin:0 auto;width: 336px;background:#fff;border-bottom:2px #005094 solid;border-right:2px #005094 solid;border-left:2px #005094 solid;text-align:Center;padding:4px;} #headlineatas {opacity:1.0;height:auto;width:auto;position:fixed;top:63px;left:165px;border-bottom:1px #005094 solid;border-bottom:0px blue solid;color:#333;padding:0px;z-index:1001;font-size:12px;}</style><script type=”text/javascript”>function getValue(){document.getElementById(“headlineatas”).style.display = ‘none’;}</script><div id=”headlineatas”><div id=”topbar”><img align=”left” style=”padding-left:2px;” src=”http://icons.iconarchive.com/icons/deleket/folder/24/Mozilla-Thunderbird-icon.png” /><span style=”color:#fff;font-size:13px;font-weight:bold;text-shadow:black 0.1em 0.1em 0.1em”>Ads by Google</span><span style=”color:#fff;font-size:13px;font-weight:bold;text-shadow:black 0.1em 0.1em 0.1em;float:right;padding-top:3px;padding-right:10px”> <target=”_blank” onclick=”getValue()”><img src=”https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoduN9bKPUvmqlInnh2JQL3CFjPmTegO-VjiAo4tQ96h7nd_Zw2bij4GPyQ9ZMLW_sDh_W022VSKD1ZiHA8q7TjorDHE6fpO_j5P4aQVmyVCHv_c1HQnIS8TS7X0ATqt4KqF0uEWX7nTQ3/s1600/close.png” /></target=”_blank”></span></div><div id=”adsground”><h6><a href="http://www.mbgadget.com/2016/07/add-floating-pop-up-adsense-ads-widget.html">Get This Adsense Pop-up Window </a></h6><p align=”left”><h3></h3></p>Your Adsense Code<p>    <br/></p></div></div>



COPY THE ABOVE CODE AND PASTE IN YOUR WIDGET.





Add Floating, Pop-up Adsense ads widget in Blogger blog
Do you know, Google is going to banned you in the wake of indicating adsense promotions into a pop-up or skimming screen?

In the event that yes, then why you looked for it! Numerous new bloggers need to procure more by demonstrating adsense advertisements on a pop-up screen however after some time, they get banned. Before making any stride, you ought to view Google's Terms and Conditions which may helps you not to get banned by Adsense.


If you are still interested in showing ads in the pop-up or floating screen to maximize your earnings then, follow the below steps.


  • Go to Blogger Dashboard >> Layout.
  • In the sidebar or anywhere, click add a widget.
  •  Select HTML/JavaScript from the given list.
  • Add Below pop-up widget code there and save the Gadget.
Powered by Blogger.