Skip to main content

Posts

Showing posts from 2021

Array Data Structure

Array Array is the most used data structure . Array structure helps us to store data in linear order.In this blogpost we are going to learn about arrays and different operations performed on arrays using various algorithms. We are going to see Row Major and Column Major Matrix , Sparse Matrix and Representation of Sparse Matrix , Different types of Sorting Techniques ,like bubble, Insertion,Merge,Quick sort , Different Searching Techniques like Linear Search and Binary Search . Please take a help of following menu to jump on specific topic Introduction to Arrays Row Major and Column Major Sparse Matrix and Representation of Sparse Matrix Sorting Techniques:- Bubble, Insertion, Merge, Quick Searching Techniques:- Linear search, Binary Search what is Array Array is a collection of elements of similar data type. Array is a fixed size sequential collection of elements of same data type that share a common name. An Array is a derived data type. All elements of Array

Data Structure

Data Structure Data and structure forms Data Structure . we are arranging data inside the memory logically. this is not a real data structure we implement in physical memory. but we logically arrange data inside memory using various structures which are usefull to do operations on the data. data Structure allows us to perform various operations like inserting, deleting, traversing, searching etc. we can perform number of operations.data structure helps to build scalable applications. world's top companies making use of data structure and making billions. worlds biggest search engine like Google focuses more on data structure , algorithm skillset.facebook uses graph data structure to manage your and your friends post. data Structure gives us flexibility to handle big data easily. in simple words arranging information/data in specific structure. we have different types of structures like Array,linkedlist,stack, queue,graph,tree. many times we have questions like why we have to us

array in c programming example | checking equality

 Lets see given number match with array elements or not. If it's matched print match found. If it's not print match not found. In this c program we are going to use array. We are writing c program in the following manner.  See the code Here is the output of above code. Also Read C program to Check Given number is prime or not.    Learn How to use IF condition in c program Read in deep what is the software exactly

Happy birthday Hardik Pandya | In C programming

  Happy birthday Hardik Pandya . Now you are  28 years old. Great achievement you have. Let's we want to talk more about Hardik pandya. He is great cricketer. Pandya is awesome. In this Blog Post we are going to wish pandya " Happy birthday using C program". Let's tune with us till end. Now we have to wish pandya, so we are going to use printf () function printing message to pandya as " Happy birthday Hardik pandya Now you are 28 years old". Hardik pandya was born on 11 October in 1993. Now we are going to declare a variable called as current_age = 2021 - 1993. It calculate current age Of Hardik pandya. See the "Happy birthday pandya" using c programming. If you liked this Blog Post then don't forget to share with your computer science learning friends. Once again " Happy birthday Hardik Pandya sir". Read also Happy Rakshabandhan wish using C program Friendship day 2021 greetings in C

Software Definition, computer languages used to create softwares

Welcome in the World of Software Explore software using following menu list Software Introduction Define Software Software Examples Programming languages used for creating softwares What is Software ? Awesome ! You have amazing question " What is the software ? ". Many of you think that it's a simple term , But it's not a term but it's a big industry. Billions of dollars market . In this covid19 pandemic software industry helped us to connect each other through video, audio calls. Social media channels given us opportunity to share our thoughts easily with wider audience. There are so Many applications of softwares. Software help us in each every field. Software makes our work easy. Software help us to share messages, write notes etc. Many of you asked your teachers about softwares. Maybe ! They gave you the answer to this Question. But that was not sufficient for you to understand software. Do you know why ? Because many teachers just

Happy Rakshabandhan 2021 wish using c program

D id you know How to wish your sister and brother on this Raksha bandhan 2021 using c program. Yes ! We can wish our brothers and sisters by doing coding in c. Here is the code you should look. August 22 is the Rakshabandhan day. It's very important event where sister gives protection to her brother using " Rakhi" which is threade Decorated with various shiny materials. "Rakhi" is the worlds biggest security provided by sister to brother. This day brings family members , friends together. Overall Rakshabandhan is awesome event. In the above c program we used char data type. which is array of character. means they are strings. We declared following array of characters or string array. Brother, sister, message are the most importantant array of character and remained two are wishword and startword. wishword Array contain group of words which are following : fabulous, happy, sweet great etc. These are the word which makes you wishes standout. startword is the

How to use IF condition in C

Did you know conditions are very essentials component of programming. Without conditions we can't able to perform critical task such as identifing which one greater or small, on or off etc. We can't able to compare without conditional statement. In this blogspot we are going show you how to use IF condition in C programming. In above c program we declared header file stdio then main() function and inside the curly bracket first of all we declared two variables that is int a and int b. Then assigned 10 and 20 value to a and b. Now we have to check which number is greater. Here is the need of conditional statement. Let's use IF condition . IF condition is the most popular conditional statement. let's write If() and inside the simple bracket add this logic ( b > a ) . Which means b is greater than a. When this condition is true then print b is greater. Note that after declaration of IF condition Don't forget to add Curly brackets. Now check output and output i

Friendship day 2021 | greetings

Celebrate this year international friendship day with computer programming languages. Send greetings to your friends by writing a block of code using C,C++, python etc. If you and your friends are interested in tech and computer science then it's one of the best way to wish your friends by sending a block of code through whatsapp message, status, instagram post, facebook post and story, instagram reels etc. Now we will discuss how you will write your code to wish your friend on friendship day 2021. Friendship day 2021 greetings using c program. Friendship day 2021 greetings using cplusplus program Friendship day 2021 greetings using python Program. At last we wish you a very happy friendship day to World citizens. Enjoy celebrate this friendship day online ,using digital greeting cards and art. Hope you like our Idea for greetings on this 2021 friendship day

MCQ Questions on C programming

Pune University published timetable of exam for first year students. Students Of BCA , BSC.CS, BSC in Data science , BBA CA etc. All UG exams going to start in August. Due to covid19 pandemic this year FY exams are starting late. Pune University setup all UG exams in online mode. So, best of luck for exams. In this post we are going to share with you c programming questions and answers Which helps you to prepare for C Programming paper. Most important topics in c programming exams are preprocessors, structures, pointers, strings etc. List of chapterwise MCQ of advanced c MCQ Questions on preprocessor MCQ Questions on structure MCQ Questions on Pointer MCQ Questions on string MCQ Questions on advance features MCQ Questions on file handling We hope that All above MCQ Questions will help you in advance c programming exam.

check number is prime or odd or even using c program

Here is the c program to check if the user entered number is prime ,even and odd. These few lines of code solve three problems. In the above program we used integer type num variable for storing user entered numbers. Then we used the IF condition statement. That's all. IF condition for even number In the First IF statement we have a logic. If the number is divided by two then the reminder should be 0 then the number is an even number else not an even number. That simple logic is implemented in the first if statement. IF condition for odd number In the second IF statement we Implemented odd number logic. We identify odd numbers just by making little change in even number logic. If the number is divided by two then the reminder should not be a zero. Then the number is odd. That's simple logic used to identify whether a number is odd or not an odd number. IF condition for prime number In the third IF condition we implemented the logic of the prime number. In this IF

Networking and Security

Security refers to providing a protection to computer system. Computer system must be protected against unauthorized access, malicious access to system memory, viruses, worms etc. A security goals defines the operations that can be executed by a system while still preventing unauthorized access. Security Requirements The main security requirements are Authorization : It allows to access for those users, which are related to the system. Authentication : It refers to verifying each user of the system. OS generally authenticate users using username/password, user card, finger print, eye retina etc. Privacy/Confidentiality Ensure that personal information is not being accessed by unauthorized parties. Integrity Ensuring that the data has not been tampered with. Unix system provides a special login name for the exclusive use of the administrator called as root. Its password is generally set at the time of installation of the system and ha

Usefull R Commands

Most useful R commands You should know right Now. Start learning one by one. help() #give help regarding a command, e.g. help(hist)  c() #concatenate objects, e.g. x = c(3,5,8,9) or y = c(”Jack”,”Queen”,”King”) 1:19 #create a sequence of integers from 1 to 19  (…) #give arguments to a function, e.g. sum(x), or help(hist)  […] #select elements from a vector or list, e.g. x[2] gives 5, x[c(2,4)] gives 5 9 for x as above matrix() #fill in (by row) the values from y in a matrix of 4 rows and 3 columns by giving #m = matrix(y,4,3,byrow=T)  dim() #gives the number of rows and the number of columns of a matrix, or a data frame head() #gives the first 6 rows of a large matrix, or data frame  tail() #gives the last 6 rows of a large matrix, or data frame  m[ ,3] #gives the 3rd column of the matrix m  m[2, ] #gives the 2nd row of the matrix m  = or <- #assign something to a variable, e.g. x = c(”a”,”b”,”b”,”e”)  == #ask whether two things are equal, e.g. x = c(3,5,6,3) and then x == 3 g

Introduction to OS-Operating System

What is Operating System   The Operating System is a program with the following features  An operating system is a system software that acts as an interface between the user and the computer hardware. It is an integrated set of specialized programs used to manage overall resources and operations of the computer.  It is a specialized software that controls and monitors the execution ofall other programs that reside in the computer, including application Unit    Intorduction to Opeating System all other programs that reside in the computer, including applicationprograms and other system software.  Objectives of Operating System To make the computer system convenient to use in an efficientmanner. To hide the details of the hardware resources from the users.To provide users a convenient interface to use the computer system. To act as an intermediary between the hardware and its users, makingit easier for the users to access and use other resources.  To manage the resources of a computer sy