myTechpartner Join Me On Facebook
Join Me On Facebook

Blogroll

Wednesday, 8 May 2013

Latest News

Latest updates from techworld

Tuesday, 7 May 2013

Why BB10 not popular in SmartPhone field


The leading OS in smartphone field are Android, Windows, Blackberry 10
But the BB10 has not much popularity in smartphone community because of less
user friendly ,not much phones are available in India and many other countries.
One of the most Problem is i have to pointed out  There is not much free application
available in store , this is also in the case of windows phones the free version
of application and games are not available in market. We can reduce this trend by creating more free application for
these OS platforms..Are you interested in creating apps for BB10 sure i can help you……
image

image

Sun working platform of BB10
image

Sunday, 5 May 2013

Challenge Zone

If You succeed  You can step up to next Level
Can you predict the output for the following codes a surprising gift wait for u;
1)    a=”o”
        for i in range (1,11);
        print i*a
        You can submit  answer here http://goo.gl/nCyMv  with your email id ,we will contact if u correct
2)     a=”o”
         c=” “
         for i in range (0,11);
                  print (10-i)*c,(2*i+1)*a
          You can submit  answer here http://goo.gl/nCyMv  with your email id ,we will contact if u correct
3)      a=”TIP”
          n=len (a)
          for i in range (n);
                   s=s+a[n-i-1]
          print s
          You can submit  answer here http://goo.gl/nCyMv  with your email id ,we will contact if u correct

Application of linkedlist

Polynomial Addition
import java.io.*;
class node
{
       int coe,exp;
       public node next;
       public node(int id,int dd)
         {
              coe=id;
              exp=dd;
         }
public void displaynode()
      {
         System.out.print(coe +"x^" +exp );
      }
}
class nodeList
{
   public node first;
   public node last;
   public void nodeLIst()
    {
      first=null;
      last=null;
    }
   public boolean isEmpty()
    {
      return(first==null);
    }
  public void insert(int id,int dd)
   {
    if(isEmpty())
     {
      first=new node(id,dd);
      last=first;
     }
   else
    {
      last.next=new node(id,dd);
      last=last.next;
    }
  }
public void displayList()
  {
   node current=first;
   while(current!=null)
    {
      current.displaynode();
      if(current.next!=null)
      System.out.print(" + ");
      current=current.next;
    }
}
public void read() throws Exception
  {
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    int c,e,h=1;
    while(h==1)
     {
     System.out.println("Enter coefficient\n");
        c=Integer.parseInt(br.readLine());
        System.out.println("Enter exponent\n");
        e=Integer.parseInt(br.readLine());
        insert(c,e);
     System.out.println("1.Enter add more terms\n 0:Exit");
        h=Integer.parseInt(br.readLine());
        }
     }
public void add(nodeList x,nodeList y,nodeList z) throws Exception
  {
    node p=x.first;
    node q=y.first;
    while(p!=null&&q!=null)
     {
      if(p.exp==q.exp)
       {
         z.insert(p.coe+q.coe,p.exp);
     p=p.next;
     q=q.next;
       }
      else
       if(p.exp>q.exp)
        {
         z.insert(p.coe,p.exp);
         p=p.next;
        }
      else
        {
         z.insert(q.coe,q.exp);
         q=q.next;
        }
     }
   while(p!=null)
   {
     z.insert(p.coe,p.exp);
     p=p.next;
    }
  while(q!=null)
   {
     z.insert(q.coe,q.exp);
     q=q.next;
    }
}
}
class polynomial2
{
  public static void main(String arg[])throws Exception
  {
   int id;
   int dd;
   BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
   nodeList obj1=new nodeList();
   System.out.println("\nEnter the first polynomial");
   obj1.read();
   nodeList obj2=new nodeList();
   System.out.println("\nEnter the second polynomial");
   obj2.read();
   System.out.print("\nThe polynomial are\np(x) =");
   obj1.displayList();
   System.out.print("\nq(x)  =");
   obj2.displayList();
   System.out.print("\np(x)+q(x)  =");
   nodeList obj3=new nodeList();
   obj3.add(obj1,obj2,obj3);
   obj3.displayList();
}
}

 
            
         
  
 Java

Google Nexus 7

 

Google nexus 7 (Wi-Fi and 3G)

         3G connectivity adds greatly to the utility of any tablet and this factor, along with a high definition screen

         and the guaranty that you will get  latest android updates, makes the Nexus 7 most value for money tablet.

         

Sun       3G SIM for on-the-go connectivity                                                                                        

Sun       32GB storage, no micro SD slot                                                                  

Sun       Decent battery life(over 5 hours of video)

               dips when used 3G.

Sun       Just like with the Wi-Fi variant, offers a pure

                 Android experience with assurance of OS  updates.

      image

Sun       7 inch IPS touchscreen(1200x800 pixel)

Sun       1.2 GHz quad core CPU

Sun       1 GB RAM

Sun       16 GB internal memory

Sun       1.2 MP front camera

Sun       3G, Wi-Fi, Bluetooth

Sun       4325 mAh battery

Sun        Android 4.2 Jelly Bean

Saturday, 4 May 2013

An easy way to increase your FB page & post likes

 

Yes it is work quite nicely you can increase your FB likes and many other social network sites

posts it is very simple and absolutely free to proceed .

Step 1: First of you just click here   addmefast

you will lead to the addmefast sit

 image  

Step 2: Click on registration because your are not member yet.    Fill the columns correctly in the form

  image 

After complete click on Sign Up

Step 3:  You will get conformation mail in your mail id that was given at  the time of registration.

Step 4:  After conforming mail you can sign into the web site. Now the real magic wait for you.

 image

Step 5: Add details of your FB page, that you want to increase your likes

 image

Step 6:  click on Save Changes

now you can see likes increase in your site:

Note that increase your free point to get more likes……for that you like others page or post that appear on site.

I hope that you have done successfully send your feed as comment let enjoy.

How to create drop down menu

 

image

*****************

<div class='span-24'>
<div class='menu-secondary-container'>
<ul class='menus menu-secondary'>
<li><a href='#'>Home</a></li>
<li><a href='#'>Programming</a>
<ul class='children'>
<li><a href='#' target='_blank'>C</a></li>
<li><a href='#' target='_blank'>C++</a></li>
<li><a href='#' target='_blank'>Java</a></li>
<li><a href='#' target='_blank'>Html</a></li>
<li><a href='#' target='_blank'>Python</a></li>
<li><a href='#' target='_blank'>C#</a></li>
</ul>
</li>
<li><a href='#'>DOWNLOADS</a>
<ul class='children'>
<li><a href='#' target='_blank'>Pdf</a></li>
<li><a href='#' target='_blank'>ebooks</a></li>
<li><a href='#' target='_blank'>Software</a>
<li><a href='#' target='_blank'>Pics</a></li>
<ul class='children'>
<li><a href='#'>Others</a></li>
</ul>
</li>
</ul>
</li>
<li><a href='#'>STUDENT</a>
<ul class='children'>
<li><a href='#'>BTech</a>
<ul class='children'>
<li><a href='http://www.cusat.ac.in' target='_blank'>CUSAT</a></li>
<li><a href='http://www.mgu.ac.in' target='_blank'>MG</a></li>
<li><a href='http://www.keralauniversity.edu' target='_blank'>KERALA</a></li>
</ul>
</li>
<li><a href='#'>Challenge</a></li>
<li><a href='#'>Ask Me</a></li>
<li><a href='#'>Help</a></li>
</ul>
</li>
<li><a href='#'>Featured</a></li>
<li><a href='#' target='_blank'>TechNews</a>
<ul class='children'>
<li><a href=’#' target='_blank'>Mobile</a></li>
<li><a href='#' target='_blank'>Software</a></li>
</ul>
</li>
<li><a href='#' target='_blank'>Windows 8</a>
<ul class='children'>
<li><a href='#' target='_blank'>Tutorials</a></li>
<li><a href='#' target='_blank'>Templates</a></li>
</ul>
</li>
</ul>
</div>
</div>

*******************

Replace the # by your website url for eg:http://www.mytechpartner.blogspot.in/search/label/Tutorials

This will search your post with the label Tutorials

target='_blank'    will display that posts in new tab:

 

Contributors

Online Marketing

Do you Like this Article?

rss twitter facebook