myTechpartner Join Me On Facebook
Join Me On Facebook

Blogroll

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:

Top ten ideas of blog writing


1.Make a list! Blog readers love lists. Write “Top 10 Tips for Organizing Your Home Office”, “7 Ways to Complete Your Novel”, “Best 5 Posts of 2013”, or anything else that fits in list format!

2.Write “pillar articles” in your area of expertise, especially if you’ve got a self-help, self-development or how-to blog. What advice do you have for people whose marriages are in trouble, for example? What other guidance can you give to people looking to change careers or research a new diagnosis online?

3.Write about the blogs you read. Have any of them said anything cool, interesting or controversial lately? Do you agree with that blogger’s point of view? Disagree? Why?

4.Write about current events, politics, breaking news. This is a no-brainer. Keep up on what’s going on in the world and write your thoughts about those issues.

5.Write a series post. If you’re dying to write about a topic and the article’s likely to be longer than 1000 words, break it up into sections and make it into a series. Include a navigation post that includes links to    each      section of the series as you post it.

6.Write about what you’re reading. How did hear about it? What moved you to start reading that particular book at this time? What do you think about it?

7.Do question-and-answer posts, or write a list of frequently asked questions. You can literally take questions from your audience using blog widgets or via blog comments, or answer your most frequently asked questions. Post updates as needed.

8.Write about your life, if you’re comfortable with that. This depends entirely on your level of comfort, and you obviously shouldn’t share anything that will keep you up at night, but people are reading your blog because they’re interested in YOU. Don’t be afraid to share and be authentic – share stories, talk about your childhood, discuss problems and solutions from your real life!

9.Ask friends and colleagues to do guest posts on your blog. You can ask, other bloggers, co-workers, people in your field, people in a completely different field – anything you want.

10.People love how-to articles. How do I find a place to stay for three months in Belize? How do I know if I’m ready to be a freelance translator? How do I talk to my kids about this subject? How do I get the cable guy to show up on time?

Thursday, 2 May 2013

How to create amazing pictures with CS5

This is the world of social medias every one post their own new post
to get more like and share ,so for that a good quality stuff must be needed
everyone. See the picture given below how that one
229770_476556625751022_1629482790_n
It is cool and easy to create following the simple steps given below

first open background image in photoshopCS5
image
Then create new layer
and open screen image you wish to paste above the back ground image
select the image and paste it in the newly created layer in background image
image
now this look like below
image
now change the layer property normal to screen mode
image
Yes you done ……………..
image

Share

 

Contributors

Online Marketing

Do you Like this Article?

rss twitter facebook