Posts

Showing posts from June, 2017

HEADOUTS HIRING UNDER GRADUATE STUDENTS AS CREATIVE – INTERNS AT BANGALORE

Company Name :  Headout Company Website :   https://www.headout.com Stipend :  ₹ 8,000 – ₹ 10,000 per month Minimum Duration :  2 months Eligibility :  UG Students Why Headout? Headout is changing the way people explore cities around the world and have fun. We are building a seamless platform that enables everyone to discover mesmerising experiences and have fun in seconds. Our content plays a critical role in helping our users visualize the experience even before they make a reservation. The Role : + Identify great images for products across the app + Work with the Creatives team to ensure images across all channels are on point + Post-process images effectively and create appealing images to enhance the brand across channels + Assist cross-functional teams to meet their image requirements using various resources + Create a database and document all visual assets across the app and multiple channels + Design creative posts for our Social Media usi...

Oracle Developer

Skill : Oracle PL/SQL (Forms or Reports) Experience : 1 to 4 yrs Job Location: Trivandrum Company: Allianz Cornhill JD: Oracle PL/SQL Developer.  Experience in Forms or Reports for 1 year is must.  Send your CV with details mentioned below. Current CTC:  Expected CTC: Notice period: Reason for change: DOB: Thanks & Regards Veena Ashrit Recruitment - Recruitment Ph: 9949807739  Email id  -  veena@qualibrisk.com Street No.13, Himayat Nagar Hyderabad - 500029

Pakistani reporter died live coverage

Image
Islamabad Nobody knows where death, and where to knock. After watching this video, you will also say that death is not certain for anyone. What happened in the live show with Pakistani women reporter will be seen by your hair Your mouth will be open A video on social media is becoming viral, and you will be surprised. In this video, a female reporter of a private channel of Pakistan is doing live coverage. But whatever happened the next moment will nullify you. In the live show, the female reporter was on the crane, PTI was covering Jalsa, which was going on in Lahore. Pakistan Tehreek-e-Insaf (PTI) Pakistan’s Athletes rally was going on, which he was covering. While covering the rally, he was giving live information to the anchor sitting in the studio, that was then he became numb. His mouth closed, but his eyes were open and he was constantly looking at the camera. Suddenly talking, the camera rolled off the crane and went down in the crowd. Everyone surprised by their ...

Core Java Basics

1. static variable void fun(){ static int m = 22; //wrond System.out.println(); } static variable cannot be declared bcz it is class level and jvm do not allow to keep multiple copy of variable whic is being used by other mehtods. - Static variable can be used with object or without object. - Static variable can used within non-static mehtod as well as in static method. 2. Constructor - If any method have same name as class have with return type , then it will not treated as constructor of class. - constructor do not return anything. - If class have private constructor and no other public constructor, then that class cannot be instantiate. 3. Inner Class - Inner used when multiple class used by single class. - Used where many event occur in single window. 4 . Static class class A{ static class B{ } } - private access MODIFIER is not ASSOCIETED WITH CLASS - instances of this class cannot be created. - Static c...