Posts

How to find the incidence matrix . (graph Theory )

Image
how to  Find the incidence matrix for the following graph What is the Incidence Matrix, Example of an incident matrix? B.Sc III [Semester - VI (Paper-XII) Graph Theory  Matrix Representation of Graph 

How do I connect my mobile hotspot to my computer wirelessly

Image
You can connect mobile internet to your pc without USB cable T o connect mobile hotspot to your pc ( desktop ) you need USB adopter. Then you have to install USB adopter driver in your computer. After that… Turn on mobile hotspot In the right hand on the taskbar, you will see wifi symbol       you have to click on it Then you will see your mobile hotspot name. Click on that name Then you have to Enter the password of your hotspot. Now you can use your mobile internet on your computer. 

How to connect mobile internet to computer with mobile hotspot without cable

Image
You can connect mobile internet to your pc without USB cable T o connect mobile hotspot to your pc ( desktop ) you need USB adopter. Then you have to install USB adopter driver in your computer. After that… Turn on mobile hotspot In the right hand on the taskbar, you will see wifi symbol       you have to click on it Then you will see your mobile hotspot name. Click on that name Then you have to Enter the password of your hotspot. Now you can use your mobile internet on your computer. 

coronavirus can be transmitted in hot weather,area

COVID-19 virus can be transmitted in areas with hot and humid climates:                      the COVID-19 virus can be transmitted in ALL AREAS, including areas with hot and humid weather. Regardless of climate, adopt protective measures if you live in, or travel to an area reporting COVID-19.                          Your normal body temperature remains around 36.5°C to 37°C, regardless of the temperature of your bath or shower. Actually, taking a hot bath with extremely hot water can be harmful, as it can burn you.                        The best way to protect yourself against COVID-19 is by frequently cleaning your hands and do not touch your eyes, mouth, and nose . By doing this you eliminate viruses that may be on your hands and avoid infection that could occur by then touching your eyes, mouth, and nose. Please check this for more information form :( World HealthOrganization ) Coronavirus disease(COVID-19) advice for the public:- https://www.who.int/em

// Write a program to find the sum of an array of 10 Numbers

// Write a program to find the sum of an array of  10 Numbers Write a program in C to enter 10 digits in 1d array and display the total sum of those digits...       In this program, we will take 10 values by the user and we will return the sum of the values which user have Entered by  using a one-dimensional array #include<stdio.h> #include<conio.h> void main () { int a[10],i,s=0; clrscr(); printf("Enter 10 numbers\n");    for(i=0;i<10;i++) scanf("%d",&a[i]);    for(i=0;i<10;i++)    s=s+a[i]; printf("sum is %d",s); getch(); } OUTPUT:- Enter 10 numbers 10 9 8 7 6 5 4 3 2 1                                                             sum is 55                                                                       

A connected graph G is an Euler graph iff every vertex of ‘G’ is of even degree.

Image
B.Sc III [ Semester -VI ( Paper-XII) ] Graph Theory 

Prove that any two simple connected graph with ‘n’vertices all of degree two are isomorphic.

Image
B.Sc III [ Semester -VI ( Paper-XII) ] Graph Theory 

A connected graph G is an Euler graph iff it can be decomposed into circuit .

Image
B.Sc III [Semester - VI (Paper-XII) Graph Theory 

Operation on Graphs

Image
B.Sc III [Semester - VI (Paper-XII) Graph Theory      Operation on Graphs :- 

Let G1 and G2 be any two graphs then Union , Intersection and ring sum of these graphs as shown below G1∪ G2 , G1∩ G2 , G1 + G2

Image
B.Sc III [Semester - VI (Paper-XII) Graph Theory 

Using Gram-Schmidt orthogonalisation process, orthonormalise the LI subset { (1,1,1) , (0,1,1) , (0,0,1) } of V3 .

Image
  B.Sc III - [ Semester - VI (Paper-XI ) ] Unit - 4 Inner product spaces  Gram-Schmidt orthogonal process example

All c programs

Simple program in c                     Click on it๐Ÿ‘‡ Write a program to find Hello word Write a program to find the sum or addition of two numbers C program to find the  area of the circle in c language C program to convert meter into centimeter . Array in c            Click on it๐Ÿ‘‡ C program to read and print one-dimensional array C program to print matrix  using two-dimensional array . Operators in C             Click on it๐Ÿ‘‡ C program to demonstrate arithmetic operators C program to demonstrate the working of relational operators C program to demonstrate the working of logical operators C program to demonstrate the working of assignment operator C program to demonstrate the working of increment and decrement operator C Program for the   conditional operator C program to demonstrate bitwise operator Controlled structures in C            Click on it๐Ÿ‘‡ C program to check whether a given number is Even or Odd C Program

Program for string function strset() in C programming language

/*Program for string function strset() in C programming language*/ #include<stdio.h> #include<conio.h> #include<string.h> void main() {   char str1[20];   clrscr();   puts("Enter your string :");   gets(str1);   puts("string after set function :");   strset(str1,'*');   puts(str1);   getch(); } ================= OUTPUT:- Enter your string : windows                                                                          string after set function :                                                      *******  

Program for string function strrev() in c programming language

/*Program for string function strrev() in c programming language*/ #include<stdio.h> #include<conio.h> #include<string.h> void main() {   char str1[20];   clrscr();   puts("Enter your string :");   gets(str1);   puts("String after reverse :");   strrev(str1);   puts(str1);   getch(); } ================= OUTPUT:- Enter your string : system                                                                           String after reverse :                                                           metsys                                                                           

Program for string function strupr() in c programming language

/*Program for string function strupr() in c programming language */ #include<stdio.h> #include<conio.h> #include<string.h> void main() {   char str1[10];   clrscr();   puts("Enter your string in lower case : ");   gets(str1);   puts("String in upper case : ");   strupr(str1);   puts(str1);   getch(); } ========================= OUTPUT:- Enter your string in lower case : mathematics                                                                     String in upper case :                                                          MATHEMATICS