Wednesday, April 9, 2014

Information On Iphone Repair Service

By Eliza Mendoza


The iPhone was introduced into the market by the Apple Company. It was developed in the year 2007 and each year there is an updated version being released. If you happen to damage your phone you can always look for iPhone repair services. This option enables you to have your device back in good working condition without having to pay the cost of a new unit.

Your phone will remain in good condition if you find a decent repairman. The main advantage of looking for repair centers is that you get to save a lot of money. The amount of money that you will spend to have the broken parts fixed is far less than the amount you would have to pay for a new device. Even if the phone has several faults you will save a good amount of money.

iPhones are quality devices that are built using the best technology available. However, even the best electronic items are bound to get damaged if they are not properly taken care of. You should have several options when your phone malfunctions. There are many shops on the web where you can have your device restored to good working condition. Take time to get a service provider you can trust.

It is advisable to research well to find repairmen who are highly skilled and reliable. Good centers have technicians who are friendly. Experience is very important when it comes to fixing iPhones. Look for service providers who have been in the industry for long. Experienced professionals will fix problems in a short amount of time. They will also deliver quality services and give you expert advice.

One of the factors you need to consider when looking for repairmen is a warranty. Good firms will give you a warranty of not less than 30 days. If the device develops a fault within that period you can have it returned to the professionals. They will have another look at it and you will not be charged for the service.

A good firm should have excellent customer service. The technicians should explain to you the fault as well as the kind of maintenance that will be performed on your device. Any questions that you may have should be addressed properly. The phone should also be shipped according to your preferences. Most of the problems that iPhones have can be fixed by visiting a repair shop. Some of the most common problems include broken glass, water damage, battery problem, problems with the buttons as well as speaker malfunctions.

Most of these parts are easily replaceable. Some can be fixed instead of being replaced. Before you dispose your phone you should seek repair services. This option is recommended because it is cheaper and it gets your device working like it is new again.

It is advisable to take your time when looking for decent service providers. You can get referrals from colleagues and friends. You can also visit an Apple store for advice. IPhone repair services are easily available. All you need is to do a little research so that you can identify the best service providers.




About the Author:



Read More..

Think You Know Everything About Cell Phones Think Again

By Josiah Talamas


A cell phone can be your best friend or your worst enemy. You can use it to stay connected on the go, away from home. On the other hand, you might find yourself getting smacked with huge data bills and headaches from trying to figure out the technology. Be at peace with your cell phone by using the following tips.

Beware of areas with poor cell phone reception. A bad signal is not just annoying, it is also a real drain on your battery. Even if youre not using your cell phone, having it turned on in an area that gets poor cell phone reception can drain your battery completely.

Dont decide your phone is broken just because you got it wet. Just take the battery out and put it into a bowl full of rice. Doing so soaks up excess moisture that may have seeped into your smartphone.

Check online reviews before buying your cell phone. There are lots of new phones coming on the market all the time, and it is sometimes difficult to know which is best for you. By checking online reviews, you can see what features various phones offer, as well as how much other people like them. This can help you to make an educated decision.

Consider purchasing a used phone if you are looking to upgrade before your contract allows you to. This is often less expensive than buying new, and you will not be locked in to a specific contract period. Just make sure your provider supports the phone you want to buy, and that you can easily add it to your plan.

Keep your phone close to a signal. Burying your phone in a purse or desk drawer can impact the signal strength. When the phone works harder to gain a strong signal, your battery life will drop. Keep the phone in a place where it can easily reach signal and you will keep your battery up.

Consider doing a little negotiation on the cell phone price. Yes, you can negotiate in most cell phone stores. And it sometimes even works! It may not be for cost savings either. You could try and negotiate a download case with the purchase of the new cell phone. You dont know until you try.

If you only use your cell phone with wi-fi in your home, then you may want to consider dropping that expensive data plan attached to your smart phone. Sure this isnt for everyone. But if you only use that phone for talking, then why pay the additional (and expensive) data costs?

When buying a newer cellphone, take time to compare phones in actual physical stores. Putting just a few hours one afternoon can mean learning a lot about different models, plans and features. That way, you are more likely to get something you love.

Utilize the voice to text feature on your phone to save time and be safe on the road. This will allow you to convert the words that you say to a text message instantaneously. If you do not have this feature on your smartphone, you can add software like ReQall which will employ it.

Know the cell phone laws in your state when it comes to driving. In many states, its illegal to text on a cell phone and drive. Even if its technically legal in your state, its still not a good idea. Many accidents occur due to text messaging. If you must communicate, call using a hands-download device or pull off the road to text.

If you tend to use a lot of data with your cell phone, look for cell phone browsers that compress data usage. One that does this is Googles mobile Chrome browser. Surfing using Chrome can lower your total data usage by 10% to 20% easily. This can save you money month after month.

Playing mobile games can cure boredom and add some much needed excitement to your day. Youd be surprised at the quality of the games out there for cell phones. Be sure that you dont put too many games onto your cell phone because it can cause problems with the memory.

With these tips, using your cell phone will come a lot easier. Use this information to guide you in your quest for the right cell phone. This will help you to save time, money and energy.




About the Author:



Read More..

Tuesday, April 8, 2014

Calculate sales tax

Q. Write a C program to calculate the total cost of items with adding sales tax.
Your program should guide the user to accept price of item and result with adding sales tax.


Ans.


/*C program for calculate sales tax*/
#include<stdio.h>
#include<conio.h>
#define S_TAX 0.5
int main()
{
 float price,tot_cost;
 printf("Enter price of item : ");
 scanf("%f", &price);
 tot_cost=price+(price*S_TAX);
 printf("Total cost(with Sales Tax)= %f",tot_cost);
 getch();
 return 0;
}


/*****************Output*****************/
calculating sales tax
Screen shot for calculate sales tax

Read More..

Creating a Simple Visitor Counter in PHP

Creating a Simple Visitor Counter in PHP


Visitor counter is an easy way to track number of visitors coming to a web
site, while sophisticated trackers can give detailed statistics of visitors,
a simple visitor counter like the one we’re going tot create, would only
track the number of times a web page (or site) has been requested.


A simple visitor counter which only tracks number of pageloads is very easy
to create. It is obvious that the number of pageloads has to be preserved across
different runs so we need to store that data in a Database or file. To ease
things we’ll use a file.


Every time the page (with the script) is requested the value (number of pageloads)
will be read from and incremented in the file. The initial value in the file
should be 0.


Here is the code:


<?php

//function

function showCounter()


{

    
//open the file in read & write mode


    
$fp=fopen("counter.txt","r+");


    
//fetch pageload data


    
$pageloads=(int)fgets($fp,20);


    
//increment it


    
$pageloads++;


    
//seek to the start of file


    
fseek($fp,0);


    
//write the new value


    
fputs($fp,$pageloads);




    
//printf function is used to pad the 


    //pageload value, to make it look


    //good

    
return (printf("<h1><span style="color: #fff; 


                background: #000;">%010d


                </span></h1>"
,$pageloads));


}

?>


Save this file with the name ‘counter.php’.


For this script to run you first need to create a file named ‘counter.txt’
with the value ‘0’ in the same directory the script is in.


Everything in the code above looks familiar except these lines:


function showCounter()


{


Well, this is how we create functions in PHP. Unlike C/C++ we don’t need
to mention the return type of the function but the function-name should be preceded
with the keyword ‘function’. You may return value of any data type
from the function.


We have employed this method as to make it easier to integrate the visitor
counting script to existing web pages. If suppose we have an existing web page
named index.php, we can easily integrate this script as follows:


<?php include counter.php?>


<html>

<head><title>Counter Example</head>

</head>

<body>

<h1>My Web Site</h1>

<?php showCounter(); ?>

</body>

</html>


Simple! We’re just including the script at the top to make the function
available and at the bottom we’re calling the showCounter() functions
to show visitor counter.


Previous Articles:


Read More..

Monday, April 7, 2014

Realational Operator

When we write program, many time we requirement to comparison of two or more data, in that case we uses relational operators. There are following relational operators as following : 

Operators    Name
    >      Greater than
    <      Less than
    =      Equals  to
    >=     Greater than equals to
    <=     Less than equals to
    !=     Not equals to

The syntax of relational expression as :

<data value 1>Relational operator<data value 2>

Example :

10 >= 5
-50 <= 1
0 != 0

Read More..

Sunday, April 6, 2014

Out of control!

On a Java project that I work on part time we use the Eclipse IDE, which is a power tool for Java programming. Java itself gets hard to deal with once your software gets to a certain size, and Eclipse tries to do a lot of the hard work for you. Java would be unusable without such tools.

On the flipside to this, we had been using an older version of Eclipse. Ultimately we decided to upgrade to a newer version (but not the latest) because we wanted to use Subversion instead of CVS for our source code control.

One of my colleages decided to attack the upgrade and document what was needed for everyone to use the new version. It seemed like it took him many days to figure it all out. The new version didnt look too much difference on the surface, but I kept hearing groans from him. Clearly something wasnt going well, so I went over and asked him what was the matter. His answer was simply, "I cant figure out how to do things that I used to know how to do!" The new software was getting bigger and more complicated.

Theres a balance to strike when developing software. Its hard to make software easy to use while also adding new features.
Read More..

19 Design numbers tringle pyramid

Q. Write a program to generate a following numbers triangle:(Where user entered number through keyboard, for example if num=5)

1 2 3 4 5 4 3 2 1
2 3 4 5 4 3 2
3 4 5 4 3
4 5 4
5
Ans.
/* c program for number structure */
#include<stdio.h>
#include<conio.h>
int main()
{
 int num,r,c,sp;
 printf("Enter loop repeat number : ");
 scanf("%d",&num);
 for(r=1; r<=num; r++)
 {
   for(sp=r; sp>1; sp--)
      printf(" ");
   for(c=r; c<=num; c++)
      printf("%d",c);
   for(c=num-1; c>=r; c--)
      printf("%d",c);
   printf("
"
);

 }
 getch():
 return 0;
}
/************** OUTPUT *************
Enter loop repeat number : 5

123454321
2345432
34543
454

5
***********************************/
Read More..
 
Powered by Blogger .
Converted To Blogger Template by Anshul .