Skip to main content

About Us

I may use Big words at times, But I'm really a Simple Guy Who Love to Simplified The complex Stuff In an Easy Way.


I started Blogging When I m in the 12 standards  A company Who's Name is COIPL  its a mainly a corporate company but all skills which I know about blogging is Simply come from COIPL.  I couldn't resist the temptation of taking it seriously at that time.

Generally, I started on the BlogSpot Platform & within two months I moved to WordPress 
I found blogging to be a great medium for sharing my favorite thing with the world. 
I m started writing from technology stuff and after that, i move on Programming Stuff. this will not only increase my programming skills but also it increases my  Code Optimization Ability. 
      This is How https://codingturtles.blogspot.com/ was born .


This Blogging has given me a sense of liberty that I didn't know was possible at all .  i love traveling or trying my hand dirty with code.


  • so far  i have done java certification from Ducate , 
  • PHP certification From Apron .
  • I have also Keen Knowledge in Designing (Web designing, photo designing ).
So Yeah thats all about me _____


Comments

Popular posts from this blog

C++ Program Finding The Absolute Value

#include<iostream> using namespace std; int main() { cout<<" enter any number"; cin>>num; if(num>0) { cout<<"The absolute value of number is:"<< num; } else { cout<<"The absolute value of number is :"<< -(num); } return 0; } OUTPUT Enter Any number: 2 The absolute value of number is 2

Difference between px,dip,dp and sp in Android

Difference between px,dip,dp and sp in Android MEANING px   -> It stands for pixel and has a same meaning to the resolution of the screen density. it corresponds to the actual pixel in the screen. dip ->Dip and dip both are one and the same thing.It stands for density independent pixel.It is dependent on physical intensity pixel of screen. sp  It stands for scaled pixel. USAGE px It is used with the images to resize the image.used to fit the image to screen and change the size of the image.