technicalgyanweb
technicalgyanweb
Untitled
31 posts
Don't wanna be here? Send us removal request.
technicalgyanweb · 3 years ago
Text
Hello World Program in C
Tumblr media
First program in C Input #include int main() {      /* my first program in c */     printf("Hello World! ");     return 0; } Output Hello World! #include :- इसको preprocessor command कहते है जो हमारे program में header file को include करता है। #include :- इसको preprocessor command line कहते है। इसमें (header file है ) header file वह फाइल होती है जो हमारे program में पहले से ही defined हो बस उन्हें program में import करना पड़ता है। हम इसे ऐसे समझते है जैसे यदि हमे चाय बनानी है तो उसमे जो raw material का use हम करेंगे (shakar , चाय पत्ती, दूध ) इनको हम खुद नहीं बनाते है market   से purchase करते है। ऐसे ही जब हम कोई program बनाते है तब हमे कुछ function expression की जरुरत होती है जिसे हम खुद नहीं बनाते वह पहले से ही C developer ने बनायीं है। जिसको हमे अपने use में लेने के लिए include करते है। int main :- int main() एक function है जिसे हम program का enterance भी बोलते है क्युकी हमारे program की शुरुआत यही से होती है। यदि किसी भी syntax के पीछे round bracket लगा हो () उसको function बोलते है। और जो हमारे program में curly bracket है .{} यह main function की body है हम जो भी code लिखते है इसे main body के अंदर ही लिखते है। comment :- /*......*/ इसे हम comment बोलते है इसका use हम अपने लिए करते है की हम इस line में क्या कर रहे है यह बस हमारे समझने के लिए होता है। इसको compiler ignore कर देता है। printf(""); :- printf("") एक function है  जिसे use हम हमारे program में message को print करने का काम करता है। ऊपर जो हमने header file include की है वह इसीलिए की है हम printf function का use कर सके। और last में हमने (semi colon) ; का use किया है semi colon यह बताता है की हमारा statement  यहाँ पर end हो गया है। जैसे हम english में sentence ख़तम होने पर .(dot) का use करते है। return 0; :- return 0 का मतलब है यहाँ हमारा program end हो रहा है।  मतलब हमे इसके आगे कोई भी value return नहीं करनी है। Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Derived Data Type in Hindi
Tumblr media
Arrays :- Array ka use hum bahut sare data ko (collection of data) bahut sare variable me store karne ke liye karte hai jiska name same hota hai. basically array ek chain hai bahut sare variable ki  jiska datatype ek hi hota hai array ki indexing humesha 0 se start hoti hai. 0               1        2            3 40 60 30 10 Declaring Array :- Array declare karne ke liye hume compiler ko do cheez batana jaruri hota hai. pahali ki hum array me kis type ki value store karenge eg:- (int, char, float, string) aur dusri array ka size kitna hoga jaise hume kisi student ke 5 subject ke marks store karna hai toh hume array ka size 5 declare karna hoga. square bracket ke ander hum size defined karte hai yadi array ke name ke sath datatype bhi defined ho toh iska matlab array size bata raha hai. aur yadi array name ke sath datatype na likha ho toh matlab array indexing bata raha hai. Syntax :- datatype array name int marks= 40, 60, 30, 10;    (array size bata raha hai) marks= 10;                                  (array indexing bata raha hai ki 10 kis index par store hai) marks= 30; Types of Arrays :- In C programming arrays are two types - One Dimensional Array - 2 Dimensional Array (Multidimensional Array) - One Dimensional Array :- One Dimensional Array ek chain ki tarah add hota hai jisme ek block dusre block se add hota hai aur dusra block teesre se add hota hai.    int roll - 2 Dimensional Array :- 2 Dimensional Array me hum jo size bracket hota hai woh ek se jyada add kar sakte hai.      int roll   number of rows , number of columns . Initializing 2 D array :- int a = { { 1, 2, 3, 4 } {5, 6, 7, 8 } { 9, 10, 11, 12 } }; or int a = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; One Dimension Array Program #include int main()     {               int n, i, j;               for(i=0; i Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Type of Parameter In C
Tumblr media
Function call = Actual parameter Function defination = Formal parameter Types of parameter :- there are two types of parameter. - call by value - call by reference - Call by value :- यह एक parameter लिखने का तरीका है जिसमे actual parameter से value copy करके formal parameter में store कर देती है। और formal parameter में कोई भी changes होते है वह सिर्फ function defination में ही होते है इससे actual parameter पर कोई effect नहीं होता है।           Input - #include int swap(int a, int b); int main() {     int a = 20;     int b = 40;     printf("before swaping value of a:-%dn",a);     printf("before swaping value of b:-%dn",b);     swap(a,b);     printf("after swaping value of a:-%dn",a);     printf("after swaping value of b:-%dn",b);         return 0; } int swap(int a, int b) {     int temp;     temp = a;     a = b;     b = temp;         return 0; } Output before swaping value of a:- 20 before swaping value of b:- 40 after swaping value of a:- 20 after swaping value of b:- 40 - Call by reference :- यह भी parameter list को लिखने का तरीका है इसमें हम actual parameter की value को नहीं बल्कि actual parameter की value  के address को  copy करते है और formal parameter में जाकर store कर देते है। और जो भी formal parameter में changes होते है उसका effect actual parameter में भी होता है।          Input #include int swap(int *a, int *b); int main() {     int a = 20;     int b = 40;     printf("before swaping value of a:-%dn",a);     printf("before swaping value of b:-%dn",b);     swap(&a, &b);     printf("after swaping value of a:-%dn",a);     printf("after swaping value of b:-%dn",b);         return 0; } int swap( int *a, int *b) {     int temp;     temp = *a;     *a = *b;     *b = temp;         return 0; } Output before swaping value of a:- 20 before swaping value of b:- 40 after swaping value of a:- 40 after swaping value of b:- 20 Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
User Defined Function in C (Hindi)
Tumblr media
What are function ? Function kya hote hai ? Function एक set of statement  होते है जो user से input लेकर कुछ process या calculation करके हमे output produce करके देती है। किसी भी variable के बाद round bracket लगा हो () उसी को function बोलते है function कई तरह के होते है जैसे :- main(), swap(), getch(), sum() और भी कई तरह के function होते है जिसकी अलग अलग functionality होती हमारे C programming में पहले से ही कई function होते है जिन्हे हम predefined function बोलते है। और कुछ function हम खुद बनाते है जिसे user defined function बोलते है। function को हम हमारे main function के बाहर लिखते है। Part of Functions :- - Function Defination - Function Declariation - Function Call Function Defination :- Syntax :- return_type function_name(parameter list) { body of the function } return_type :- function जो भी input लेता है और कुछ calculation करने के बाद जो भी output provide करता है , return_type उसी output का type बताता है की जो भी हमारा output आएगा वह किस type का होगा like :- int, float, String etc. function_name :- हम जो भी तरह का function बनाते है जैसे हमे ऐसा function बनाना है जिसमे दो value add करना है तो  हम function का name sum() रखेंगे ऐसे ही हमे जिस तरह का function बनाना होता है हम उसका name रख सकते है। parameter list :- हम function में जिस तरह का input लेते है उसे variable के form में parameter list के अंदर लिखते है with datatype. body of the function :- body of the function का मतलब वह process जो हम input लेकर करवाना चाहते है। int max(int a, int b); {         a+b = c; } Function Declariation :- function  declariation भी function defination के जैसा होता है बस इसमें body of function नहीं होता है। return_type function_name(parameter list) इसका use हम जब तब करते जब हम function को main function के नीचे बनाते है। और यदि हम function को main function के ऊपर बनाते है तो   हमे इसकी जरुरत नहीं होती है। Function Call :- function call का use हम तब करते है जब हमे function का useकरना होता है. compiler function call को read करेगा और वापस function defination के पास चला जायेगा और उस program को execute कर के  हमे output provide कर देगा। #include int a, b, c, n;  int sum();                                (// function declariation) int main() {     printf("enter the numbern");     scanf("%d%d",&a,&b);     printf("%d",a+b);        sum(a,b,c);                                    (// function call)     } int sum(int a, int b, int c)                      (// function defination) {    c=a+b;     }; output enter the number 20 20 40 Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Derived Data Type in Hindi
Tumblr media
Arrays :- Array ka use hum bahut sare data ko (collection of data) bahut sare variable me store karne ke liye karte hai jiska name same hota hai. basically array ek chain hai bahut sare variable ki  jiska datatype ek hi hota hai array ki indexing humesha 0 se start hoti hai. 0               1        2            3 40 60 30 10 Declaring Array :- Array declare karne ke liye hume compiler ko do cheez batana jaruri hota hai. pahali ki hum array me kis type ki value store karenge eg:- (int, char, float, string) aur dusri array ka size kitna hoga jaise hume kisi student ke 5 subject ke marks store karna hai toh hume array ka size 5 declare karna hoga. square bracket ke ander hum size defined karte hai yadi array ke name ke sath datatype bhi defined ho toh iska matlab array size bata raha hai. aur yadi array name ke sath datatype na likha ho toh matlab array indexing bata raha hai. Syntax :- datatype array name int marks= 40, 60, 30, 10;    (array size bata raha hai) marks= 10;                                  (array indexing bata raha hai ki 10 kis index par store hai) marks= 30; Types of Arrays :- In C programming arrays are two types - One Dimensional Array - 2 Dimensional Array (Multidimensional Array) - One Dimensional Array :- One Dimensional Array ek chain ki tarah add hota hai jisme ek block dusre block se add hota hai aur dusra block teesre se add hota hai.    int roll - 2 Dimensional Array :- 2 Dimensional Array me hum jo size bracket hota hai woh ek se jyada add kar sakte hai.      int roll   number of rows , number of columns . Initializing 2 D array :- int a = { { 1, 2, 3, 4 } {5, 6, 7, 8 } { 9, 10, 11, 12 } }; or int a = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; One Dimension Array Program #include int main()     {               int n, i, j;               for(i=0; i Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Hello World Program in C
Tumblr media
First program in C Input #include int main() {      /* my first program in c */     printf("Hello World! ");     return 0; } Output Hello World! #include :- इसको preprocessor command कहते है जो हमारे program में header file को include करता है। #include :- इसको preprocessor command line कहते है। इसमें (header file है ) header file वह फाइल होती है जो हमारे program में पहले से ही defined हो बस उन्हें program में import करना पड़ता है। हम इसे ऐसे समझते है जैसे यदि हमे चाय बनानी है तो उसमे जो raw material का use हम करेंगे (shakar , चाय पत्ती, दूध ) इनको हम खुद नहीं बनाते है market   से purchase करते है। ऐसे ही जब हम कोई program बनाते है तब हमे कुछ function expression की जरुरत होती है जिसे हम खुद नहीं बनाते वह पहले से ही C developer ने बनायीं है। जिसको हमे अपने use में लेने के लिए include करते है। int main :- int main() एक function है जिसे हम program का enterance भी बोलते है क्युकी हमारे program की शुरुआत यही से होती है। यदि किसी भी syntax के पीछे round bracket लगा हो () उसको function बोलते है। और जो हमारे program में curly bracket है .{} यह main function की body है हम जो भी code लिखते है इसे main body के अंदर ही लिखते है। comment :- /*......*/ इसे हम comment बोलते है इसका use हम अपने लिए करते है की हम इस line में क्या कर रहे है यह बस हमारे समझने के लिए होता है। इसको compiler ignore कर देता है। printf(""); :- printf("") एक function है  जिसे use हम हमारे program में message को print करने का काम करता है। ऊपर जो हमने header file include की है वह इसीलिए की है हम printf function का use कर सके। और last में हमने (semi colon) ; का use किया है semi colon यह बताता है की हमारा statement  यहाँ पर end हो गया है। जैसे हम english में sentence ख़तम होने पर .(dot) का use करते है। return 0; :- return 0 का मतलब है यहाँ हमारा program end हो रहा है।  मतलब हमे इसके आगे कोई भी value return नहीं करनी है। Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Java Constructor In Hindi
Tumblr media
what is constructor ?  constructor क्या होते है ? constructor एक  special type का  method होता  है जिसका name class के name  के तरह होता है ।और इसमें कोई भी return type specifie नहीं    होता इसका use  हम object को initialize करने के लिए करते है । जब  हम  class में  object को  define करते  है  तब  compiler by default  default constructor को  invoke कर  देता  है  class student {     student()     {     } } जैसे class का name  student  और method  का name  student  same  है इसी को constructor कहते है । Types of constructor :- constructor basically two type के  होते  है। 1. default constructor 2. parameterized constructor 1. Default constructor :-  ऐसा  constructor जिस  के  पास  कोई  भी  parameter नहीं  होता  है । बिना  parameter वाले  constructor को  default constructor  कहते  है । जब  हम  class में  object को  define करते  है  तब  compiler by default  default constructor को  invoke कर  देता  है। class student { } java  का  जो  compiler होता  है  वह  class में  by  default constructor को  add करता   है  class student {     student()     {     } } class student {     student(no any parameter )     {     } } 2. Parameterized constructor :- ऐसा  constructor जिस  में  एक  या  एक  से  ज्यादा   parameter पास  होते  है  उसे  parameterized constructor कहते  है। class student {     student(int a, int b  )     {     } } What is constructor ? The constructor is a special type of method whose name is like the name of the class. And there is no return type specifie in it. We use it to initialize the object. When we define the object in the class, then the compiler invokes the default constructor by default. Type of constructor :- There are two type of constructor. 1. Default constructor 2. Parameterized constructor 1. Default constructor :-Such a constructor which does not have any parameter. The constructor without parameter is called default constructor. When we define the object in the class, then the compiler invokes the default constructor by default. 2. Parameterized constructor :-Such a constructor in which more than one or more parameter is passed is called parameterized constructor. Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
History And Evolution Of Java In Hindi
Tumblr media
Java क्या है ? java  एक object  oriented  computer programming language है जिसे हम high level language  भी बोलते है। क्युकी  इसे  हम  आसानी  से  लिख  और  समाज  सकते   है।  java एक multiple platform and distributed programming language है इसका इस्तेमाल हम console application, web application, software development, PC बनाने के लिए करते है। java और दूसरी language की तुलना में सरल तेज और सुरक्षित programming language है आज के समय में न केबल computers में बल्कि mobile, tablets, और बाकि other electronic devices में भी java का use किया जाता है (T.V, Washingmachine,) में भी किया जाता है । वर्तमान समय की सारी software companies java को  support करती  है। java platform independent  programing language है इसका मतलब हम इसे किसी भी platform जैसे windows, linux operating पर चला सकते है।  Java का इतिहास java को 1991 में James Gosling और Sun microsystem ने develop किया था james gosling को java का मुख्य developer माना जाता है। james gosling और उनकी team ने java का पहला name 'Oak' रखा था जिसे बाद में 1995 में java  नाम दिया गया। java को develop करने का मुख्य सिद्धांत यह था की (Write Once Run Anywhere) मतलब इसे एक बार लिखा जाये और हर जगह इस्तेमाल किया जाये।   Java Versions Java Version Name Version Number Launch JDK 1.0(Oak) 1.0 January 1996 JDK 1.1 1.1 February 1997 J2SE 1.2(Playground) 1.2 December 1998 J2SE 1.3(Kestrel) 1.3 May 2000 J2SE 1.4(Merlin) 1.4 February 2002 J2SE 5.0(Tiger) 1.5 September 2004 Java SE 6(Mustang) 1.6 December 2006 Java SE 7(Dolphin) 1.7 July 2011 Java SE 8 1.8  March 2014 Java SE 9 9  September, 21st 2017 Java SE 10 10  March, 20th 2018 Java SE 11 11  September, 25th 2018 Java SE 12 12 March, 19th 2019 Java SE 13 13  September, 17th 2019 Java SE 14 14     March, 17th 2020 Java SE 15 15  September, 15th 2020 Java SE 16 16 March, 16th 2021 Java SE 17 17 September, 14th 2021   What is Java ? java is an object oriented computer programming language which we also know as high level language. Because we can easily write it and stand can. java is a multiple platform and distributed programming language, we use it to make console application, web application, software development, PC. Compared to java and other languages, it is a simple, fast and secure programming language. In today's time, it is done not only in  computers but also in mobile, tablets, and other electronic devices (T.V, Washingmachine, etc.). All the software companies of the present time support java. java is platform independent programming language, that means we can run it on any platform like windows, linux operating. History of Java. Java was developed in 1991 by James Gosling and Sun Microsystem. James Gosling is considered to be the main developer of java. James Gosling and his team had first named java as 'Oak' which was later renamed to java in 1995. The main principle of developing java was that (Write Once Run Anywhere) means, it should be written once and used everywhere. Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Java Hello World Program In Hindi
Tumblr media
Java First Program in Hindi 
Input class first1{                         public static void main(Stringargs)                        {                                 System.out.println("hello world");                        }                      } Output hello world • class :- हम java में जो भी programm लिखते है वह class के अंदर ही लिखते है। क्युकी यह OOPS के concepts को follow करता है। class को हम objects का collection कहते है क्युकी class के अंदर हम बहुत सारे object को defined करते है। class बिलकुल भी memory consume नहीं करता। यह object का blueprint or logical entity hota है। class को हम class name से defined करते है जैसे हमारी class का नाम first1 है। classfirst1{                                                     }  Public static void main(Stringargs) - Public :- Public एक acces modifier है। इसका का use हम main method को class के बहार से acces करने के लिए करते है JVM हमारे program को run करता है। but हमारी main method ही public नहीं होगी तोः  jvm program को run नहीं कर पायेगा।  - static :- main method को static इसलिए किया जाता है क्युकी हम class के object को बिना बनाये main method को acces करपये। जितने भी static member होते है वह object से deal नहीं करते है। but हम static का use नहीं करते है तोह हमे class के अंदर objects को defined करना पड़ेगा  - Void :- void एक data type है जिसको हम function के पहले लिखते है। void का मतलब हमे कोई भी value return नहीं करनी है।   - String :- String एक pre defined class होती है जितने भी Java में predefined class होती है।उनका first letter capital  होता है 'String'. args एक array type का variable है जिसका use  हम main method में कोई भी information pass कर सके इसलिए होता है। यदि हमे कोई भी information pass नहीं करना तोह भी हमे Stringargs को main method में defined  करना पड़ेगा क्युकी यह syntax का part है।  System.out.println("hello world"); - System :- System एक predefined class है जो 'Java.lang' package के अंदर defined है।  - OUT :-  out जो है print stream class का object है  - println :- println एक method है जो हमारे message को output screen पर print करता है। ln curser एक line से next line पर move करता है।   What is class in java  Whatever program we write in java, we write it inside the class itself. Because it follows the concepts of OOPS. We call a class a collection of objects because we define many objects inside the class. The class does not consume memory at all. This is the blueprint or logical entity of the object. We define class by class name like our class name is first1. Public static void main(Stringargs) Public :- Public is an access modifier. We use this to access the main method from outside the class, JVM runs our program. But if our main method will not be public then: jvm will not be able to run the program. Static:- Main method is made static because we can access the main method without making the object of the class. All the static members are there, they do not deal with the object. But we do not use static, so we have to define the objects inside the class. Void: - void is a data type, which we write before the function. void means we do not have to return any value. String :- String is a pre defined class, as many predefined classes in Java. Their first letter capital  is 'String'. args is an array type variable that is used so that we can pass any information to the main method. Even if we do not pass any information, we have to define String args in the main method because it is part of the syntax. System.out.println("hello world"); System :- System is a predefined class which is defined inside 'Java.lang' package. OUT :-  out which is the object of print stream class println: - println is a method which prints our message on the output screen. The ln curser moves from one line to the next. Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
What Is JDK, JRE, JVM In Hindi
Tumblr media
What is JDk ? JDk stands for ( Java Development Kit ) :-  JDK एक development kit है जो हमारे program को develop करता है। जिस platform पर हम हमारे program को लिखते है उसे JDk कहते है। JDk हमे वह सारे tools provide करता है जो हमे programming के लिए use होते है। programm को compile करना  , run करना  error defined करना जो भी हम हमारे progrm के अंदर करते है वह सब हम JDK के द्वारा  ही करते  है। JRE और JVM internally contain होते है JDK के अंदर।    What is JRE ? JRE stands for  (Java Runtime Environment) :- JRE जो की JDK के अंदर होता है जिसे हम Java Runtime Environment भी कहते है। JRE program को exicute करने के लिए environment provide करता है। JRE java. file को compile करके bytecode में convert करता है बाद में interpreter उसे bytecode से sourse code में convert करता है। JVM internally contain होता है JRE के अंदर।   What is JVM ? JVM stands for (Java Virtual Machine) :- JVM एक software है जो machine की तरह work करता है JVM के अंदर interpreter होता है जो bytecode को source code में convert करता है। bytecode को हम किसी भी OS (Operating System ) पर run कर सकते है। इसी वजह से हम java को platform independent कहते है।  JDK :- JDk stands for (Java Development Kit): - JDK is a development kit that develops our program. The platform on which we write our program is called JDk. JDk provides us all the tools that we use for programming. Compiling programm, running, error defined Whatever we do inside our progrm, we do all that within JDK itself. JRE and JVM are internally contained inside the JDK. JRE  :- JRE which is inside JDK which we also called Java Runtime Environment. JRE provides the environment to execute the program. JRE java. Compiles the file and converts it to bytecode, later the interpreter converts it from bytecode to source code. JVM is internally contained inside the JRE. JVM :- JVM is a software that works like a machine, there is an interpreter inside the JVM which converts the bytecode into the source code. We can run bytecode on any OS (Operating System). That's why we call java platform independent. Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Java Tokens In Hindi
Tumblr media
What is Tokens Tokens :- program के छोटे से छोटे element जिसे compiler identify करता है उसी को हम टोकंस कहते है tokens program की choti से छोटी unit होती है जिसके बिना हम कोई भी program नहीं लिख सकते  जैसे (words, syntax, special symbol, marks etc) Types of Tokens - Keywords - Identifiers - Operators  - Separators - Literals   1. Keywords :- (Keywords are reserved words whose meaning is already defined in java compiler) keywords ऐसे words होते है जिसका meaning java compiler के अंदर पहले से ही defined कर दिया है। जिसका use हम personally नहीं कर सकते है।  Examples boolean byte char double float short void int long while for do switch break continue case default if else try finally import new final volatile catch instance of public super protected class private static transient return abstract interface throws implements this extends native package synchronized throws 2. Identifiers :- Identifier हमारे program में variable का name , class का name, method का name, interface हो सकता है identifier का purpose सिर्फ identify करना है  class A { int x = 12; } यहाँ पर class name A एक identifier है जो एक class को identify कर रहा है। variable name x भी एक identifier है जो variable को define कर रहा है।  Rules of identifiers - identifier का name हम keyword name पर नहीं रख सकते है।  - identifiers case sensitive होते है।  - identifier का name हम digits से start नहीं कर सकते यह letters, underscore(-), dollar($) से start होता है।  -  identifier में हम whilespace का use नहीं कर सकते  है और इसमें (@, #, etc) special symbol का use भी नहीं कर सकते है।  3. Operators :- Special symbol को ही हम operators कहते है। इसका use हम operation perform करने के लिए करते है operators दो operands (value) के बीच में लग कर उनकी value change करते है। (2+3 = 5) six types के operators होते है।  4. Separator :- Separator का use हम statement को saperate करने के लिए करते है। separators कई तरह के होते है जैसे (), {}, , ;, : etc parantheses () parantheses का use function को call करने के लिए करते है।  braces {} curly braces का use code के block को indicate करता है।  bracket bracket का use code में array के size को defined करता है।  semi colon ; semi colon का use हम statement ending के बाद करते है।  5. Literals (Constant) :- constant भी variable की तरह होता है लेकिन constant की value को हम change नहीं कर सकते है। यह हमेशा constant रहती है। जबकि हम variable की value को change कर सकते है।    Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Java Operators In Hindi
Tumblr media
What is operators ?  Special symbol को ही हम operators कहते है। इसका use हम operation perform करने के लिए करते है operators दो operands (value) के बीच में लग कर उनकी value change करते है। (2+3 = 5) six types के operators होते है।  Types of operators - Airthmetic operators - Logical operators - Assingnment operators - Relational operators - Bitwise operators   1. Airthmetic operator :- जब दो operands के बीच में हमे (addition, subtraction, multiplication, division, remainder) find करना होता तब हम airthmetic operators का use ��रते है।  Airthmetic operators + Addition - Subtraction * Multiplication / Division   2. Logical operators :- Logical operator का use हम तब करते है जब हमे boolean value के form में result चाइये होता है। boolean value का meaning होता है true या false के फॉर्म में value चाइये हो। logical operator three type के होते है।  - AND logical operator (&&) - OR logical operator (||) - NOT logical operator (!) And (&&) :- And operator के अंदर हमारे दोनों value satisfy नहीं होती तो  and operator (false) होगा। यदि दोनों  value satify हो जाती है तो  एंड operator (true) होगा।  And logical operator && (52) false And logical operator && (5>2)&&(5>2) true OR (||) :- Or operator में यदि दो value में से एक value भी satisfy हो जाती है तो result true हो जाता है।  OR logical operator || (5>2)||(5 Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Datatypes And Variables In Hindi
Tumblr media
What is Datatypes ? Datatype value के type को  बताता है की variable में किस तरह का data store है। और उस data का size क्या है। datatype two types के होते है।  Type of Datatype :- - Primitive datatype (primary) - User defined datatype (non primitive datatype) Primitive datatype भी two type के होते है numeric or non numeric. numeric datatye भी  two type के होते है। integeric or decimal. integeric datatype के अंदर (byte, short, int, long)  होते है। और decimal datatype के अंदर (float aur double) datatype होते है .non numericभी two type के होते है (char, boolean)  User defined datatype (non primitive datatype) for type के होते है (class, interface, array, String). What is Variables ? Variable एक memory location का name होता है जहा पर हम कोई भी value store  कर सकते   है variable user defined होता है इसके अंदर हम किसी भी तरह की value store कर सकते है। variables three type के होते है।  eg :- int a = 23; (a variable hai) - local variable - static variable - instance variable - Local variable :- ऐसे variable जि��्हे हम method के अंदर और method parameter के अंदर defined करते है उन्हें local variable कहते है।  Syntax :-  Class Demo{                           public static void main(Stringargs)                          {                            int x;                        System.out.println("x is local variable");      { { 2. Static variable :- ऐसे variable जिनको हम static keyward के through class के अंदर, method के अंदर कही भी defined कर सकते है।  syntax :- Class Demo{                           public static void main(Stringargs)                          {                          static  int x;                        System.out.println("x is static variable");      { { 3. Instance variable :- ऐसे variable जिनको हम class के अंदर defined करते है।  syntax :- Class Demo{ int x;                           public static void main(Stringargs)                          {                        System.out.println("x is instance variable");      { {   Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Privacy Policy
Privacy Policy for Technologygyan
At Technologygyan, accessible from https://technologygyan.co.in/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Technologygyan and how we use it. If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us. This Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Technologygyan. This policy is not applicable to any information collected offline or via channels other than this website. Our Privacy Policy was created with the help of the Free Privacy Policy Generator.
Consent
By using our website, you hereby consent to our Privacy Policy and agree to its terms.
Information we collect
The personal information that you are asked to provide, and the reasons why you are asked to provide it, will be made clear to you at the point we ask you to provide your personal information. If you contact us directly, we may receive additional information about you such as your name, email address, phone number, the contents of the message and/or attachments you may send us, and any other information you may choose to provide. When you register for an Account, we may ask for your contact information, including items such as name, company name, address, email address, and telephone number.
How we use your information
We use the information we collect in various ways, including to: - Provide, operate, and maintain our website - Improve, personalize, and expand our website - Understand and analyze how you use our website - Develop new products, services, features, and functionality - Communicate with you, either directly or through one of our partners, including for customer service, to provide you with updates and other information relating to the website, and for marketing and promotional purposes - Send you emails - Find and prevent fraud
Log Files
Technologygyan follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information.
Google DoubleClick DART Cookie
Google is one of a third-party vendor on our site. It also uses cookies, known as DART cookies, to serve ads to our site visitors based upon their visit to www.website.com and other sites on the internet. However, visitors may choose to decline the use of DART cookies by visiting the Google ad and content network Privacy Policy at the following URL – https://policies.google.com/technologies/ads
Advertising Partners Privacy Policies
You may consult this list to find the Privacy Policy for each of the advertising partners of Technologygyan. Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Technologygyan, which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit. Note that Technologygyan has no access to or control over these cookies that are used by third-party advertisers.
Third Party Privacy Policies
Technologygyan's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options. You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites.
CCPA Privacy Rights (Do Not Sell My Personal Information)
Under the CCPA, among other rights, California consumers have the right to: Request that a business that collects a consumer's personal data disclose the categories and specific pieces of personal data that a business has collected about consumers. Request that a business delete any personal data about the consumer that a business has collected. Request that a business that sells a consumer's personal data, not sell the consumer's personal data. If you make a request, we have one month to respond to you. If you would like to exercise any of these rights, please contact us.
GDPR Data Protection Rights
We would like to make sure you are fully aware of all of your data protection rights. Every user is entitled to the following: The right to access – You have the right to request copies of your personal data. We may charge you a small fee for this service. The right to rectification – You have the right to request that we correct any information you believe is inaccurate. You also have the right to request that we complete the information you believe is incomplete. The right to erasure – You have the right to request that we erase your personal data, under certain conditions. The right to restrict processing – You have the right to request that we restrict the processing of your personal data, under certain conditions. The right to object to processing – You have the right to object to our processing of your personal data, under certain conditions. The right to data portability – You have the right to request that we transfer the data that we have collected to another organization, or directly to you, under certain conditions. If you make a request, we have one month to respond to you. If you would like to exercise any of these rights, please contact us.
Children's Information
Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity. Technologygyan does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records. Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Disclaimer
Disclaimer for Technologygyan
If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at [email protected]. Our Disclaimer was generated with the help of the Disclaimer Generator.
Disclaimers for Technologygyan
All the information on this website - https://technologygyan.co.in/ - is published in good faith and for general information purpose only. Technologygyan does not make any warranties about the completeness, reliability and accuracy of this information. Any action you take upon the information you find on this website (Technologygyan), is strictly at your own risk. Technologygyan will not be liable for any losses and/or damages in connection with the use of our website. From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found on these sites. Site owners and content may change without notice and may occur before we have the opportunity to remove a link which may have gone 'bad'. Please be also aware that when you leave our website, other sites may have different privacy policies and terms which are beyond our control. Please be sure to check the Privacy Policies of these sites as well as their "Terms of Service" before engaging in any business or uploading any information.
Consent
By using our website, you hereby consent to our disclaimer and agree to its terms.
Update
Should we update, amend or make any changes to this document, those changes will be prominently posted here. Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
About Us
About Us !
Welcome To Technologygyan Technologygyan is a Professional Tech Platform. Here we will provide you only interesting content, which you will like very much. We're dedicated to providing you the best of Tech, with a focus on dependability and Coding. We're working to turn our passion for Tech into a booming online website. We hope you enjoy our Tech as much as we enjoy offering them to you. I will keep posting more important posts on my Website for all of you. Please give your support and love. Thanks For Visiting Our Site Have a nice day ! Read the full article
0 notes
technicalgyanweb · 3 years ago
Text
Contact Us
Loading… Read the full article
0 notes