www.flickr.com

MyPhone IceBerg Complete Official Specs

Tuesday, October 15, 2013 Posted by Glenn 0 comments

myphone has just released their newest (2months ago) ICEBERG phone with a tag of: "Larger than life". I was walking inside a certain branch of puregold in Q.C, in Cubao (I was hesitating to include my location because of privacy issues lol) and then I saw a banner of this ICEBERG in front of a cellphone store. I took some minutes to check the specs of such new smartphone and I was astonished. With P12,000.00 I can actually have an s3 or S4. hehe. Forgive me, I'm not updated with android smartphones now for I am not a fan of such OS. I'm into iOS actually. But I think I really like this phone. Anyways, check their video clip advertisement below.

What I really love about this new smartphone is that it has its so called "TARA".

TARA is an exclusive app for MyPhone users which stands for Theft Apprehension and Asset Recovery Application.

TARA (I saw this and read from the banner that I was saying standing in front of a certain cellphone store) disables the screen as well as protects all the data in case of theft.

The first semester of my last year in the university is near to end. So I was thinking right now what should I get? An iPhone4S? or this one?. I will give it to my ahemmm... future wife hehehe. But thinking the fact that she too is an avid fan of iOS (apple products), I get hesitance in getting this Iceberg. You could help me out by commenting below :)

So here is the Complete and Official Specs of the new myphone ICEBERG:

  • 1.2 GHz Quad Core MediaTek MT6589 Processor, Cortex-A7
  • Android 4.2.1 Jelly Bean
  • 5.7 Inch High Definition IPS Display at 720 x 1280 Pixel Resolution or 258 Pixels per Inch
  • Corning Gorilla Glass 2 Scratch Resistant
  • 12 Megapixel Autofocus Rear Camera with LED Flash and BSI
  • 5 MegaPixel Autofocus Front Camera
  • PowerVR Series 5XT GPU
  • 1 GB RAM
  • 16 GB Internal Storage
  • No MicroSD Slot
  • WiFi, WiFi Hotspot
  • 3G (HSPA+), EDGE, GPRS, GSM
  • Bluetooth and GPS
  • Wireless Display
  • USB OTG
  • FM Radio
  • Light, Motion, Proximity and Magnetic Sensors
  • 2,600 mAh Li-ion Battery
  • ₱11,988.00

What makes me think to choose this ICEBERG over an iPhone 4s:
1. Cheaper.
2. HIGHER BATTERY ratings! wow!!!!
3. Gorrila Glass 2
4. Quad core processor
5. 1GB RAM
6. High pixels for the Cameras.
-others are cool for me :)





additional tags:official specifications of myPhone IceBerg, new myphone Iceberg, release of Iceberg myphone, Iceberg Myphone Edition, smartphones from myphone.

Sharing is so Easy:
StumpleUpon DiggIt! Del.icio.us Blinklist Yahoo Furl Technorati Simpy Spurl Reddit Google Twitter FaceBook

Labels:

Codes for Trapezoidal Rule in C and C++

Posted by Glenn 0 comments

 #include<stdio.h>  
 #include<conio.h>  
 #include<math.h>  
 float fn(float x)  
 {  
 sqrt(x);  
 return sqrt(x);  
 }  
 main()  
 {  
 int i,n;  
 float a,b,s=0,y=0,h;  
 printf("Enter the no of interval =");  
 scanf("%d",&n);  
 printf("Enter the lower limit=");  
 scanf("%f",&a);  
 printf("Enter the upper limit=");  
 scanf("%f",&b);  
 h=(b-a)/n;  
 for(i=1;i<=n-1;i++)  
 {  
 s=s+fn(a+i*h);  
 }  
 y=(fn(a)+fn(b)+2*s)*h/2;  
 printf("the value of y is=%f",y);  
 getch();  
 }  

-this source codes belongs to: the author of wbutassignmenthelp :)
-this source codes is ready for copy-paste to any IDE/compilers for C/C++. The quotations from the original website source confuse the compilers, I've already change them to the original quotation :)
additional tags: trapezoidal rule for C, trapezoidal rule for Cplusplus, C++, codes for Trapezoidal, trapezoidal source codes

Sharing is so Easy:
StumpleUpon DiggIt! Del.icio.us Blinklist Yahoo Furl Technorati Simpy Spurl Reddit Google Twitter FaceBook