Skip to main content

videos

1.Enna_Sona_-_Sonu_Kakkar Female_Version Cover OK JAANU Arijit Singh

Download Here

 

  2. Atif Aslam Pehli Dafa Song (Video) Ileana D’Cruz Latest Hindi Song 2017

Download Here  

 

3. Saibo_-_Cover_Version___Arjun_Kanungo_ft._Jonita_Gandhi_

__Karan_Sajnani___Shor_I

 Download here

 

4.Sandcastles_(Original)___Teri_Khair_Mangdi_

(Vidya_Vox_Mashup_Cover)_(ft._Devende

  Download here

 

5.Selena_Gomez_-_Same_Old_Love___Mere_Sapno_Ki_Rani_Remix_

(Vidya_Vox_Mashup_Cover)

Download here 

 

6.Tu_Ki_Jaane_(Full_Video)●Risky_Maan●_New_Punjabi

_Songs_2016●Latest_Punjabi_Songs.mp4

Download here 

 

7.Silent Tears_HD

Download here 

 

8.Zindagi_(Full_Video)___Akhil___Latest_

Punjabi_Song_2017___Speed_Records

Download here 

 

9.Teri_Kami_(Full_Song)___Akhil___Latest_Punjabi_

Song_2016___Speed_Records

Download here 


10.Driving_Slow___Badshah___Official_Music_Video_

__Panasonic_Mobile_MTV_Spoken_Word

Download here 

 

11.Rishi_Rich_Dil_Kya_Kare_(Did_I_Love_You_)

_ft._Dasu.mp4

 Download here

 

12.ANKHIYAN_(KOREAN_MIX)____DO_LAFZO_KI

_KAHANI___KANIKA_KAPOOR___RANDEEP_HUDDA_

Download here 


13.Looking For Love (Full Song) Zack Knight ft. Arijit Singh _ Heartless_HD.mp4

Download here


14.Maahi_Ve_Unplugged_Video_Song____T-Series_Acoustics___Neha_Kakkar⁠⁠⁠⁠___T-Series.mp4

Download here 

 

15.Diljit_Dosanjh_-_Do_You_Know.mp4

Download here 


16.Mile_Ho_Tum_-_Reprise_Version___Neha_Kakkar___Tony_Kakkar.mp4

Download here 

 

17.Raftaar_-_Panasonic_Mobile_MTV_Spoken_Word_presents

_Swag_Mera_Desi_feat_Manj_Mus.mp4

Download here 

 

18.Khushi_K_Pall_Kaha_Dhoondo.mp4

Download here 

 

19.Hothon_Se_Chhu_Lo_Tum_(The_Unwind_Mix)

_by_Mohammed_Irfan.mp4

 Download here

 

20.Chand_Si_Mehbooba_(cover)___Dream_Note

_and_Akshay_Agarwal____1080p.mp4

 Download here

Comments

Popular posts from this blog

What is Servet ?

A servlet is a java class that extends an application hosted on a web server. Handles the HTTP request-response process (for our purposes) Often thought of as an applet that runs on a server. Provides a component base architecture for web development, using the Java Platform The foundation for Java Server Pages (JSP). Alternative to CGI scripting and platform specific server side applications.

Compact Strings -  Java 9 Feature

Motivation The current implementation of the String class stores characters in a char array, using two bytes (sixteen bits) for each character. Data gathered from many different applications indicates that strings are a major component of heap usage and, moreover, that most String objects contain only Latin-1 characters. Such characters require only one byte of storage, hence half of the space in the internal char arrays of such String objects is going unused Description We propose to change the internal representation of the String class from a UTF-16 char array to a byte array plus an encoding-flag field. The new String class will store characters encoded either as ISO-8859-1/Latin-1 (one byte per character), or as UTF-16 (two bytes per character), based upon the contents of the string. The encoding flag will indicate which encoding is used. String-related classes such as AbstractStringBuilder, StringBuilder, and StringBuffer will be updated to use the same representation, as wi...

What is Applet ?

***What is an Applet? An Applet is a program that can be referenced by an HTML source code of a web page. It is dynamically downloaded from a web server to a browser and it is executed in the environment provided by the browser. Applet Viewer can also be used to execute  the applet. ***FirstApplet.java import java.applet.Applet; import java.awt.Graphics; /*<applet code=“FirstApplet” width=200 height=200> </applet>*/ public class FirstApplet extends Applet { public void paint(Graphics g) { g.drawString(“Hello World”,20,100); } } *** In the above example, The first two line is importing the java.applet and java.awt.Graphics package. The third line is the comment entry which is used only for applet viewer to execute the applet using the HTML source code. The next line declares the FirstApplet class which extends Applet class. Note that each applet created by user must extend the Applet class. There is a paint() method defined...