Posts

Showing posts from March, 2022

Introduction To Data Science Free E-Book.

Image
Hey, guys today after a very long time, I am uploading Blog because right now I am very busy because many things. Right now I am very busy because my exams are about to come, festivals have also come in between and I was also doing some courses, that's why the blog came late. Sorry for this... Technology is getting advanced every day, that's why a lot of new sectors are also coming in front of us. Data science is also a new sector which has come before us due to the advancement of technology. Today in this blog I am going to give you a free e-book which I myself have written "Introduction to Data Science". In this book I have discussed some basic concepts of Data Science. I hope you all like this book and get to learn something. Book Download:-  "Introduction To Data Science" By Aditya Suman

My Resume / Achievements.

Image
Resume. This is my Resume and Achievements that I have completed so far... Achievements. Google Digital Workshop "The Fundamentals of Digital Marketing" HubSpot Academy "Digital Marketing" Sales Virtual Experience "By Red Bull" Google Digital Analytics "By Google" State Government of Bihar "NATIONAL SERVICE SCHEME" Advance Diploma in Computer Applications "By MANEE Computer Institute" JAVA fundamentals  "BY MANEE COMPUTERS"  Accounting Fundamentals "By TATA CONSULTANCY SERVICES" Cyber Security "By VERZEO" Cyber Security Internship "By Microsoft Associate with Coincent" "By National Service Scheme (NSS)" Cyber Security Internship "By VERZEO" Certificate Of Cybery. Certificate of Cybery "Introduction to IT & Cybersecurity" Masai "Basics of Android App Development" Masai "Basics Of Web Development" Great Learning "Types of Cyber...

E-Book on Cyber security.

Image
  Hey, learners in this world as we are moving forward in this era of technology, cyber crime is also increasing.  To Protect our self from this technological threate we all must have to know about "Cyber Security". But to know all the basics about Cyber Security is very costly and you don't know the right path. That's why today I am giving you a Free E-Book Written By me "Types Of Cyber Security" In which you are able to know some basic concepts about Cyber Security.  Download From Here:-  My E-Book On Cyber Security. If You learn anything from this E-Book Then don't forget to share this book with your friends and family.

C programming Questions.

Image
  Hey learners are you a student of BCA? Or Is there any student who has exams of programming. If yes then you are  If yes, then you have come to the right place, in this post I have given top 9 questions to all of you, which are asked in any exam related to C programming. So now everyone must prepare these questions for Examinations. 1. Why C is known as the functional language. Show how functions are used as building block in C. 2. With example illustrate the different types of operators available in C language. 3. Differentiate between: (i) Printf() and Scanf() (ii) getchar() and putchar() (iii) #include and #define 4. Write about the different decision making structures with examples. 5. Write a program in C for determining whether a number is a prime number or not. 6. Write a C program for computing the GCD of two integers M,N. 7. Write a program in C to generate the sum S of the following series upto N terms, where N is to be supplied at runtime. S=1+2+3+4+5+....

Basic concepts of programming.

Image
Today we are going to learn some basic concepts of programming this concepts are applicable on all programming languages.  So, Lets begin....   Basic Concepts of Programming. *Variable. It is a symbolic name or reference to some kind of information. A variable is a virtual container whose value can  change over a period of time. int roll = 10; // roll is a variable *Conditional Statements. These are expressions that ask the program to determine if a variable is true or false. There are two possible ways: 1. True – Action1 2. False – Action2 *Looping and Iteration Iteration is any time a program repeats a process or sequence. *Datatypes Data types help classify what information a variable can hold and what can be  done with it. Numbers Decimal  Booleans Characters Strings *Functions These are self contained modules of code that accomplish a particular task. Methods with no return type : public void add(int num1, int num2){ int sum = num1 + num2; System.out.p...