Showing posts with label to. Show all posts
Showing posts with label to. Show all posts

Saturday, June 10, 2017

Download Who Wants To Be A Millionaire 3rd Edition


Minimum System Requirements

    • OS: Windows XP/Vista/7
    • CPU: Pentium IV @ 2.0 GHz Processor
    • RAM: 2 GB
    • Hard Drive: 600 MB Free
    • Video Memory: 128 MB
    • Sound Card: DirectX Compatible
    • DirectX: 9.0
    • Keyboard and Mouse

      Screenshots


      How To Install This Game?
      1. Extract the file using Winrar. (Download Winrar)
      2. Open "Who Wants To Be A Millionaire 3rd Edition" folder, double click on "Setup" and install it.
      3. After installation complete, go to the folder where you install the game.
      4. Open folder, double click on "mil3" icon to play the game. Done!

      Who Wants to Be a Millionaire? 3rd Edition Free Download

      The Lord Of The Rings: The Return Of The King Game Free Download For PC Full Version
      CLICK HERE
      Game Size: 117 MB
      Password: www.apunkagames.net

      Read more »

      Tuesday, April 25, 2017

      DOWNLOAD SIMS 4 GET TO WORK RELOADED FULL VERSION GAME

      COVER PHOTOS
      DOWNLOAD SIMS 4 RELOADED FULL VERSION GAME
      DOWNLOAD SIMS 4 RELOADED FULL VERSION GAME




      DOWNLOAD SIMS 4 RELOADED FULL VERSION GAME
      DOWNLOAD SIMS 4 RELOADED FULL VERSION GAME
      DOWNLOAD SIMS 4 RELOADED FULL VERSION GAME
      DOWNLOAD SIMS 4 RELOADED FULL VERSION GAME
      DOWNLOAD SIMS 4 RELOADED FULL VERSION GAME
      Download

      System Requirement:

      Operating System : Windows Vista SP or Windows 7 SP1 or Windows 8 (both 32/64 bit versions).
      CPU : Intel Core2Quad Q8400@ 2.6 GHz AMD Athlon II X 4 620@ 2.6 GHz.
      RAM : 2 GB
      Memory : 80 GB HDD with 20 GB free Space.
      Video Card: Nvidia Geforce GTX 260 or AMD Radeon HD 4870.
      Read more »

      Sunday, February 15, 2015

      Java program to find whether a number is armstrong or not

      Java program to find whether a number is armstrong or not

      class Armstrong
      {
      public static void main(String...s)
      {
      int m,n,i,j=0;
      n=Integer.parseInt(s[0]);

      m=n;
      while(n!=0)
      {
      i=n%10;
      j+=(i*i*i);
      n/=10;
      }

      if(j==m)
      System.out.println("
      Number is armstrong");

      else
      System.out.println("
      Number is not armstrong");

      }
      }
      Read more »

      Saturday, February 14, 2015

      C Program to calculate Factorial of any number


      #include<iostream.h>
      #include<conio.h>
      void main()
      {     
        clrscr();
      unsigned long i,fac,n;
      cout<<"Enter Number: ";
      cin>>n;


      for(i=1,fac=1;i<=n;++i)
      {
      fac=i*fac;
      }
      cout<<"Factorial 0f "<<n<<" is: "<<fac;
      getch();
      }

      Read more »

      C program to print following trianlge using character

      C++ program to print following trianlge using character *


      #include<iostream.h>
      #include<conio.h>

      void main()
      {
      clrscr(); //to clear the screen
      int i,j,k,n;

      cout<<"How many lines?";
      cin>>n;


      for(i=0;i<n;++i)
      {
      cout<<"
      ";

      for(j=0;j<i;++j)
      cout<<" ";
      for(k=n;k>i;--k)
      cout<<"*";
      }
      getch(); //to stop the screen
      }
      Read more »

      Adding dollar sign to X axis lables values for bar charts in pentaho CDE

      Hi Guys,
      Using below java script one can easily add $ sign to the values of X-axis for any charts in pentaho CDE.
      Example:
      function f(v) { return "$" + sprintf(%d, v/1000) + k; }


      Write the java code in "orthoAxisTickFormatter" java script wizard.
      Make sure to give orthoAxisTicks as "True"

      Sample output:


      NOTE:
      This code works with 13.06 as well with 13.09 version of pentaho CDE.
      Also note that in java script if one line is not executing then the remaining lines will not execute. i.e., for instance you have 10 lines of code and 4th line is not executed then the remaining lines will not execute. Check with an alert function.


      Sadakar Pochampalli
      BI developer

      Read more »

      Turbo C for Android How to Download and Install

      If you are from India and have started learning C/C++ programming from your school days then you have definitely used Turbo C++ compiler. Still many schools, colleges and institutions in India prefer Turbo C++ for teaching students (don’t know about other countries). I do not recommend you to use Turbo C++ compiler for android because it is very outdated (about 23 years old). There is another option i.e. C4droid, it is an awesome C/C++ IDE that supports gcc compiler.

      Turbo C++ for Android - How to Download and Install

      Also Read: Download Turbo C++ for Windows 8 for Free

      So, lets come to main topic on which I am writing this article. In windows we use DosBox Emulator for running Turbo C++ for Android, in the same way we need an emulator for android platform which is known as AnDosBox. So without wasting much time lets take a look how we can use Turbo C++ for android platform.

      Turbo C++ for Android - Steps to Download and Install

      1. First of all download Turbo C++ for Android from link: http://sh.st/r5mBt

       2. It is compressed so you need to extract it. This can be done by any compression tool like Easy Unrar. You can download it from play store for free.

      3. Now after extracting you will get a folder TC and an apk file AnDosBox.

      4. Install AnDosBox and move TC folder in your sd card, remember that TC folder must be in sd card not in any other subfolder.

      5. Now open AnDosBox that you have already installed. It will look same as like DoxBox that is used in windows.

      6. Enter below lines or commands and press enter after each line. You can get the keyboard by pressing the option button situated at left side of your device.

      cd tc
      cd bin
      tc


      Turbo C++ for Android - How to Download and Install

      Turbo C++ for Android - How to Download and Install

      7. If everything will be done correctly then after entering last command a blue screen will open and it is Turbo C++ for Android. You can control the pointer by moving your finger on your touchscreen.

      For understanding this tutorial easily I have added a video below that will help you in downloading and installing turbo c++ for android.


      Now just go and install it, write and run your program and share your experience with me. Feel free to ask if you are getting any problem.

      Note: If you are unable to change to directory TC then move the TC folder in internal storage and try the process again.

      Search Terms:
      turbo c compiler for android
      c compiler for android
      download turbo c++ for android
      c compiler for android mobile
      Read more »

      Friday, February 13, 2015

      C program to print the following design

      C++ program to print the following design
      #include<iostream.h>
      #include<conio.h>


      void main()
      {
      clrscr(); //to clear the screen
      int i,j,k,n;

      cout<<"How many lines?";
      cin>>n;
      n*=2;


      for(i=0;i<n;i+=2)
      {
      for(j=n-2;j>i;j-=2)
      cout<<" ";
      for(k=0;k<=i;++k)
      cout<<"*";
      cout<<"
      ";

      }


      for(i=0;i<n;i+=2)
      {
      for(j=0;j<i;j+=2)
      cout<<" ";
      for(k=n-1;k>i;--k)
      cout<<"*";
      cout<<"
      ";

      }
      getch(); //to stop the screen
      }
      Read more »

      Thursday, February 12, 2015

      C program to create a loading bar

      C++ program to create a loading bar

      #include<iostream.h>
      #include<conio.h>
      #include<graphics.h>
      #include<dos.h>

      void main()
      {
      int x=170,i,gdriver=DETECT,gmode;
      initgraph(&gdriver,&gmode,"c:\tc\bgi");
      settextstyle(DEFAULT_FONT,HORIZ_DIR,2);
      outtextxy(170,180,"LOADING,PLEASE WAIT");

      for(i=0;i<300;++i)
      {
      delay(30);
      line(x,200,x,220);
      x++;
      }
      getch();
      closegraph();
      }
      Read more »

      Wednesday, February 11, 2015

      Program to Create Calculator Using Java Swing

      The program to create a simple calculator in Swing is given below. Just try it and if you find any difficulty in understanding the program then mention it in the comment.

      Program to Create Calculator Using Java Swing

      import javax.swing.*;
      import java.awt.event.*;

      class Calc implements ActionListener
      {
      JFrame f;
      JTextField t;
      JButton b1,b2,b3,b4,b5,b6,b7,b8,b9,b0,bdiv,bmul,bsub,badd,bdec,beq,bdel,bclr;

      static double a=0,b=0,result=0;
      static int operator=0;

      Calc()
      {
      f=new JFrame("Calculator");
      t=new JTextField();
      b1=new JButton("1");
      b2=new JButton("2");
      b3=new JButton("3");
      b4=new JButton("4");
      b5=new JButton("5");
      b6=new JButton("6");
      b7=new JButton("7");
      b8=new JButton("8");
      b9=new JButton("9");
      b0=new JButton("0");
      bdiv=new JButton("/");
      bmul=new JButton("*");
      bsub=new JButton("-");
      badd=new JButton("+");
      bdec=new JButton(".");
      beq=new JButton("=");
      bdel=new JButton("Delete");
      bclr=new JButton("Clear");

      t.setBounds(30,40,280,30);
      b7.setBounds(40,100,50,40);
      b8.setBounds(110,100,50,40);
      b9.setBounds(180,100,50,40);
      bdiv.setBounds(250,100,50,40);

      b4.setBounds(40,170,50,40);
      b5.setBounds(110,170,50,40);
      b6.setBounds(180,170,50,40);
      bmul.setBounds(250,170,50,40);

      b1.setBounds(40,240,50,40);
      b2.setBounds(110,240,50,40);
      b3.setBounds(180,240,50,40);
      bsub.setBounds(250,240,50,40);

      bdec.setBounds(40,310,50,40);
      b0.setBounds(110,310,50,40);
      beq.setBounds(180,310,50,40);
      badd.setBounds(250,310,50,40);

      bdel.setBounds(60,380,100,40);
      bclr.setBounds(180,380,100,40);

      f.add(t);
      f.add(b7);
      f.add(b8);
      f.add(b9);
      f.add(bdiv);
      f.add(b4);
      f.add(b5);
      f.add(b6);
      f.add(bmul);
      f.add(b1);
      f.add(b2);
      f.add(b3);
      f.add(bsub);
      f.add(bdec);
      f.add(b0);
      f.add(beq);
      f.add(badd);
      f.add(bdel);
      f.add(bclr);

      f.setLayout(null);
      f.setVisible(true);
      f.setSize(350,500);
      f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      f.setResizable(false);

      b1.addActionListener(this);
      b2.addActionListener(this);
      b3.addActionListener(this);
      b4.addActionListener(this);
      b5.addActionListener(this);
      b6.addActionListener(this);
      b7.addActionListener(this);
      b8.addActionListener(this);
      b9.addActionListener(this);
      b0.addActionListener(this);
      badd.addActionListener(this);
      bdiv.addActionListener(this);
      bmul.addActionListener(this);
      bsub.addActionListener(this);
      bdec.addActionListener(this);
      beq.addActionListener(this);
      bdel.addActionListener(this);
      bclr.addActionListener(this);
      }

      public void actionPerformed(ActionEvent e)
      {
      if(e.getSource()==b1)
      t.setText(t.getText().concat("1"));

      if(e.getSource()==b2)
      t.setText(t.getText().concat("2"));

      if(e.getSource()==b3)
      t.setText(t.getText().concat("3"));

      if(e.getSource()==b4)
      t.setText(t.getText().concat("4"));

      if(e.getSource()==b5)
      t.setText(t.getText().concat("5"));

      if(e.getSource()==b6)
      t.setText(t.getText().concat("6"));

      if(e.getSource()==b7)
      t.setText(t.getText().concat("7"));

      if(e.getSource()==b8)
      t.setText(t.getText().concat("8"));

      if(e.getSource()==b9)
      t.setText(t.getText().concat("9"));

      if(e.getSource()==b0)
      t.setText(t.getText().concat("0"));

      if(e.getSource()==bdec)
      t.setText(t.getText().concat("."));

      if(e.getSource()==badd)
      {
      a=Double.parseDouble(t.getText());
      operator=1;
      t.setText("");
      }


      if(e.getSource()==bsub)
      {
      a=Double.parseDouble(t.getText());
      operator=2;
      t.setText("");
      }

      if(e.getSource()==bmul)
      {
      a=Double.parseDouble(t.getText());
      operator=3;
      t.setText("");
      }

      if(e.getSource()==bdiv)
      {
      a=Double.parseDouble(t.getText());
      operator=4;
      t.setText("");
      }

      if(e.getSource()==beq)
      {
      b=Double.parseDouble(t.getText());

      switch(operator)
      {
      case 1: result=a+b;
      break;

      case 2: result=a-b;
      break;

      case 3: result=a*b;
      break;

      case 4: result=a/b;
      break;

      default: result=0;
      }

      t.setText(""+result);
      }

      if(e.getSource()==bclr)
      t.setText("");

      if(e.getSource()==bdel)
      {
      String s=t.getText();
      t.setText("");
      for(int i=0;i<s.length()-1;i++)
      t.setText(t.getText()+s.charAt(i));
      }

      }

      public static void main(String...s)
      {
      new Calc();
      }
      }
      Read more »

      How to Clean Laptop Parts with Simple Household Products

      How to Clean Laptop Parts with Simple Household Products

      The popularity earned by potable computers or laptops may decline some day as most of their users use them unaware of the consequences of using them wherever they go. Most of them use these sophisticated devices even while enjoying a cup of coffee or other eatables and the residues of the things you eat near them or the dirt and fingerprints may effect the functioning of the keys as well as the brilliancy of its LCD screen. So these laptops Parts need to be clean frequently for their proper functioning and good appearance.

      Also Read: 4 Best Tips to Clean Your Touch Screen Device
      Also Read: Top 5 Cheapest Android Tablets below Rs. 5000 in India in 2013

      Several companies had introduced various solutions to clean keyboards and LCD screens of the laptops. Though most of them are effective in cleaning these delicate parts of your laptop but most of them are costly solutions. You can also use some of your household products to clean the main usable parts of your laptop as they can be much cheaper than company products if used carefully. Instead of using various complex chemical based cleaning solutions you can use vinegar successfully for this purpose. Before starting the cleaning of your electronic device you should first of turn it off as using liquids on active device is not safe and advisable.


      Cleaning of LCD screens

      LCD screens are one of the most sophisticated laptops Parts that has to be cleaned very carefully as you should put pressure on them while cleaning. In fact the screen of your laptop should be cleaned gently with a light touch using lint-free cloth in a circular motion, especially on its smudged portions. It should be slightly dampened in a mixture of vinegar and water in equal quantities. Though there can be other household products that can be used instead of vinegar like isopropyl alcohol but you should avoid spraying them directly on the LCD screens as they may damage it. After washing your screen you should dry it, without wiping it hard as it may get damaged, before you shut down your laptop.

      Cleaning of keyboards

      Keyboards are also one of the essential laptop parts that need cleaning frequently as it is more prone to get dirty very easily due to atmospheric dust and dirt as well as your fingerprints. You can clean them all by using lint-free cloth slightly dampened with vinegar or other mild household cleaning solution like isopropyl alcohol or dish washing detergent. Though the keys of your laptop are not as delicate as its screen but still you have to clean them using the same process as you have used on your screen. A gentle circular motion can clean them very efficiently.

      How to Clean Laptop Parts with Simple Household Products

      Also Read: The 12 Best Tools To Protect Your Password
      Also Read: Top 8 Free Alternatives to Paid Softwares

      You should avoid spraying any clean solution directly on the keyboards as it may go under the keys and damage the whole system. But to clear out the food remains fastened in between the keys you should not turn it upside down and shake. You can use compressed air products or your handy vacuum cleaner, especially made to clean computers and small household properties, for this purpose.

      About Author: 
      We can clean the sophisticated laptops Parts at home with household products without spending a good fortune on them.
      Read more »

      Thursday, February 5, 2015

      What is Online Marketing Online Marketing Training Course Learn how to Market Online

      What is online marketing? Learn the fundamentals of how to market online in this excellent online marketing training course by lynda.com. In Online Marketing Fundamentals, let Lorrie Thomas Ross take you through the process of how to create a successful online marketing campaign. This excellent training course is ideal for web marketers, web designers, business owners, and executives. Topics include: Working with web analytics software, Building a site map, Selecting a domain name and a web host, Planning for mobile, Conducting social media marketing, Developing an email marketing campaign, Reviewing online public relations, Understanding the difference between search engine marketing (SEM) and search engine optimization (SEO), and more! Visitors of Tutorials101 can access the entire course for free by signing up for a free 7-day trial. You can also learn more about the training course by watching the free videos below.


      Online Marketing Fundamentals by

      START LEARNING TODAY!
      or

      WATCH THESE 4 FREE VIDEOS FROM THE COURSE

      WHO IS THIS COURSE FOR? - What is Online Marketing? - Online Marketing Training Course - Learn how to Market Online


      ONLINE MARKETING DEFINED - What is Online Marketing? - Online Marketing Training Course - Learn how to Market Online


      COMPONENTS OF ONLINE MARKETING - What is Online Marketing? - Online Marketing Training Course - Learn how to Market Online


      DEFINING YOUR TARGET MARKET - What is Online Marketing? - Online Marketing Training Course - Learn how to Market Online

      START LEARNING TODAY!
      or

      Course Information

      Training Provider: Lynda.com
      Title: Online Marketing Fundamentals
      Author: Lorrie Thomas Ross
      Duration: 1hr 47mins
      Date of release: 07 December 2011

      Chapter 1: What Is Online Marketing?
      Online marketing defined
      How online marketing works
      Distinctions of online marketing
      Components of online marketing

      Chapter 2: Building a Foundation
      Online marketing planning and success
      Defining your target market
      Online marketing measurement

      Chapter 3: Planning a Web Site for Online Marketing
      Site map
      Site components
      Wireframing
      Elements of a successful site
      Home page best practices
      Privacy policy

      Chapter 4: Building or Optimizing a Web Site for Online Marketing
      DIY or hire help?
      Web site platforms
      Domain names
      Choosing a hosting company
      Web site maintenance and management
      Mobile sites

      Chapter 5: Content Marketing
      Authority marketing
      Article marketing
      Social media content
      Online PR
      Web site and email content

      Chapter 6: Search Engine Marketing
      Overview of search engine marketing (SEM)
      Search engine optimization (SEO)
      Paid search
      Local search

      Chapter 7: Social Media Marketing
      Social media, social networking, and social media marketing defined
      Blogging and microblogging
      Social networking
      Video sharing
      Social shopping and opinions
      Social news and social bookmarking
      Social events
      Wikis
      Social media strategy

      Chapter 8: Blogging
      To blog or not to blog?
      Blogging success
      Blog content creation ideas

      Chapter 9: Online Advertising
      Search ads
      Display ads
      Affiliate marketing
      Social media advertising
      Local advertising
      Email advertising

      Chapter 10: Email Marketing
      Collecting email addresses
      Using a third-party management company
      Email messages
      About Lynda.com

      Lynda.com is an online video training provider with over 1000 courses covering a wide array of topics - 3D, video, business, the web, graphic design, programming, animation, photography, and more. They produce top quality video tutorials with the best industry experts as your instructors. With a subscription, you can log-in at any time, and learn at your own pace. New courses are added each week, and you will receive a certificate of completion for each course that you finish.

      Start learning today!
      If you enjoyed the sample videos above and want to access the entire Online Marketing Fundamentals course, you can sign up for a lynda.com membership. Your membership will allow you to access not only this course, but also the entire lynda.com library for as low as $25 for 1-month. Their training library has over 1000 courses with 50,000+ video tutorials. No long-term commitment required. You can cancel your membership at any time.



      Not yet convinced? Try a FREE 7-day trial.
      As a special promotion, visitors of this site can get a FREE 7-day trial to lynda.com. This free trial gives you access to their entire training library of over 1000 courses.

      If youre ready to learn how to market online, then become a lynda.com member today, to start viewing this excellent online marketing training course! Your membership also gives you access to the entire lynda.com library of over 1000 courses.

      START LEARNING TODAY!
      or
      Read more »

      How to play presentations on Facebook and Twitter timeline

      Thanks to online presentation sharing websites, lot many people now use presentations to share the information with the world. Its a well known fact that in comparison to video, presentation creation is much easy task and now with availability of  platforms like Slideshare and authorSTREAM which help you reach masses, presentations are also being used as marketing or branding weapon.

      Though creating marketing material in presentation is technically easy as compared to a video ad, yet most viral distribution channels aka social media platforms only support videos and photo uploads. However, off late most of the popular social media platforms like G+, Pinterest, Facebook, LinkedIn and Twitter have enabled presentation embeds of SlideShare and authorSTREAM on the timeline or newsfeed. So if you want to play your presentations on these social media platforms, just upload your presentations on authorSTREAM or SlideShare as public upload and share the link on Twitter or Facebook.

      While SlideShare presentations play on Pinterest, LinkedIn and Twitter, they fail to play on Facebook. Presentations uploaded on authorSTREAM play on Facebook as well as Twitter timeline. Upload your content on these platforms, share the web link and get more accolades (views, comments, shares, re-tweets) since your audience need not to leave the platform to see your worthy masterpiece.
      Read more »

      How to remove pattern lock and hard reset your LG P700 P705 L7


      Hi there,

      If you forgot your password and you are unable to unlock your phone, well you came to the right place. If you already followed all tutorial in the internet then maybe this is your last resort. I will show you how to remove password, pattern lock and this can even fix Hang in logo issue on your LG P700 / P705 or also known L7.



      This procedure will work in Linux / Windows, sorry Mac users I dont know the command in OSX. Anyways I will explain first the Linux ways.

      You can use this in any Debian distro such as Ubuntu, Kubuntu, Lubuntu, Crunchbang etc etc.. Okay here it is.

      In your Linux system, install first the android-tools-adb

      To install it go to your Terminal and then just type in;

      sudo apt-get install android-tools-adb

      Okay next we are going to wipe your phone now. Just follow the instructions I will just keep it simple :)

      1. Press and Hold Volume UP and Volume DOWN, then insert USB Cable without releasing the buttons. And then Also press the Home Button. Just hold the three buttons until you see the recovery mode in your LG L7. Something like in the picture. Im sorry for the picture because I dont have the phone in my hand when I am writing this article. But for your reference something like that.

       2. Launch Terminal and execute this command
      sudo adb reboot recovery

      press enter and then enter your password

      3. Your device will reboot and then it will wipe the whole device.



      Windows Way

      First you need to have the following files:
      1. Driver –----- >> L7 Driver
      2. Adb tools –-->> adb tools

      After downloading the files extract and install the l7 driver, after installing the driver go to adb-fastboot-win folder





      And look for adb recovery.bat and run it.

      And it will look something like this




      Thats it you have successfully wipe your phone. And ready to setup and use it again.

      I hope this tutorial help you. If you find any wrong procedure please drop us a comment.
      Read more »