Posts

OUR 45 DAYS PLAN

Image
What we are going to do in the next 45 days? Are you thinking this, yes I am also thinking about this and at this time 1:10 AM I am going to write this -> 1. Learn  first basics of C and then move to the advanced level 2. Start solving problems on codechef  . 3. There are more then 180 question's on Codechef for beginners so you have to solve 5 problems per day. 4. Learn Data structure and algorithm along with C. 5. The notes and video on C, Data structure are available soon.  keep following the blog for further information.

GOOGLE AAD CERTIFICATION

Image
What happens if an MNC provides you a certificate, you know how much it valuable for you just read the given  FAQ. What is Google AAD and is it helpful? Google AAD stands for Associate Android Developer and it is more helpful for your resume and if you are interested in the android development  What is the Eligibility and age requirements and further also? If you are under 13, you are not eligible to take the exam or to become certified. If you are between 13-17 years of age, you may test and receive certification with parental consent. If you are participating in a location that requires by law a lower minimum age for entry into such programs, then the minimum age limit for that person will be the stated minimum required age. Individuals 18 years or older are eligible for certification without any age-related restrictions. You must use the latest version of Android Studio to complete the Associate Android Developer Certification Exam. What ...

The best way to read and store a 12-digit number

Image
The best way to read and store a 12-digit number #include<stdio.h> int main() {   unsigned long long int a;   printf("enter 12 digit number");   scanf("%llu",&a);   printf("number is %llu",a);      } OUTPUT->

Array in C#

Image
Array in C#  using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MYPROJECT.startup {         class startupday1         {         static void Main()         {             int[] arr = new int[4];             arr[0] = 1;             arr[1] = 21;             arr[2] = 31;             arr[3] = 43;             Console.Write("\n"+arr[0]);             Console.Write("\n"+arr[1]);             Console.Write("\n"+arr[2]);             Console.Write("\n"+arr[3]);             Console.ReadLine();       ...

Input and output in C# by lay method

Image
Input and output in C# by the lay method using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MYPROJECT.startup {   class startupday1   {   static void Main()   {             Console.Write("enter name\n");             string name=Console.ReadLine();             Console.Write("the name is {0}",name);             Console.ReadLine();         }  } } OUTPUT

Input and output in C#

Image
Input and output in  C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MYPROJECT.startup {         class startupday1         {         static void Main()         {             Console.Write("enter name\n");             string name=Console.ReadLine();             Console.Write("the name is " + name);             Console.ReadLine();         }  }  } OUTPUT

Printing Hello World in C#

Image
             Printing Hello World in C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MYPROJECT.startup {         class startupday1         {         static void Main()         {             Console.Write("Hello World");             Console.ReadLine();         }  }  } OUTPUT->