Posts

Program for string function strlwr() in c programming language

/* Program for string function strlwr() in c programming language   */ #include<stdio.h> #include<conio.h> #include<string.h> void main() {   char str1[15];   clrscr();   puts("Enter your string in Upper case :");   gets(str1);   puts("\nString in lower case :");   strlwr(str1);   puts(str1);   getch(); } =================== OUTPUT:- Enter your string in Upper case : INTERNET                                                                                       ...

Program for string function strlen() in c programming language

/* Program for string function strlen() in c programming language .*/ #include<stdio.h> #include<conio.h> #include<string.h> void main() {   char str1[20];   int length;   clrscr();   puts("Enter your string :");   gets(str1);   length=strlen(str1);   printf("The length of string is : %d",length);   getch(); } =============== OUTPUT:- Enter your string : Linux                                                                           The length of string is : 5

Program for string function strcat() in c programming language.

/*C Program for string function strcat() in c programming language.*/ #include<stdio.h> #include<conio.h> #include<string.h> void main() {   char str1[20],str2[20];   clrscr();   puts("Enter your string :");   gets(str1);   puts("Enter another string :");   gets(str2);   puts("\nThe previous entered string are :");   puts(str1);   puts(str2);   strcat(str1,str2);   puts("\nStrings after concatenation are :");   puts(str1);   getch(); } ============================ OUTPUT:- Enter your string : Windows                                                              ...

Program for string function strcpy() in c programming language

/*C Program for string function strcpy() in c programming language*/. #include<stdio.h> #include<conio.h> #include<string.h> void main() {   char str1[20],str2[20];   clrscr();   puts("Enter your strings : ");   gets(str1);   puts("Enter another string :");   gets(str2);   puts("\nThe previous entered strings are :");   puts(str1);   puts(str2);   strcpy(str1,str2);   puts("\nAfter copying strings are :");   puts(str1);   puts(str2);   getch(); } =============================== OUTPUT:-   Enter your strings : c program                                                        ...

C Program to demonstrate string declaration and initialization

//C Program to demonstrate string declaration and initialization. #include<stdio.h> #include<conio.h> void main() { char mystring[50]="Learn c programming language"; clrscr(); puts(mystring); getch(); } ======================= Output: - Learn c programming language

Show that the orthogonal complement of w is a subspace of v.

Image
B.Sc III [Semester VI  (Paper-XI) ] Unit - 4  Inner product spaces 

The order of a cyclic group is equal to the order of any generator of the Group.

Image
B.Sc. II [ Semester - IV (Paper - VII ) Unit - 1   [Some special groups ]

If a is a generator of a cyclic group G, then a-1 is also a generator of G.

Image
B.Sc. II [ Semester - IV (Paper - VII ) Unit - 1   [Some special groups ]

solve quiz Ravi aur Rohan ki Current age kay hai ???

Q:-  Ravi  ki current age     Rohan   ki current age k double se 8 years kam hai.         Ravi  aur   Rohan   ki current ages ki total 25 years hai.        4-year pahlay   Rohan   ki age   Ravi   ki age se 3 years kam thee.        tw   Ravi   aur   Rohan    ki Current age kay hai? ================================== Q:-  रवि की current  age  रोहन   की current  age के दुगना से 8 years  काम हैं।         रवि और रोहन की current ages की total 25 years हैं।         4-year पहले रोहन की age रवि की age से  3 years कम  थी।         तव रवि और रोहन की current  age क्या है ?  ====================== Answer:-   Let       Ravi    ...

B.Sc. II year all topics.

Image
B.Sc. II year  B.Sc. II [ Semester - IV (Paper - VII ) Unit - 1   [Some special groups ] (1) Click here👇    Click here 👉    (2)     Every cyclic group is abelian. Click here 👉  (3)   If a is a generator of a cyclic group G, then a-1is also a generator of  G. Click here👉  (4)   The order of a cyclic group is equal to the order of any generator of the          Group.  Note:-                     If you are seeing it on mobile then please Enable Desktop site For better experience... To Enable desktop site... 1)  tap on the 3 dots located in the top right corner of your screen. 2)  tap on " Desktop site".

Let a be the generator of a cyclic group G such that o (a) = n . Then For m ∈ Z , am = e  m ≡ 0 (mod n ) In general , ar = as  r ≡ s (modn ) for r , s ∈ Z .

Image
B.Sc II [ Semester  IV (Paper - VII ) Unit - 1   [Some special groups ] Order of a generator of a cyclic group :- 

Konigsberg Bridge Problem

Image
Konigsberg Bridge Problem :-                                    In the eighteenth century good citizens of Konigsberg, capital of   Eastern Prussia (   now renamed kalningrad and in West Soviet Russia ) would amuse themselves with the following puzzle. Through the city flowed the lovely river Pregel, formed two islands C, D ( C is kneiphof island   ) were connected to each other and to the banks A and B with seven Bridges (known as Green, merchant’s, Blacksmith’s High, wooden, connecting and Hone as shown in fig. (a).                           The problem was to start at any of the four land areas of city, A, B, C or D, walk   over   each   of   the ...

Show whether the following graphs are isomorphic or not.

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