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

Panels in AWT

Panels: import java.applet.*; import java.awt.*; /*<applet code="PanelDemo" width=300 height=300></applet>*/ public class PanelDemo extends Applet { public void  init() { setLayout(new BorderLayout()); Panel pn=new Panel(); Button b1=new Button("Button 1"); pn.add(b1); Button b2=new Button("Button 2"); pn.add(b2); add(pn,"North"); Panel pe=new Panel(); Button b3=new Button("Button 3"); pe.add(b3); add(pe,"East"); Panel pw=new Panel(); Button b4=new Button("Button 4"); pw.add(b4); add(pw,"West"); Panel ps=new Panel(); Button b5=new Button("Button 5"); ps.add(b5); Button b6=new Button("Button 6"); ps.add(b6); add(ps,"South"); } }

56 to 60 Java Questions

56. What is the purpose of apache tomcat? Apache server is a standalone server that is used to test servlets and create JSP pages. It is free and open source that is integrated in the Apache web server. It is fast, reliable server to configure the applications but it is hard to install. It is a servlet container that includes tools to configure and manage the server to run the applications. It can also be configured by editing XML configuration files. 57. Where pragma is used? Pragma is used inside the servlets in the header with a certain value. The value is of no-cache that tells that a servlets is acting as a proxy and it has to forward request. Pragma directives allow the compiler to use machine and operating system features while keeping the overall functionality with the Java language. These are different for different compilers. 58. Briefly explain daemon thread. Daemon thread is a low priority thread which runs in the background performs garbage collection operation for th...

41 to 45 Java Questions

41. What is nested class? If all the methods of a inner class is static then it is a nested class. 42. What is HashMap and Map? Map is Interface and Hashmap is class that implements that. 43. What are different types of access modifiers? public: Any thing declared as public can be accessed from anywhere. private: Any thing declared as private can’t be seen outside of its class. protected: Any thing declared as protected can be accessed by classes in the same package and subclasses in the other packages. default modifier : Can be accessed only to classes in the same package. 44. What is the difference between Reader/Writer and InputStream/Output Stream? The Reader/Writer class is character-oriented and the InputStream/OutputStream class is byte-oriented. 45. What is servlet? Servlets are modules that extend request/response-oriented servers, such as java-enabled web servers. For example, a servlet might be responsible for taking data in an HTML order-entry form and applyi...