If Control Statement In Java - In Hindi

codeitup
3 Jun 202011:31

Summary

TLDRThe video script discusses the importance of control statements in Java programming, particularly focusing on selection statements like 'if' and 'switch'. It explains how these statements facilitate conditional execution of code blocks based on specific conditions, using examples to illustrate their syntax and application. The script aims to educate viewers on how to control the flow of execution in programming languages, emphasizing the significance of understanding these fundamental concepts for effective programming.

Takeaways

  • 😀 The video discusses the importance of control statements in programming, specifically in Java.
  • 📝 The script introduces two types of control statements: selection statements and iteration statements.
  • 🔑 It explains that selection statements, such as 'if' and 'switch', are used to execute code based on certain conditions.
  • 🔄 The 'if' statement is described as a fundamental control statement that allows conditional execution of code blocks.
  • 🔍 The 'switch' statement is mentioned as another type of selection statement, used for multiple conditions.
  • 🔄 The concept of 'if-else' is touched upon, indicating the execution of different code blocks based on whether the condition is true or false.
  • 🔄 The script also mentions the use of 'if' statements within loops for controlling the flow of iteration.
  • 🔄 The importance of understanding the syntax and semantics of control statements for effective programming is highlighted.
  • 🛠️ The video aims to educate viewers on how to use control statements to manage the flow of execution in their programs.
  • 🔄 The script suggests that understanding control statements is crucial for problem-solving in programming.
  • 📚 It implies that the video is part of a series that will delve deeper into different types of control statements and their applications.

Q & A

  • What is the main concept discussed in the video script?

    -The main concept discussed in the video script is the importance of control statements in programming languages, specifically Java, and how they manage the flow of execution in a program.

  • What are the two types of control statements mentioned in the script?

    -The two types of control statements mentioned are selection statements and iteration statements.

  • Can you explain what a selection statement is according to the script?

    -A selection statement, as per the script, is used to execute a block of code based on a condition. It allows the program to choose one of several code blocks to be executed depending on whether a condition is true or false.

  • What is the significance of the 'if' statement in selection statements?

    -The 'if' statement is significant as it is used to check a condition, and if the condition is true, the code block within the 'if' statement is executed. It is a fundamental part of controlling the flow of a program.

  • What is the role of 'switch' statement in the context of selection statements?

    -The 'switch' statement is used to select one of many code blocks to be executed. It is typically used when there are multiple conditions to check against a single variable.

  • How does the script describe the flow of execution in a program?

    -The script describes the flow of execution as sequential, where statements are executed one by one unless a control statement alters this flow based on certain conditions.

  • What is the purpose of control statements in programming as per the script?

    -The purpose of control statements in programming, as per the script, is to control the order in which statements are executed, allowing for conditional execution and repetition of code blocks.

  • What is the relationship between conditions and control statements as discussed in the script?

    -The relationship between conditions and control statements is that conditions are used to determine the flow of execution within control statements. Depending on whether a condition is met, different blocks of code may be executed.

  • How does the script differentiate between single and multiple statements in control structures?

    -The script differentiates by explaining that a single statement control structure does not require a block of code (braces), whereas a multiple statement control structure requires braces to group multiple statements together.

  • What is the importance of understanding control statements for someone learning to program?

    -Understanding control statements is crucial for someone learning to program because it allows them to create more complex and interactive programs by controlling the flow of execution based on conditions and requirements.

  • How does the script suggest one should approach learning about control statements?

    -The script suggests that one should approach learning about control statements by understanding their purpose, how they work, and their different types, such as 'if' and 'switch' statements, and then applying this knowledge in programming practice.

Outlines

00:00

🖥️ Introduction to Java Control Statements

The paragraph introduces the concept of control statements in Java programming, emphasizing their importance. It explains that control statements allow conditional execution of code based on specific conditions, contrasting them with the sequential execution of statements. The paragraph also outlines the types of control statements: selection statements (if and switch) and iteration statements (loops).

05:01

🔄 Understanding the If Statement

This paragraph focuses on the syntax and usage of the 'if' statement in Java. It describes how the 'if' statement checks a condition and executes a block of code only if the condition is true. The explanation includes details on handling single and multiple statements within the 'if' block, using braces to group multiple statements, and the importance of proper syntax to ensure correct execution.

10:02

🔧 Practical Usage of If-Else Statements

The third paragraph elaborates on the practical application of 'if-else' statements. It provides examples of how to structure conditions to execute different blocks of code based on whether conditions are met. The discussion covers nested 'if-else' statements and how the program flow can change based on various conditions being true or false, ensuring that the appropriate code block is executed.

Mindmap

Keywords

💡Control Statements

Control statements are used in programming to alter the flow of execution based on certain conditions. In the video, it's explained that they allow a program to execute certain statements only if specific conditions are met, as seen in the example where a child is allowed to play outside only if they have completed their homework.

💡Selection Statements

Selection statements are a type of control statement used to choose between different blocks of code to execute. The video describes two main types: 'if statements' and 'switch statements,' which are used to execute code blocks based on whether conditions are true or false.

💡If Statement

An 'if statement' is a selection statement that executes a block of code if a specified condition is true. In the video, the example provided shows how an 'if statement' can control the flow of the program based on a conditional check, such as verifying if a condition is met before proceeding with execution.

💡Switch Statement

A 'switch statement' allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each case. The video mentions that 'switch statements' are part of selection statements, used for executing different parts of code based on the value of a variable.

💡Loops

Loops are control statements that repeat a block of code as long as a specified condition is true. The video lists three types of loops: 'for loop,' 'while loop,' and 'do-while loop,' emphasizing their role in executing code multiple times based on given conditions.

💡For Loop

A 'for loop' repeats a block of code a specific number of times. It typically includes an initialization, a condition, and an increment/decrement statement. The video explains that 'for loops' are used when the number of iterations is known beforehand.

💡While Loop

A 'while loop' continues to execute a block of code as long as the specified condition is true. The video points out that 'while loops' are used when the number of iterations is not known in advance and depends on a condition.

💡Do-While Loop

A 'do-while loop' is similar to a 'while loop,' but it guarantees that the block of code will execute at least once. The video describes it as executing the code block first and then checking the condition, repeating the block if the condition is true.

💡Condition

A condition is an expression that evaluates to true or false, determining the flow of control statements. In the video, conditions are used to decide whether certain blocks of code should be executed, such as in 'if statements' and 'switch statements.'

💡Execution Flow

Execution flow refers to the order in which statements, instructions, or function calls are executed or evaluated in a program. The video explains how control statements like 'if' and 'switch' influence the execution flow by introducing conditional branches in the code.

Highlights

Introduction to an important concept in programming languages, specifically Java, focusing on control statements.

Explanation of control statements in Java, emphasizing their importance in programming.

Differentiation between selection statements and iteration statements in Java.

Description of the 'if' statement, including its syntax and how it is used for conditional execution.

Explanation of the 'switch' statement, its structure, and how it differs from 'if' statements.

The concept of 'case' and 'default' in the context of the 'switch' statement.

How 'if' and 'switch' statements facilitate the execution of code based on conditions.

The importance of understanding the flow of execution in programming languages.

The role of 'if' and 'switch' statements in controlling the sequence of program execution.

Discussion on the use of 'if' statements for decision making in programming.

The significance of 'switch' statements in handling multiple conditions efficiently.

How control statements can be used to implement complex logic in programming.

The impact of control statements on the readability and maintainability of code.

Practical examples of using 'if' and 'switch' statements in Java code.

The importance of proper syntax when using control statements to avoid errors.

A detailed look at the execution flow within 'if' and 'switch' statements.

The concept of nested control statements and how they affect program logic.

The role of control statements in error handling and exception management.

Encouragement for viewers to practice using control statements to enhance programming skills.

A summary of the key points covered in the video about control statements in Java.

Transcripts

play00:00

अब आधे है

play00:10

अजय को

play00:12

और फिर गाइस मेरा नाम आनंद और आप देख रहे

play00:14

हैं तो बेटा आज की इस वीडियो में हम बात

play00:16

करने वाले हैं बहुत ही इंपोर्टेंट कंसेप्ट

play00:19

झा व की जो इस जॉब में नहीं बल्कि किसी

play00:21

प्रोग्रामिंग लैंग्वेज में लेकिन कि हम

play00:22

पढ़ रहे हैं जावक इसलिए हम स्पेसिफिकली

play00:25

कहते हैं कि जावत यह बहुत ही इंपोर्टेंट

play00:26

कैंसर के बारे में और वहां से इंपॉर्टेंट

play00:29

कंसेप्ट है जावा की कंट्रोल स्टेटमेंट्स

play00:31

बेसिकली कंट्रोल स्टेटमेंट दो तरह के होते

play00:34

हैं फर्स्ट होता है सिलेक्शन स्टेटमेंट और

play00:36

दूसरा होता है यह स्टेटमेंट तो इसको हम

play00:39

पार्ट 22 पाएंगे सेलेक्शन स्टेटमेंट में

play00:41

दो चीज़ें पढ़ने है फर्स्ट का एक

play00:43

स्टेटमेंट ऑफ ट्रैक नंबर स्विच स्टेटमेंट

play00:45

वैसे ही जो लिफ्टिंग स्टेटमेंट है या जिस

play00:48

कोई रिलेटिव स्टेटमेंट फिर कहते हैं उसमें

play00:50

हमें तीन तरह के लोगों को पढ़ना होगा

play00:51

फर्स्ट उनका यह लुक सेकंड वाले लोग और 600

play00:55

लुक जो आइए वन बाय वन सबको पड़ते हैं इस

play00:59

पर्टिकुलर वीडियो में हम बात करेंगे इस

play01:01

स्टेटमेंट बारे में तो चलिए स्टार्ट करते

play01:04

हैं

play01:05

अजय को

play01:08

हुआ है

play01:10

श्रुति सबसे पहले हमें यह जानना होगा कि

play01:12

जेटली कंट्रोल स्टेटमेंट होते क्या है तो

play01:15

देखिए करतूत स्टेटमेंट का मतलब क्या होता

play01:17

है जिससे आपके पास जवाब में जितनी भी

play01:19

स्टेटमेंट आप लिखते हैं चाहे वो शुरू से

play01:21

लेकर अंत तक वह सारे के सारे स्टेटमेंट

play01:23

151 क्या करते हैं गिफ्ट करते हैं लेकिन

play01:27

कंट्रोल स्टेटमेंट समय यह फैसिलिटी

play01:29

प्रोवाइड करते हैं कि अगर आप चाहते हैं कि

play01:31

किसी का स्टेटमेंट का एक्जीक्यूशन किसी

play01:34

पार्टी कूलर कंडीशन के बीज मतलब बदल

play01:36

कंडीशन फील होता है कि नेशन थ्रू है तभी

play01:39

तो यह स्टेटमेंट एग्जीक्यूट हो अब यह फील

play01:42

नहीं होता है तो एटीट्यूड नहीं हो या कुछ

play01:44

और दूसरी जी क्या वह ट्वीट मतलब हमारा अभी

play01:47

तक का जो प्रोग्राम इन सब होता

play01:49

सीक्वेंशियल वन बाय वन सिस्टम हमारा

play01:51

कंप्लीट रॉ एक करके सारी वीडियो सफेद सारे

play01:54

के सारे अलार्म्स को जो क्या करते रहता है

play01:56

वह इंस्टीट्यूट करते रहता है जबकि अब अगर

play01:58

हमें एसिडिटी जाएंगे जिसमें क्या करना है

play02:01

कि किसी पर्टिकुलर के अनशन को चेक करना है

play02:03

और अगर वह पर्टिकुलर करने से मैच होती है

play02:05

तभी जरूर सिर्फ आप दो उसे स्टेटमेंट

play02:08

एग्जीक्यूट करना है अदरवाइज एकजुट नहीं

play02:10

तो उसके लिए जो कंसेप्ट व है कंट्रोल

play02:13

स्टेटमेंट ऑफ अकाउंट स्टेटमेंट एंड

play02:15

डेफिनेशन आफ थिस बेनिफिक इनफ्लुएंस

play02:18

स्टेटमेंट आदि यूज टू कंट्रोल है लेकिन का

play02:20

यूज किया है कंट्रोल करने के लिए किस चीज

play02:22

को तो दारू ऑफ एग्जीक्यूशंस यानि कि

play02:24

एक्जीक्यूशन के flow को ऑफ स्टेटमेंट्स इन

play02:27

र प्रोग्रामिंग लैंग्वेज यानि कि असली

play02:29

प्रोग्रामिंग लैंग्वेज से इस आपदा पर

play02:31

मांगी थी कि मैं कहता हूं कि आपको बाहर

play02:34

खेलने जाना है उसके लिए कोई कमीशन दिया कि

play02:36

अगर आपने होमवर्क कंप्लीट किया है बच्चों

play02:38

को हम चैनल क्या कहते हैं कोई टॉस लेते

play02:40

हैं वह अगर अपना होमवर्क कर लिया तभी मैं

play02:42

तुम्हें यह बाहर खेलने जाना दूंगा तो मतलब

play02:44

बाहर खेलने जाने देने का एक पार्ट कंडीशन

play02:47

है वह केमिकल यह कि अगर आपने अपना होमवर्क

play02:49

कंप्लीट किया तो तो उस तरीके के अगर

play02:52

कंडीशन की बेस पर आप किसी स्टेटमेंट से

play02:54

ट्यूशन चाहते हैं या नहीं चाहते हैं तो हम

play02:57

कंट्रोल स्टेटमेंट यूज करते हैं नाम है

play02:59

इसका कंट्रोल सिस्टम जब स्टेटमेंट के

play03:01

एक्जीक्यूशन को किसी एक पर्टिकुलर कंडीशन

play03:04

की बेस पर आप क्या करेंगे कंट्रोल करेंगे

play03:07

यूज़्वली द ऑल थे स्टेटमेंट्स आफ 10

play03:10

कि सीक्वेंस है मतलब जनरल यही होता है कि

play03:12

सारे के सारे स्टेटमेंट होते हैं वह लाइन

play03:14

पर लड़कियां होते हैं कि नहीं करते हैं बट

play03:17

लेकिन इस वी वॉन्ट टू कंट्रोल द रोल ऑफ

play03:19

एजुकेशन लेकिन अगर हम क्लासिफिकेशन को

play03:21

कंट्रोल करना चाहते हैं व्यूस वक्त

play03:24

कंट्रोल स्टेटमेंट तो हम उस केस में

play03:26

कंट्रोल स्टेटमेंट का यूज करते हैं

play03:28

कंट्रोल स्टेटमेंट को बरौली 2 पार्ट्स में

play03:30

डिवाइड किया गया यह स्पष्ट होता है कहते

play03:32

हैं सिलेक्शन स्टेटमेंट और जो दूसरा होता

play03:35

है उसे कहते हैं जो कि स्टेटमेंट्स अब इस

play03:37

सिलेक्शन स्टेटमेंट के अंदर जो पहला

play03:39

पढेंगे व है इस स्टेटमेंट और हम दूसरा

play03:41

रनिंग उसको कहते हैं स्विच और के

play03:43

स्टेटमेंट आजत कि इस लुपिन के अंदर तीन कि

play03:46

हमें पढ़ना है वह अल्लू तू आइलैंड ऑफ़ और

play03:49

लौंग और अपनी समझ में आ गए हुए कंट्रोल

play03:51

स्टेटमेंट क्या होते हैं और इन कंट्रोल

play03:53

सिस्टम की सीरीज में जो सबसे पहला कंट्रोल

play03:55

स्टेटमेंट है वह हमारा इस स्टेटमेंट तो इस

play03:58

वीडियो में जो करने वाले हैं वह हमारा ऐप

play04:00

स्टेटमेंट आ

play04:02

तो चलिए यह स्टेटमेंट की चीज को शुरू करते

play04:04

हैं और इस स्टेटमेंट जो आता है वह आता है

play04:07

सबसे पहले सलेक्शन स्टेटमेंट के अंदर

play04:09

मिक्स इलेक्शन स्टेटमेंट का मतलब क्या हुआ

play04:11

कि स्टेटमेंट का आप इलेक्शन कैंपेन है

play04:13

बेस्ट डॉक्टर पर्टिकुलर कंडीशन तो वही

play04:16

यहां पर लिखा हुआ है कि सलेक्शन स्टेटमेंट

play04:18

से होते हैं आर यूज्ड टो एग्जीक्यूट ए

play04:21

स्टेटमेंट डोंट कंडीशन इन किसी पर्टिकुलर

play04:23

कंडीशन की व्याख्या करते हैं टेंस

play04:25

प्रेजेंट करते हैं इस जीवन कमीशन हिस रूड

play04:28

एंड ऑल ई जस्ट वेंट इंसाइड टो एग्जीक्यूट

play04:30

एंड अंदर जो आपने कंडीशन दिया है वह सही

play04:33

है तभी उसके अंदर लिखकर स्टेटमेंट एडमिट

play04:36

होते हैं अदरवाइस एक्जिक्यूट नहीं होते

play04:38

हैं मतलब क्या हुआ था कि अगर कनेक्शन मैच

play04:41

किया तो कुछ दूसरे स्टेटमेंट एग्जीक्यूट

play04:42

में और अगर कमीशन मैच नहीं हुआ तो फिर कुछ

play04:45

दूसरे टेस्ट मैच के होंगे एकजुट होंगे फॉर

play04:48

एग्जांपल कि इसको इस बेसिकली यह हम तो यह

play04:50

स्टेटमेंट सेलेक्ट मन की बात करें विजय की

play04:53

बात करें यह स्टेटमेंट के ठीक है क्योंकि

play04:55

सर्वेक्षण में शिफ्ट कर दो चीज जाती यह

play04:56

आता है इस और एक आता है स्विच अभी जो बात

play04:59

करने व हित की बात करने ठीक है स्विच भी

play05:01

वही है सिलेक्शन

play05:02

को मेंटेन क्यों उसके बारे में हम दूसरी

play05:04

वीडियो में बढ़ेंगे तो अगर हम इसकी बात

play05:06

करें और इस पर सिंटैक्स नौकरी से इंटैक्ट

play05:08

होता यह का तो इस परीक्षण बहुत सारे टास्क

play05:11

होते हैं देखिए इसका मतलब ही होता है अगर

play05:14

ठीक है मतलब अगर और यह पैकेट में अपने

play05:17

कंडीशन अगर यह कंडीशन सही है तभी यहां पर

play05:20

अगर आपने एक स्टेटमेंट दिया है या एक से

play05:23

ज्यादा स्टेटमेंट दिया है तो क्या होंगे

play05:24

एकजुट होंगे यहां पर देखिए ध्यान देने

play05:27

वाली बात यह है कि यह है सिंगल स्टेटमेंट

play05:29

सिंगल स्टेटमेंट का मतलब क्या होता है कि

play05:31

इस के साथ सिर्फ एक ही स्टेटमेंट जुड़ा

play05:33

हुआ है इसीलिए हमें कली व्यास लगाने की

play05:36

जरूरत नहीं होती है मतलब ओपन कर ली बेस्ड

play05:38

अप्रोच वर्ल्ड क्लास लगाने की जरूरत नहीं

play05:40

होती है कि इस स्पेशल सिर्फ एक ही जो है

play05:43

वह स्टेट में जुड़ा हुआ है जबकि अगर आपको

play05:47

चाहते हो कि मल्टीपल कनेक्शन से के साथ

play05:49

एसोसिएट हो जाए तो आप क्या करोगे और बैक

play05:52

साइड में तो एक कंडीशन है यहां पर कल यह

play05:54

पैसे सिर्फ ऑन करो कि और यहां पर कलियुग

play05:57

के प्रभाव बंद करो इसके अंदर चैापेस्ट में

play05:59

देना चाहिए अभी तथा स्टेटमेंट आ जाओ आप दे

play06:02

सकते

play06:02

है तो यह स्टेटमेंट जो है जो कि इस गली

play06:05

मैसेज को पॉज कर लीजिए इससे आपके अंदर है

play06:08

वह तभी एक्सीडेंट होते हैं ओनली व्हेन

play06:10

इट्स जब यह दिया गया पर्टिकुलर कंडीशन

play06:13

आपका क्या होता है जो होता है अगर यह तू

play06:15

नहीं होगा तो यह सेट में जरूर एकजुट नहीं

play06:18

होंगे तो लाइक अब क्वेश्चन यह आता है कि

play06:20

यहां पर मैंने खली वर्सेस नहीं दिया तो

play06:23

क्या यह ऑटोमेटिकली जो यह स्टेटमेंट आपको

play06:25

समझेगा कंपाइलर इसके साथ हैं जी हां

play06:27

बिल्कुल यह चीज ध्यान रखिएगा कि जो भी आप

play06:30

के साथ कंडीशन लेते हैं और उसके बाद अगर

play06:33

आपने कोई भी कर ली मैसेज नहीं दिया ठीक है

play06:36

तो उसकी बात का सिर्फ एक लाइन यानि कि

play06:38

जैसे इस स्टेटमेंट के बाद का मैंने कर ली

play06:40

वैसे तो नहीं दिया है तो उसके बाद का

play06:42

सिर्फ एक लाइन है जो होता है वह इसके साथ

play06:44

क्या होता है वह एसोसिएट है होता है इसका

play06:47

मतलब यह हुआ कि अगर आप चाहते हैं कि

play06:48

मल्टीपल लाइंस को तो आपको यह करीब सेट

play06:51

करना पड़ेगा कूपन और यूज करना पड़ेगा तो

play06:53

इसके साथ यह सारे कमीशन के हो जाएंगे इस

play06:56

मतलब सारे किट में यह सोचिए हो जाएंगे यह

play06:59

ध्यान रखिएगा तो सोच से इंटैक्ट यह हुआ और

play07:02

यह

play07:02

इस प्रशिक्षण से इंटैक्ट अगर हम बात करें

play07:05

24 इंटैक्ट से इसको यूज करने तो जी हां

play07:07

बिल्कुल बहुत सारे हैं जैसे स्वस्थ दो

play07:10

हमने कर लिया तीसरा यह है कि इस अगर हम

play07:13

चेक करते हैं कि अगर यह दिया गया कंडीशन

play07:15

अगर चूर है तो यह स्टेटमेंट यह लिखा हुआ

play07:18

वेबसाइट करो और नहीं तो देखिए यहां पर

play07:21

क्रॉस नया या व होता है एडम्स का मतलब

play07:23

होता है नहीं तो मतलब अगर यह निशान क्यों

play07:25

नहीं है तो वह यह स्टेटमेंट करो

play07:28

एग्जीक्यूट करो मतलब सिस्टम मिशन के थ्रू

play07:30

रहने पर यह स्टेटमेंट एग्जीक्यूट होगा

play07:31

ऑफिस कमीशन के पास होने पर यह क्या होगा

play07:34

एक्टिव होगा तो मतलबी हो गया आपका ट्यूशन

play07:37

अरिजीत हो कि आपको कौन सेंट पॉल सेल्वा ने

play07:40

अब इसमें बिल्कुल वही ऐसी मिलता जुलता ही

play07:43

व्यवहार से इंटैक्ट हो यह भी वर्जिन टैक्स

play07:45

जिसमें सिर्फ एक स्टेटमेंट की बात हो रही

play07:46

है इसलिए कर ली बस ओपन या खली वर्सेस रोचक

play07:50

कोई कल सिर्फ नहीं था लेकिन अगर हम चाहते

play07:52

हैं कि मल्टीपल स्टेटमेंट को हम अपके साथ

play07:54

जोड़े तो हम यहां देते हैं इस यहां से

play07:56

कंडीशन यह कर ली वैसे ओपन हुआ और यह कर ली

play07:59

उसके वक्षों हुआ था मतलब यह ट्रिक

play08:02

रुपया इनके बीच में लिखेंगे चालू आप एक

play08:04

लिस्ट में लिखे 41 हजार फिट में लिखें वह

play08:07

तभी एकजुट होंगे जब यह पाठक व दिया गया

play08:09

कंडीशन क्या होगा टू होगा तो वजन यह

play08:12

स्टेटमेंट और यह स्टेटमेंट गेस कीजिए और

play08:14

भी स्टेटमेंट टो इंक्रीज ओपन कर लें

play08:16

लाइसेंस और हिस गर्ल प्रेस कर लिया इसके

play08:18

अंदर एकजुट होने वाले हैं वह दबी होने

play08:20

वाले हैं जब हमारा यह दिया गया कमीशन का

play08:22

या नहीं तो अगर यह कनेक्शन पास हो गया

play08:26

वेरिफिकेशन क्यों नहीं हुआ तो आइए इसमें

play08:28

ऐड सेक्शन में और इस इंजेक्शन के अंदर जो

play08:30

भी कुछ लिखा होगा इस ओपन कर लेगा से

play08:32

लेट्यूस क्लोज कर ली रह सकता है वह सारे

play08:35

स्टेटमेंट वन बाय वन क्या किया जाएंगे ए

play08:37

ग्रेड दिए जाएंगे ठीक है अब एक और देखते

play08:40

हैं मतलब यह है कि आपका ही तो इसी में

play08:43

क्या हो गया इसको कहते हैं नेक्स्ट स्टेप

play08:45

राम नहीं बिजली मैसेजेस को नहीं करेंगे

play08:47

इसको करेंगे इस इस लैटर मतलब क्या हुआ एक

play08:50

इसके अंदर दूसरा दूसरे इसके अंदर तीसरा तो

play08:53

हम कहते हैं अलसी व्यू आफ लाइटर मसूद सीधी

play08:56

वन बाय वन स्टेप एयरप्लेन गेस्ट देखिए अगर

play08:59

यह कंडीशन सही है तो यह स्टेटमेंट ऑफ

play09:02

गुरु नहीं तो याद रखिएगा ध्यान समझेगा अगर

play09:06

यह कंडीशन सही है तो इस स्टेटमेंट टो

play09:08

एग्जीक्यूट करो नहीं तो फिर यह लोकेशन चेक

play09:12

करो अगर यह कंडीशन चाहिए तो यह वाला

play09:14

स्टेटमेंट एग्जीक्यूट करो नहीं तो फिर यह

play09:17

राशि घंटे करो अगर यह वाला कंडीशन है वह

play09:20

सही है तो फिर इसे स्टेटमेंट टो

play09:22

एग्जीक्यूट करो अगर इन सारे करने से कोई

play09:24

भी सही नहीं मिलता है तो लास्ट में इसे अ

play09:27

फॉलो कर दो एग्जीक्यूट कर दो मतलब यहां पर

play09:30

मल्टीपल करने से चूक गए क्योंकि इस जब गलत

play09:33

होता है ध्यान दीजिए इसको जब इस क्या होता

play09:35

है गलत होता है तो वह आता है एस्पिरिन

play09:38

जैसी को इस है देखिए यहां पर कॉल कर नीचे

play09:40

लिखा हुआ है अब फिर इस कमीशन को चेक करेगा

play09:42

और यह कनेक्शन अगर मिल गया तो इसे

play09:44

स्टेटमेंट एग्जीक्यूट कर देगा आगे नहीं

play09:46

बढ़ेगा कहने का मतलब अगर एक जगह बीच इस

play09:48

पूरे इस टेस्ट की सीरीज में कहीं एक जगह

play09:51

आपको कंडीशन चिपका ढूंढ लिया उस सेक्शन को

play09:54

एकजुट करके यह सीईए सकता है बाहर निकल

play09:57

जाता है यानि कि एक भी घर कहीं तू मिलता

play10:00

है उसको एकजुट करता हूं इसीलिए

play10:02

कि इस पेड़ तभी जाता है जब इस उक्ति

play10:06

मेडिसिन थी उसके ऊपर वाला इस क्या होता है

play10:09

वॉइस होता है तो एवं अगर यह कनेक्शन सही

play10:12

होता ध्यान लीजिए अगर यह कमीशन सही होता

play10:14

तो यह स्टेटमेंट एग्जीक्यूट ताकि कुछ नहीं

play10:16

सूझता चीजें बांधा जाता अगर यह पास होता

play10:19

तो इसको चेक किया था कि Bigg Boss में आता

play10:21

फिर यहां पर इस कमीशन में तय करता है कि

play10:23

क्या यह कंडीशन टू है अगर यह क्यों मिला

play10:25

था तो यह स्टेटमेंट एकजुटता और एग्री करता

play10:27

और सिर्फ बाहर निकल जाता है इसके बॉक्स ही

play10:30

बाहर निकल जाता मतलब कहीं भी अगर एक जगह

play10:32

आपको इसमें कंडीशन सही मिल जाता है तो वह

play10:35

बॉक्स जो है वह सॉफ्ट हो जाते हैं और फिर

play10:38

वहां से क्या निकल जाता चीफ अपने बाउंड्री

play10:41

को छोड़ देता है इस अपने इसको को छोड़कर

play10:43

इस बाहर से निकल जाता है अफ्रीका इन यह

play10:45

कैसे होता है l हमेशा तबीयत होता है जब आप

play10:49

जो है वह राम होता है यानि कि पास होता है

play10:52

आई हॉप आपको इसका कंसेप्ट समझ में आ गया

play10:55

का या तो यह था इस के अश्लील क्लिप को आप

play10:59

किस तरीके से यूज करते हैं एक क्वेश्चन

play11:01

टैक्सेस

play11:02

और इस पर हम प्रोग्रामिंग करेंगे अगली

play11:04

वीडियो में क्योंकि अगर हम किस तरफ

play11:05

प्रोग्रामिंग हम जाएंगे तो यह वीडियो काफी

play11:07

लंबा हो जाएगी और तुरंत जाता है

play11:09

थोड़ी-थोड़ी वीडियो तो अभी के लिए इसकी

play11:11

हिस्ट्री यह कितना ही मुझे उम्मीद है कि

play11:13

आपको यह जरूर समझना होगा और अगर समझ में

play11:15

आया है तो प्लीज लाइक सबस्क्राइब और शेयर

play11:17

कीजिए और नेक्स्ट वीडियो जरुर देखें इस पर

play11:20

आपको मिलेंगी एक सिगरेट है तो ध्यान नहीं

play11:22

तो थैंक पहुंचने वीडियो छठ

play11:26

हुआ है

play11:29

कर दो

Rate This

5.0 / 5 (0 votes)

関連タグ
Java ProgrammingControl StatementsConditional LogicProgramming TutorialBeginner GuideCode SelectionSwitch StatementSyntax RulesFlow ControlProgramming BasicsEducational Content
英語で要約が必要ですか?