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->

Passing value by reference method in C#

Image
Passing value by a reference method 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 y = 0;                          func(ref y);                 Console.Write("new value is {0}\n", y);                 Console.Write("new value is {0}\n", func(ref y));                 Console.ReadKey();              }              static int func(ref int x)           ...

Passing value without reference in C#

Image
      Passing value without reference 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 y = 0;                          func( y);                 Console.Write("new value is {0}\n", y);                 Console.Write("new value is {0}\n", func(y));                 Console.ReadKey();              }              static int func( int x)         ...

Introduction to methods in C#

Image
   Introduction to methods 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("sum is {0}\n", um("Piyush","jaiswal"));             Console.Write("sum is {0}\n",um(15,55));             Console.Write("sum is {0}\n",um(24.6, 24.4));             Console.ReadKey();        }         static int um(int x, int y)         {             int sum = x + y;             return sum;         }         static double um(double x, double y) ...

To find sum of number using For loop in C#

Image
To find the sum of a number using For loop 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 number");             int n = int.Parse(Console.ReadLine());             int sum = 0;             int rem;                         for(n=n;n>0;n=n/10)             {                 rem = n % 10;                 sum = sum + rem;                 }          ...

To count number of digit in C# using while Loop

Image
To count number of digit in C# using while Loop 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 number");             int n = int.Parse(Console.ReadLine());             int count = 0;             while (n > 0)             {                 n = n / 10;                 count++;                              }                         Console.Wr...

BCA vs BTECH

Image
Bachelor of Computer Applications (BCA) is a three-year undergraduate degree course in the field of computer applications/computer science. After BCA the students can do further studies as MCA master in computer application. It is a common degree for CS/IT in Indian universities and is an alternative to the engineering counterpart, BE/BTech in Computer Science and Engineering/IT which takes 4 years. It is a technical degree that prepares students for a career in the field of computer applications and software development                                                     This is in contrast to a  Bachelor of Science in Information Technology  which is a  bachelor's degree  typically conferred after a period of four years of an undergraduate course of study in  Information Technology  (IT).  AFTER 12TH. ...

Programme to find divisible sum pairs in array.

Image
                                                        #include<stdio.h> int main() {     int arr[100],i,j,n,count=0,a;                          Programme to find divisible sum pairs in the array.                             #include<stdio.h> int main() {     int arr[100],i,j,n,count=0,a;     printf("enter number you want to enter in array and the divisor");  /* Lets enter 6 and 3 */       scanf("%d %d",&n,&a);     printf("enter elements ") ;     /* lets enter  1                                       ...

C# language

Image