Month: October 2025

  • JavaScript Tutorial for Beginners

    JavaScript Tutorial for Beginners

    This tutorial serves as a guide for JavaScript beginners, aiming to impart foundational knowledge for creating dynamic web pages and applications. It begins with an introduction to JavaScript’s core concepts, including its syntax, how to enable it in browsers, and where to place code within HTML. The text then progresses to cover essential programming elements such as variables, data types, operators, control flow statements (like if-else and loops), and functions. Furthermore, the tutorial explores JavaScript objects, including built-in types like Number, String, and Array, as well as concepts like events and browser interactions. Finally, it touches upon more advanced topics such as error handling, form validation, and debugging, providing a comprehensive overview for newcomers to the language.

    W3 Schools Learning

    JavaScript Basics and Objects Study Guide

    Quiz

    1. What are two key characteristics of JavaScript as a programming language, and for what primary purpose was it designed?
    2. Explain the concept of client-side JavaScript and provide one advantage it offers over traditional server-side scripting.
    3. Describe two limitations of client-side JavaScript that prevent it from being considered a full-fledged general-purpose programming language.
    4. What are the standard HTML tags used to embed JavaScript code within a web page, and what are the recommended values for their key attributes?
    5. Explain the significance of the var keyword in JavaScript and describe the difference between declaring and initializing a variable.
    6. What are the two primary scopes of variables in JavaScript, and how does JavaScript handle variable names that exist in both scopes within a function?
    7. Provide three examples of arithmetic operators in JavaScript and briefly explain their function.
    8. Describe the purpose of comparison operators in JavaScript and give an example of a comparison that would evaluate to false if variable x holds the value 5 and variable y holds the value 10.
    9. Explain the functionality of the logical AND (&&) operator in JavaScript. Under what condition will an expression using this operator evaluate to true?
    10. What is the purpose of JavaScript events, and can you provide an example of a common HTML event and how it might be used with JavaScript?

    Quiz Answer Key

    1. JavaScript is a lightweight, interpreted programming language. It was primarily designed for creating network-centric applications and enhancing web pages with dynamic and interactive elements.
    2. Client-side JavaScript is JavaScript code that is executed by the user’s web browser, rather than on a web server. One advantage is less server interaction, as user input can be validated in the browser before being sent to the server.
    3. Two limitations of client-side JavaScript are its inability to read or write files (for security reasons) and its lack of built-in support for networking applications or multithreading/multiprocessing.
    4. The standard HTML tags for embedding JavaScript are <script> and </script>. The recommended attribute to specify the scripting language is type with the value “text/javascript”. The language attribute is considered phased out in recent HTML versions.
    5. The var keyword is used to declare variables in JavaScript, essentially creating a named container in memory. Declaration is simply stating the variable name (e.g., var myVariable;), while initialization is assigning an initial value to the variable (e.g., var myVariable = 10;).
    6. The two primary scopes are global scope (variables defined anywhere in the code) and local scope (variables defined within a function). Within a function, a local variable with the same name as a global variable takes precedence, effectively hiding the global variable.
    7. Examples of arithmetic operators include + (addition), – (subtraction), and * (multiplication). The addition operator adds two operands, the subtraction operator subtracts the second operand from the first, and the multiplication operator multiplies both operands.
    8. Comparison operators in JavaScript are used to compare the values of two operands and return a Boolean value (true or false) based on the comparison. For example, (x > y) where x is 5 and y is 10 would evaluate to false.
    9. The logical AND (&&) operator evaluates to true only if both of its operands (the expressions on either side of the operator) evaluate to true. If either operand is false, the entire expression will be false.
    10. JavaScript events are actions or occurrences that happen in the browser, such as a user clicking a button or a page finishing loading. A common HTML event is onclick, which can be used to execute a JavaScript function when a user clicks on an HTML element.

    Essay Format Questions

    1. Discuss the advantages and limitations of using JavaScript for web development, considering its client-side nature and its integration with HTML. How has the evolution of web technologies addressed some of these limitations?
    2. Explain the significance of variable scope in JavaScript, differentiating between global and local variables. Provide scenarios where understanding variable scope is crucial for avoiding errors and maintaining code functionality.
    3. Compare and contrast the different types of operators available in JavaScript (arithmetic, comparison, logical, assignment). Provide examples of how each type of operator contributes to the functionality of a JavaScript program.
    4. Describe the different ways JavaScript code can be placed within an HTML document, including the advantages and potential disadvantages of each method. When might you choose one placement method over another?
    5. Discuss the fundamental data types supported by JavaScript. How does JavaScript’s handling of data types differ from strictly typed languages, and what are the implications of this dynamic typing?

    Glossary of Key Terms

    • Interpreted Language: A programming language where the code is executed line by line by an interpreter, without the need for prior compilation into machine code.
    • Client-Side Scripting: Code that is executed by the user’s web browser, as opposed to being run on a web server.
    • Syntax: The set of rules that define the structure of a programming language, including how statements are written and organized.
    • Variable: A named storage location in a computer’s memory that can hold a value.
    • Declaration: The act of introducing a variable name to the program, indicating that a storage location will be used for that name.
    • Initialization: The act of assigning an initial value to a variable at the time of its creation or later in the program.
    • Scope: The region of a program where a particular variable can be accessed.
    • Global Variable: A variable that is declared outside of any function and can be accessed from any part of the JavaScript code.
    • Local Variable: A variable that is declared inside a function and can only be accessed within that function.
    • Operator: A symbol or keyword that performs an operation on one or more operands (values or variables).
    • Operand: A value or variable that an operator acts upon.
    • Arithmetic Operator: A symbol that performs mathematical calculations (e.g., addition, subtraction, multiplication).
    • Comparison Operator: A symbol that compares two operands and returns a Boolean value based on the relationship between them (e.g., equal to, greater than).
    • Logical Operator: A symbol that performs Boolean logic operations on one or more Boolean operands (e.g., AND, OR, NOT).
    • Assignment Operator: A symbol that assigns a value to a variable (e.g., =, +=).
    • Event: An action or occurrence that happens in the browser, such as a user interaction (e.g., clicking a button) or a browser process (e.g., page loading).

    JavaScript Tutorial Briefing Document

    Date: October 26, 2023 Source: Excerpts from “javascript_tutorial.pdf” (Tutorials Point, Copyright 2015)

    Overview:

    This document provides a briefing on the fundamental concepts of JavaScript as presented in the initial sections of the “javascript_tutorial.pdf”. The tutorial is designed for beginners with prior knowledge of HTML and some exposure to object-oriented programming and online application creation. It covers the basics of the language, including its nature, syntax, how to enable it in browsers, placement within HTML, fundamental data types, variables, operators, control flow statements (if-else, switch-case, loops), functions, events, cookies, page redirection, dialog boxes, the void keyword, and page printing. The document also introduces JavaScript objects and their basic properties and methods, including built-in objects like Number, Boolean, String, Array, Date, Math, and RegExp, as well as the Document Object Model (DOM). Finally, it touches upon advanced topics like errors and exceptions, form validation, animation, multimedia, debugging, image maps, and browser-specific information.

    Part 1: JavaScript Basics

    This section lays the groundwork for understanding JavaScript.

    • What is JavaScript? JavaScript is described as a “lightweight, interpreted programming language” primarily used for creating “network-centric applications” and adding interactivity to web pages. It is highlighted as “complimentary to and integrated with Java” and “HTML“, as well as being “open and cross-platform.” Its history is briefly mentioned, noting its initial name as LiveScript and its introduction in Netscape 2.0 in 1995. The importance of the ECMA-262 Specification for standardizing the core language is also noted.
    • Client-Side JavaScript: The tutorial emphasizes that client-side JavaScript, embedded in or referenced by HTML documents, is the most common form. It allows web pages to be dynamic, interact with users, control browsers, and dynamically create HTML content. Advantages over server-side scripts include “less server interaction“, “immediate feedback to the visitors“, “increased interactivity“, and “richer interfaces.” Limitations include the inability to read or write files (for security), lack of networking application support, and no multithreading or multiprocessor capabilities.
    • JavaScript Development Tools: The tutorial points out that JavaScript doesn’t require expensive tools, with a simple text editor being sufficient. Several more advanced editors like Microsoft FrontPage, Macromedia Dreamweaver MX, and Macromedia HomeSite 5 are also mentioned.
    • Where is JavaScript Today? The tutorial mentions ECMAScript Edition 5 as a significant update and notes that JavaScript 2.0 conforms to this standard with minor differences. It states that Netscape’s JavaScript and Microsoft’s JScript align with the ECMAScript standard while still supporting non-standard features.
    • JavaScript Syntax: JavaScript code is placed within <script>…</script> HTML tags. The <script> tag can be placed anywhere but is “normally recommended” within the <head> tags. Important attributes of the <script> tag are language (though phased out, typically “javascript”) and type (recommended, set to “text/javascript”). A basic “Hello World” example using document.write() is provided, along with the use of HTML comments (<!– … //–>) to handle browsers without JavaScript support, where // within the comment prevents the closing HTML comment tag from being interpreted as JavaScript. The tutorial clarifies that “JavaScript ignores spaces, tabs, and newlines” and that “Semicolons are Optional” if statements are on separate lines, although using them is good practice. Importantly, “JavaScript is a case-sensitive language.” Both // (single-line) and /* … */ (multi-line) comments are supported, and <!– is treated as a single-line JavaScript comment, with //–> being the recommended way to close an HTML comment containing JavaScript.
    • JavaScript Enabling: The tutorial provides step-by-step instructions on how to enable or disable JavaScript in various popular browsers: Internet Explorer, Firefox, Chrome, and Opera. The use of <noscript> tags to display a warning message to users with JavaScript disabled is also explained. For example:
    • <noscript>
    • Sorry…JavaScript is needed to go ahead.
    • </noscript>
    • JavaScript Placement: The tutorial details four ways to include JavaScript in HTML: within the <head>, within the <body>, in both <head> and <body>, and in an external .js file included using the src attribute of the <script> tag. Placing scripts in the <head> is suggested for scripts that run on events, while placing them in the <body> is for scripts that generate content on page load. External files (<script type=”text/javascript” src=”filename.js” ></script>) are recommended for reusing identical JavaScript code across multiple pages.
    • JavaScript Variables: JavaScript supports three primitive data types: “Numbers, e.g., 123, 120.50 etc.“, “Strings of text, e.g. ‘This text string’ etc.“, and “Boolean, e.g. true or false.“. It also defines trivial types null and undefined, and a composite type object. All numbers are treated as 64-bit floating-point values. Variables are declared using the var keyword (var money;, var money, name;). Initialization can occur at declaration or later (var name = “Ali”;, money = 2000.50;). Re-declaration of variables with the same name using var should be avoided. JavaScript is an “untyped language“, meaning a variable can hold any data type, and the type can change during execution. Variable scope is either global (defined anywhere) or local (visible only within a function). Local variables take precedence over global variables with the same name within a function. Rules for variable names include: no JavaScript reserved keywords, must not start with a numeral, must begin with a letter or underscore, and are case-sensitive. A comprehensive list of JavaScript reserved words is provided.
    • JavaScript Operators: An operator is defined as a symbol that performs an operation on operands (e.g., in 4 + 5 = 9, + is the operator, and 4 and 5 are operands). The tutorial covers arithmetic operators (+, -, *, /, %, ++, –, noting that + can also concatenate strings), comparison operators (==, !=, >, <, >=, <=), logical operators (&&, ||, !), bitwise operators (&, |, ^, ~, <<, >>, >>>), assignment operators (=, +=, -=, *=, /=, %=, and their bitwise counterparts), and miscellaneous operators, specifically the conditional (ternary) operator (? 🙂 and the typeof operator. The typeof operator returns a string indicating the data type of its operand (e.g., “number”, “string”, “boolean”, “object”, “function”, “undefined”). Examples are provided for each operator type. For instance, regarding the conditional operator:
    • result = (a > b) ? 100 : 200;
    • This assigns 100 to result if a is greater than b, and 200 otherwise.

    Part 2: JavaScript Objects

    This section introduces the concept of objects in JavaScript.

    • JavaScript Objects: An object is a collection of properties (named values) and methods (functions that can be performed on the object). The tutorial covers user-defined objects, defining methods for objects, and the use of the with keyword (though often discouraged).
    • Built-in Objects: The tutorial then delves into various built-in JavaScript objects, detailing their properties and methods with examples:
    • Number: Properties like MAX_VALUE, MIN_VALUE, NaN, NEGATIVE_INFINITY, POSITIVE_INFINITY, prototype, constructor, and methods like toExponential(), toFixed(), toLocaleString(), toPrecision(), toString(), valueOf().
    • Boolean: Properties constructor, prototype, and methods toSource(), toString(), valueOf().
    • String: Properties constructor, length, prototype, and numerous methods for string manipulation (e.g., charAt(), charCodeAt(), concat(), indexOf(), lastIndexOf(), slice(), split(), replace(), search(), toLowerCase(), toUpperCase(), etc.) and HTML wrappers (e.g., anchor(), bold(), italics(), link()).
    • Arrays: Properties constructor, length, prototype, and methods for array manipulation (e.g., concat(), every(), filter(), forEach(), indexOf(), join(), lastIndexOf(), map(), pop(), push(), reduce(), reverse(), shift(), slice(), sort(), splice(), toString(), unshift()).
    • Date: Properties constructor, prototype, various methods for getting and setting date and time components (e.g., getDate(), getDay(), getFullYear(), getHours(), setDate(), setFullYear(), setHours(), getTime(), setTime(), and their UTC counterparts), as well as methods for converting dates to string formats (e.g., toDateString(), toGMTString(), toLocaleDateString(), toString(), toTimeString(), toUTCString(), valueOf()). Static methods Date.parse() and Date.UTC() are also covered.
    • Math: Properties for mathematical constants (e.g., Math.E, Math.PI, Math.LN2, Math.LOG2E, Math.SQRT2) and a wide range of mathematical functions as methods (e.g., abs(), acos(), asin(), atan(), ceil(), cos(), exp(), floor(), log(), max(), min(), pow(), random(), round(), sin(), sqrt(), tan()).
    • RegExp: Covers regular expressions, including brackets, quantifiers, literal characters, metacharacters, and modifiers. Properties like constructor, global, ignoreCase, lastIndex, multiline, source, and methods exec(), test(), toSource(), toString().
    • DOM (Document Object Model): Briefly introduces the DOM, mentioning “The Legacy DOM”, “The W3C DOM”, and “The IE 4 DOM”, as well as “DOM Compatibility”.

    Part 3: JavaScript Advanced

    This section touches upon more advanced JavaScript concepts.

    • Errors and Exceptions: Discusses syntax errors, runtime errors, and logical errors. It introduces the try…catch…finally statement for error handling, the throw statement for raising custom exceptions, and the onerror() method.
    • Form Validation: Covers basic and data format validation techniques in JavaScript to ensure user input is correct before submission.
    • Animation: Introduces manual and automated animation techniques using JavaScript, including rollover effects with mouse events.
    • Multimedia: Briefly mentions checking for browser plug-ins and controlling multimedia elements using JavaScript.
    • Debugging: Provides information on error messages in different browsers (IE, Firefox/Mozilla), error notifications, and general tips for debugging JavaScript code.
    • Image Map: Covers the implementation of image maps using JavaScript.
    • Browsers: Discusses the navigator object and its properties (e.g., appName, appVersion, userAgent) and methods, as well as techniques for browser detection.

    Key Themes and Important Ideas:

    • JavaScript as a Client-Side Scripting Language: The primary role of JavaScript is to enhance HTML and create dynamic and interactive web pages by running in the user’s browser.
    • Ease of Implementation: JavaScript is presented as easy to start with, requiring just a text editor and a web browser.
    • Integration with HTML: JavaScript code is embedded within HTML using <script> tags, allowing for close interaction between the structure and behavior of a web page.
    • Fundamental Programming Concepts: The tutorial covers core programming concepts like variables, data types, operators, control flow statements (conditionals and loops), and functions, providing a foundation for writing more complex scripts.
    • Object-Oriented Capabilities: While described as interpreted, JavaScript is also highlighted as having object-oriented capabilities, with the introduction of objects, properties, and methods.
    • Built-in Functionality: JavaScript provides a rich set of built-in objects (Number, Boolean, String, Array, Date, Math, RegExp) with numerous properties and methods that simplify common programming tasks.
    • Event Handling: JavaScript enables the creation of interactive web pages by allowing scripts to respond to user-initiated events (e.g., onclick, onsubmit, onmouseover).
    • Browser Interaction: JavaScript can interact with the browser environment, including handling cookies, performing page redirects and refreshes, and displaying dialog boxes.
    • Error Handling and Validation: The tutorial introduces mechanisms for handling errors and validating user input, crucial for creating robust web applications.

    Quotes:

    • “JavaScript is a lightweight, interpreted programming language.” (About the Tutorial, p. i)
    • “Designed for creating network-centric applications.” (About the Tutorial, p. i)
    • “It is complimentary to and integrated with Java.” (About the Tutorial, p. i)
    • “It is complimentary to and integrated with HTML.” (About the Tutorial, p. i)
    • “Client-side JavaScript is the most common form of the language. The script should be included in or referenced by an HTML document for the code to be interpreted by the browser.” (JAVASCRIPT – Overview, p. 11)
    • “You can place the

    Understanding JavaScript Fundamentals and Web Browser Integration

    What is JavaScript and what are its key characteristics?

    JavaScript is a lightweight, interpreted programming language primarily designed for creating network-centric applications. It’s known for being easy to implement due to its integration with HTML, and it’s an open and cross-platform language. It allows for client-side scripting to create dynamic and interactive web pages.

    Who is the intended audience for this tutorial and what prior knowledge is expected?

    This tutorial is designed for JavaScript beginners who want to understand the fundamental functionalities of JavaScript to build dynamic web pages and web applications. It assumes that the reader has prior knowledge of HTML coding and some exposure to object-oriented programming concepts and creating online applications.

    What are some of the advantages of using client-side JavaScript in web development?

    Client-side JavaScript offers several benefits, including reduced server interaction by enabling input validation before submission, immediate feedback to users without page reloads, increased interactivity through features like mouse hover effects, and richer user interfaces with elements like drag-and-drop components.

    What are some limitations of JavaScript that prevent it from being considered a full-fledged programming language?

    Despite its capabilities, client-side JavaScript has limitations. For security reasons, it cannot read or write files. It also lacks built-in support for networking applications and does not have multithreading or multiprocessor capabilities.

    How is JavaScript typically included and placed within an HTML document?

    JavaScript code is included within HTML documents using the <script> tags. These tags can be placed in the <head>, the <body>, or both sections of the HTML. Additionally, JavaScript code can be stored in an external .js file and linked to the HTML document using the src attribute of the <script> tag. It is often recommended to place script tags in the <head> for scripts that run on events or in the <body> for scripts that generate content on page load.

    What are variables in JavaScript and what are the rules for naming them?

    In JavaScript, variables are named containers used to store data. Before using a variable, it must be declared using the var keyword (though modern JavaScript introduces let and const). Variable names must not be JavaScript reserved keywords, should not start with a numeral, must begin with a letter or an underscore, and are case-sensitive.

    What are the different types of operators available in JavaScript and what are their basic functionalities?

    JavaScript supports various types of operators, including:

    • Arithmetic Operators: Perform mathematical calculations (e.g., +, -, *, /, %, ++, –).
    • Comparison Operators: Compare two operands and return a Boolean value (e.g., ==, !=, >, <, >=, <=).
    • Logical Operators: Perform logical operations on Boolean values (e.g., &&, ||, !).
    • Assignment Operators: Assign values to variables (e.g., =, +=, -=, *=, /=, %=).
    • Bitwise Operators: Perform operations on the binary representations of numbers (e.g., &, |, ^, ~, <<, >>, >>>).
    • Miscellaneous Operators: Include the conditional (ternary) operator ?: and the typeof operator to determine the data type of a variable.

    How can users enable or disable JavaScript support in common web browsers like Internet Explorer, Firefox, and Chrome?

    The tutorial provides step-by-step instructions for enabling and disabling JavaScript in Internet Explorer (via Internet Options > Security > Custom Level > Scripting > Active scripting), Firefox (by toggling the javascript.enabled setting in about:config), Chrome (via Settings > Show advanced settings > Content settings > Javascript), and Opera (via Tools > Preferences > Advanced > Content > Enable JavaScript). It also mentions using the <noscript> tag to display a warning to users with JavaScript disabled.

    JavaScript Basics: A Beginner’s Guide

    Let’s discuss JavaScript Basics based on the provided tutorial.

    What is JavaScript? JavaScript is described as a lightweight, interpreted programming language. It is designed for creating network-centric applications and is commonly used as part of web pages to enable client-side scripts that can interact with the user and create dynamic pages. JavaScript has object-oriented capabilities and is complementary to and integrated with Java and HTML. It is also considered open and cross-platform and very easy to implement because it is integrated with HTML. It was initially known as LiveScript but was renamed JavaScript by Netscape, possibly due to the popularity of Java. JavaScript first appeared in Netscape 2.0 in 1995.

    Audience and Prerequisites The tutorial is prepared for JavaScript beginners to help them understand the basic functionality for building dynamic web pages and web applications. It is assumed that the reader has prior knowledge of HTML coding. Some prior exposure to object-oriented programming concepts and a general idea of creating online applications would also be helpful.

    Client-Side JavaScript Client-side JavaScript is the most common form of the language. For the code to be interpreted by the browser, the script needs to be included in or referenced by an HTML document. This allows web pages to be dynamic, interacting with users, controlling the browser, and dynamically creating HTML content. Client-side JavaScript offers advantages over traditional server-side scripts, such as less server interaction, immediate feedback to visitors, increased interactivity, and richer interfaces.

    Limitations of JavaScript Despite its capabilities, JavaScript is not considered a full-fledged programming language and has limitations. Client-side JavaScript does not allow reading or writing files for security reasons. It also lacks support for networking applications, multithreading, and multiprocessor capabilities. However, it excels at adding interactivity to static HTML pages.

    JavaScript Development Tools A major advantage of JavaScript is that it does not require expensive development tools. You can start with a simple text editor like Notepad. As it’s an interpreted language within a web browser, a compiler is not needed. Several vendors offer more advanced JavaScript editing tools, such as Microsoft FrontPage, Macromedia Dreamweaver MX, and Macromedia HomeSite 5.

    Where is JavaScript Today? Modern JavaScript implementations like Netscape’s JavaScript and Microsoft’s JScript conform to the ECMAScript standard.

    Including JavaScript in HTML (Placement) JavaScript code is implemented using <script>…</script> HTML tags in a web page. These tags can be placed anywhere within the web page, but it is generally recommended to keep them within the <head> tags. The <script> tag signals the browser to interpret the text within it as a script. The <script> tag can have attributes like language (though its use is being phased out) and type, which should be set to “text/javascript”.

    There are preferred ways to include JavaScript in an HTML file:

    • In the <head>…</head> section: This is often used for scripts that run on events, like user clicks.
    • In the <body>…</body> section: Scripts placed here typically run as the page loads to generate content.
    • In both <head> and <body> sections: You can have scripts in both sections.
    • In an external file: For reusing code across multiple pages, JavaScript can be stored in a .js file and included using the src attribute of the <script> tag in the <head> section.

    Basic Syntax

    • Whitespace and Line Breaks: JavaScript ignores spaces, tabs, and newlines, allowing for flexible formatting to improve readability.
    • Semicolons: Semicolons at the end of simple statements are generally optional if each statement is on a separate line. However, it’s good programming practice to use semicolons.
    • Case Sensitivity: JavaScript is case-sensitive. Keywords, variables, function names, and identifiers must have consistent capitalization (e.g., Time and TIME are different).
    • Comments: JavaScript supports C-style (/* … */ for multi-line and single-line) and C++-style (// for single-line) comments. It also recognizes the HTML comment opening <!– as a single-line comment but requires the closing –> to be written as //–> to avoid being read as JavaScript code.

    Enabling JavaScript in Browsers The tutorial outlines how to enable JavaScript in various browsers:

    • Internet Explorer: Through Tools -> Internet Options -> Security Tab -> Custom Level -> Scripting -> Active Scripting -> Enable.
    • Firefox: By typing about:config in the address bar, accepting the warning, searching for javascript.enabled, and toggling its value.
    • Chrome: Via Chrome menu -> Settings -> Show advanced settings -> Privacy -> Content settings -> Javascript and selecting the desired option.
    • Opera: Through Tools -> Preferences -> Advanced -> Content -> Enable JavaScript checkbox.

    Warning for Non-JavaScript Browsers The <noscript> tags can be used to display a warning message to users whose browsers do not support JavaScript or have it disabled. The content within <noscript> tags is displayed in place of the JavaScript code in such cases.

    Variables JavaScript allows working with three primitive data types: Numbers, Strings, and Boolean. It also defines two trivial data types: null and undefined. Additionally, JavaScript supports a composite data type: object. Importantly, JavaScript does not distinguish between integer and floating-point numbers; all numbers are represented as 64-bit floating-point values according to the IEEE 754 standard.

    Variables are named containers for storing data. They are declared using the var keyword. Multiple variables can be declared with a single var keyword. Variable initialization is the process of storing a value in a variable, which can happen at the time of declaration or later. The var keyword should only be used for the initial declaration or initialization of a variable. JavaScript is an untyped language, meaning a variable can hold a value of any data type, and the type can change during program execution.

    Variable Scope JavaScript has two variable scopes:

    • Global Variables: Declared outside any function, they have global scope and can be accessed anywhere in the code.
    • Local Variables: Declared within a function, they are visible only within that function. Function parameters are always local. A local variable with the same name as a global variable takes precedence within the function, effectively hiding the global variable.

    Variable Names When naming variables, the following rules apply:

    • Reserved JavaScript keywords cannot be used.
    • They should not start with a numeral (0-9) but must begin with a letter or an underscore.
    • They are case-sensitive.

    Reserved Words The tutorial provides a list of reserved words that cannot be used as identifiers in JavaScript.

    Operators JavaScript supports various types of operators:

    • Arithmetic Operators: These include + (addition, also for string concatenation), – (subtraction), * (multiplication), / (division), % (modulus), ++ (increment), and — (decrement).
    • Comparison Operators: These include == (equal), != (not equal), > (greater than), < (less than), >= (greater than or equal to), and <= (less than or equal to).
    • Logical Operators: These include && (logical AND), || (logical OR), and ! (logical NOT).
    • Bitwise Operators: These operate on the bit level and include & (bitwise AND), | (bitwise OR), ^ (bitwise XOR), ~ (bitwise NOT), << (left shift), >> (right shift), and >>> (right shift with zero).
    • Assignment Operators: These assign values to variables and include = (simple assignment), += (add and assignment), -= (subtract and assignment), *= (multiply and assignment), /= (divide and assignment), and %= (modulus and assignment). Similar assignment operators exist for bitwise operations (e.g., <<=, >>=, &=, |=, ^=).
    • Miscellaneous Operators:Conditional Operator (? 🙂: This is a ternary operator that evaluates a condition and returns one of two expressions based on the result.
    • typeof Operator: This unary operator returns a string indicating the data type of its operand (e.g., “number”, “string”, “boolean”, “object”, “function”, “undefined”). Note that typeof null returns “object”.

    This covers the fundamental aspects of JavaScript as introduced in the “JavaScript Basics” part of the tutorial. The subsequent parts delve into JavaScript Objects and Advanced topics.

    JavaScript Language Features: Core Concepts

    Based on the “javascript_tutorial.pdf” and our previous discussion, let’s delve into the language features of JavaScript:

    Core Characteristics:

    • JavaScript is a lightweight, interpreted programming language. It is also described as a dynamic computer programming language.
    • It is designed for creating network-centric applications and is most commonly used as a part of web pages. Its implementations allow client-side script to interact with the user and make dynamic pages.
    • JavaScript has object-oriented capabilities.
    • It is complementary to and integrated with Java and HTML. In fact, it is considered very easy to implement because it is integrated with HTML.
    • JavaScript is open and cross-platform.
    • The core of the language has been embedded in various web browsers like Netscape and Internet Explorer.
    • The ECMA-262 Specification defined a standard version of the core JavaScript language, and JavaScript 2.0 conforms to Edition 5 of this standard.

    Data Types:

    • JavaScript allows you to work with three primitive data types: Numbers, Strings of text, and Boolean (true or false).
    • It also defines two trivial data types: null and undefined, each having a single value.
    • JavaScript supports a composite data type known as object.
    • Notably, JavaScript does not distinguish between integer values and floating-point values. All numbers are represented as 64-bit floating-point format defined by the IEEE 754 standard.

    Variables:

    • JavaScript uses variables as named containers to store data.
    • Variables are declared using the var keyword. Multiple variables can be declared with a single var keyword.
    • Variable initialization involves storing a value in a variable, which can occur during declaration or later.
    • JavaScript is an untyped language, meaning a variable can hold a value of any data type, and this type can change during the program’s execution.
    • Variables have scope: global scope (defined outside functions, accessible anywhere) and local scope (defined within a function, visible only there). Local variables take precedence over global variables with the same name within a function.
    • There are rules for naming variables: they cannot be reserved keywords, should not start with a numeral, must begin with a letter or underscore, and are case-sensitive.

    Operators: JavaScript supports a variety of operators to perform operations on operands:

    • Arithmetic Operators: +, -, *, /, %, ++, –. The addition operator + can also be used for string concatenation.
    • Comparison Operators: ==, !=, >, <, >=, <=.
    • Logical Operators: &&, ||, !.
    • Bitwise Operators: &, |, ^, ~, <<, >>, >>>.
    • Assignment Operators: =, +=, -=, *=, /=, %=, and corresponding bitwise assignment operators (e.g., <<=).
    • Miscellaneous Operators:Conditional Operator (? 🙂: A ternary operator for conditional expressions.
    • typeof Operator: A unary operator that returns a string indicating the data type of an operand.

    Syntax:

    • JavaScript code is typically placed within <script>…</script> tags in an HTML document.
    • These <script> tags can be located in the <head> or <body> sections of the HTML. JavaScript can also be included from external .js files using the src attribute of the <script> tag.
    • Whitespace (spaces, tabs, newlines) is generally ignored, allowing for code formatting to enhance readability.
    • Semicolons at the end of simple statements are optional if each statement is on a new line, but using them is considered good practice.
    • JavaScript is case-sensitive.
    • Comments can be added using // for single-line comments and /* … */ for multi-line comments. It also recognizes <!– as a single-line HTML comment, and //–> is used to close JavaScript within HTML comments for compatibility with older browsers.

    These features collectively define the fundamental characteristics and capabilities of the JavaScript language as outlined in the initial sections of the provided tutorial.

    JavaScript Core Concepts

    Based on the “javascript_tutorial.pdf” and our conversation history, here’s a discussion of the core concepts of JavaScript:

    What JavaScript Is: At its core, JavaScript is a lightweight, interpreted programming language. It’s also described as a dynamic computer programming language. Its primary design purpose is for creating network-centric applications, and it is most commonly used as a part of web pages. This allows for client-side scripting, enabling web pages to interact with the user and become dynamic. JavaScript is considered complementary to and integrated with both Java and HTML. Its integration with HTML makes it very easy to implement. Furthermore, it’s an open and cross-platform language. The general-purpose core of JavaScript has been embedded in various web browsers.

    Client-Side Focus: Client-side JavaScript is the most prevalent form of the language. For JavaScript code to be interpreted and executed by the browser, it needs to be included in or referenced by an HTML document. This client-side mechanism provides significant advantages, such as less server interaction (by validating user input before submission) and immediate feedback to visitors (without requiring a page reload). It also enables increased interactivity and richer interfaces on web pages.

    Basic Syntax: JavaScript code is typically placed within <script>…</script> HTML tags. These tags alert the browser to interpret the enclosed text as a script. The <script> tag can have attributes like language (though this is being phased out) and type, with the recommended type being “text/javascript”.

    Key aspects of JavaScript syntax include:

    • Whitespace and Line Breaks: JavaScript generally ignores spaces, tabs, and newlines, allowing for flexible code formatting to improve readability.
    • Semicolons: While semicolons are optional if each statement is on a new line, it is considered good programming practice to use them. They are mandatory when multiple statements are on a single line.
    • Case Sensitivity: JavaScript is case-sensitive, meaning that keywords, variables, function names, and other identifiers must have consistent capitalization (e.g., Time and TIME are different).
    • Comments: JavaScript supports both C-style (/* … */ for multi-line and // for single-line) and recognizes the HTML comment opening (<!– as a single-line comment) and closing (//–>) sequences.

    Variables and Data Types: JavaScript uses variables as named containers to store data. Before using a variable, it must be declared using the var keyword. Multiple variables can be declared with a single var. Initialization is the process of assigning a value to a variable, which can happen at declaration or later.

    JavaScript is an untyped language, meaning a single variable can hold values of different data types during its lifetime. It supports several primitive data types:

    • Numbers: All numbers are treated as floating-point values using the 64-bit IEEE 754 standard.
    • Strings: Represent sequences of text (e.g., “Hello”).
    • Boolean: Represents logical values (true or false).
    • Null: A trivial type with only one value: null.
    • Undefined: Another trivial type with only one value: undefined.

    In addition to these, JavaScript has a composite data type called object. Variables have scope, which can be global (accessible anywhere) or local (accessible only within a function).

    Operators: JavaScript provides various operators to perform operations on values (operands):

    • Arithmetic Operators: Perform mathematical calculations (addition +, subtraction -, multiplication *, division /, modulus %, increment ++, decrement –). Notably, + can also concatenate strings.
    • Comparison Operators: Compare two operands and return a boolean value (== equal, != not equal, > greater than, < less than, >= greater than or equal to, <= less than or equal to).
    • Logical Operators: Perform logical operations on boolean values (&& logical AND, || logical OR, ! logical NOT).
    • Bitwise Operators: Operate on the binary representation of integers (& AND, | OR, ^ XOR, ~ NOT, << left shift, >> right shift, >>> unsigned right shift).
    • Assignment Operators: Assign values to variables (= simple assignment, += add and assign, -= subtract and assign, *= multiply and assign, /= divide and assign, %= modulus and assign, and similar for bitwise operators).
    • Miscellaneous Operators: Include the conditional (ternary) operator (? 🙂 for concise conditional expressions and the typeof operator to determine the data type of a variable.

    Placement in HTML: JavaScript code can be included in an HTML document in several ways:

    • Directly within the <head>…</head> section, often used for scripts that run on events or utility functions.
    • Directly within the <body>…</body> section, typically for scripts that generate content as the page loads.
    • In both the <head> and <body> sections.
    • In an external .js file, which is then linked into the HTML using the src attribute of the <script> tag in the <head>. This promotes code reusability across multiple HTML pages.

    Understanding these core concepts provides a foundational understanding of how JavaScript functions and its role in web development as described in the sources.

    JavaScript’s Web Integration: Core Concepts

    Based on the “javascript_tutorial.pdf” and our conversation history, JavaScript’s integration with the web is a fundamental aspect of its design and usage. Here’s a discussion of this web integration:

    Core Role in Web Pages: JavaScript is most commonly used as a part of web pages. Its implementations allow client-side scripts to interact with the user and make dynamic pages. This is a primary reason for JavaScript’s existence and widespread adoption.

    Client-Side Scripting: JavaScript is fundamentally a client-side scripting language. This means that the JavaScript code is typically embedded in or referenced by an HTML document and is then interpreted and executed by the user’s web browser. This client-side execution enables interactivity and dynamic content generation directly within the browser.

    Complementary to and Integrated with HTML: The tutorial emphasizes that JavaScript is complementary to and integrated with HTML. In fact, it is considered very easy to implement because it is integrated with HTML. This close relationship means that JavaScript code works within the structure and content defined by HTML.

    Inclusion in HTML using <script> Tags: JavaScript code is embedded within HTML documents using the <script>…</script> tags. These tags serve as containers for JavaScript code and instruct the browser to interpret the content between them as a script. The <script> tag can take attributes such as language (typically “javascript”, though being phased out) and type (recommended to be “text/javascript”).

    Placement of <script> Tags: The tutorial details various ways to place <script> tags within an HTML document:

    • <head>…</head> Section: Placing scripts in the <head> section is often done for scripts that need to run on specific events or for utility functions that might be used throughout the page.
    • <body>…</body> Section: If a script needs to run as the page loads and generate content directly into the page, it is typically placed in the <body> section.
    • Both <head> and <body> Sections: It is possible to include JavaScript in both sections of an HTML document.
    • External File: For larger projects and reusability, JavaScript code can be stored in external files with the .js extension and then included in HTML files using the src attribute of the <script> tag, usually placed in the <head>. This allows for maintaining identical code across multiple pages.

    Dynamic Content and User Interaction: By being integrated into web pages, JavaScript enables them to be dynamic. It can interact with the user, respond to their actions (like button clicks or mouse hovers), control the browser, and dynamically create HTML content. For example, JavaScript can be used to validate form input before submitting it to the server.

    Event Handling: JavaScript can “trap user-initiated events” such as button clicks and link navigation, allowing developers to execute specific code in response to these interactions. The tutorial later introduces the concept of “Events” and specific event types like onclick, onsubmit, and onmouseover/onmouseout, further illustrating this interaction.

    Basic Output and DOM Manipulation (Implicit): While the Document Object Model (DOM) is formally introduced later in the tutorial, the early examples using document.write() demonstrate a basic level of interaction with the HTML document to output content. This is a fundamental aspect of JavaScript’s web integration – its ability to manipulate the structure and content of the web page.

    Handling Browsers Without JavaScript: Recognizing that some browsers might not support JavaScript or have it disabled, the tutorial mentions the <noscript> tags. Content within these tags is displayed to users if their browser does not support JavaScript or if JavaScript is not enabled, allowing for a fallback mechanism or a warning message.

    In summary, JavaScript’s web integration is characterized by its role as a client-side scripting language deeply intertwined with HTML, enabling dynamic behavior, user interaction, and content manipulation within web browsers. The <script> tag and its various placement options are key mechanisms for incorporating JavaScript into web pages, with external files promoting code organization and reusability.

    JavaScript Development Tools: Simplicity and Enhanced Editors

    Based on the “javascript_tutorial.pdf”, here’s a discussion of JavaScript development tools:

    The tutorial points out that one of the significant advantages of JavaScript is that it does not require expensive development tools. You can begin writing JavaScript code with a simple text editor such as Notepad. Since JavaScript is an interpreted language within the context of a web browser, you don’t even need to buy a compiler.

    However, the tutorial also mentions that various vendors have created nice JavaScript editing tools to make development simpler. Some of these tools listed in the source are:

    • Microsoft FrontPage: Described as a popular HTML editor that also provides web developers with JavaScript tools to assist in creating interactive websites.
    • Macromedia Dreamweaver MX: Identified as a very popular HTML and JavaScript editor among professional web developers. It offers prebuilt JavaScript components, integrates well with databases, and conforms to new standards like XHTML and XML.
    • Macromedia HomeSite 5: Presented as a well-liked HTML and JavaScript editor from Macromedia, suitable for effectively managing personal websites.

    In summary, the tutorial highlights that basic JavaScript development can start with a simple text editor and a web browser. For more enhanced development experiences, dedicated HTML and JavaScript editors like Microsoft FrontPage, Macromedia Dreamweaver MX, and Macromedia HomeSite 5 are available, offering features that can simplify the process of building interactive websites. Our previous conversations have focused on the core concepts and web integration of JavaScript and did not delve into specific development tools beyond what is mentioned in this source.

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Windows 11: A Beginner’s Guide

    Windows 11: A Beginner’s Guide

    The provided text serves as a beginner’s guide to navigating and customizing the Windows 11 operating system. It explains fundamental elements such as the taskbar, start menu, and desktop, detailing how to interact with icons, open applications, and manage windows. The text further instructs users on personalizing their experience through settings adjustments like display resolution, text size, and taskbar behavior. Finally, it covers essential file management skills using File Explorer and introduces the concepts of cut, copy, and paste, along with guidance on basic internet browsing with Microsoft Edge.

    Windows 11 Orientation Study Guide

    Quiz

    1. Where is the Start button located in Windows 11, and what appears when you click it?
    2. Explain the “pinned apps” and “recommended” sections of the Start menu. How can you manage pinned apps?
    3. Describe two ways to launch an application in Windows 11 and highlight a key difference in how you interact with icons in those locations.
    4. How do you shut down or restart your Windows 11 computer using the Start menu? Why is restarting periodically recommended?
    5. Explain how to pin and unpin applications from the taskbar. Why might you want to customize the taskbar?
    6. What is the purpose of the small upward-pointing arrow icon on the right side of the taskbar? What kind of applications might you find there?
    7. Describe the functionality of Microsoft OneDrive as explained in the source.
    8. Explain how to access and adjust the volume and network settings from the taskbar. What other settings can be found in this area?
    9. What is the “Task View” feature in Windows 11, and how can you access it? How does it help with managing open windows?
    10. Explain the difference between “cut and paste” and “copy and paste” when working with files or text in Windows. What are the keyboard shortcuts for these actions?

    Quiz Answer Key

    1. In Windows 11, the Start button is located in the center of the taskbar. Clicking it opens a menu displaying pinned applications at the top and recommended recent files, folders, and newly installed apps below.
    2. “Pinned apps” are applications that have been manually placed in the Start menu for easy access. “Recommended” shows recently opened files, folders, and recently installed applications. You can manage pinned apps by right-clicking on an app icon in the Start menu and selecting “Pin to Start” or “Unpin from Start.”
    3. You can launch an application by single-clicking its icon in the Start menu or on the taskbar. You can also launch an application by double-clicking its icon on the desktop. A key difference is that you single-click icons in the Start menu and taskbar, but double-click icons on the desktop to open them.
    4. To shut down or restart, click the Start button, then click the power icon located at the bottom right of the Start menu. From there, you can choose “Shut down” or “Restart.” Restarting periodically is recommended to refresh the system, as programs can accumulate memory and resources over time, potentially slowing down the computer.
    5. To pin an application to the taskbar, find the application (either in the Start menu or the “All apps” list), right-click on its icon, and select “Pin to taskbar.” To unpin an application, right-click on its icon on the taskbar and select “Unpin from taskbar.” Customizing the taskbar allows you to keep frequently used applications readily accessible.
    6. The small upward-pointing arrow icon on the right side of the taskbar reveals a hidden area for background applications that don’t always need to be visible. Examples of applications found here include Windows Security (antivirus) and other utilities running in the background.
    7. Microsoft OneDrive is a cloud storage service that allows you to save files online and synchronize them across multiple devices, such as a desktop and a laptop. This ensures that changes made on one device are automatically updated on others, eliminating the need for physical storage devices for transferring files.
    8. Clicking the network or volume icon on the right side of the taskbar opens a panel where you can adjust volume using a slider and see your network connection status. This area also provides access to other settings like airplane mode (if applicable), accessibility settings, and the Night Light feature to reduce blue light emissions.
    9. Task View is a feature in Windows 11 that displays all currently open windows as thumbnails, allowing you to quickly switch between them. You can access it by clicking the Task View button on the taskbar (it looks like overlapping rectangles) or by pressing the Windows key + Tab. It helps manage multiple open applications by providing a visual overview.
    10. “Cut and paste” moves an item (text, file, or folder) from its original location to a new location. The original item is removed. “Copy and paste” creates a duplicate of the item in a new location, while the original item remains in its original place. The keyboard shortcut for cut is Ctrl+X, for copy is Ctrl+C, and for paste is Ctrl+V.

    Essay Format Questions

    1. Discuss the evolution of the Windows Start Menu from earlier versions to Windows 11. Analyze the changes in its design and functionality, and evaluate the potential benefits and drawbacks of these changes for user experience and productivity as described in the source.
    2. Explain the importance of taskbar customization in Windows 11. Describe the various ways a user can personalize their taskbar, including pinning/unpinning applications and modifying taskbar behaviors. Discuss how effective taskbar customization can contribute to a more efficient workflow based on the information provided.
    3. The source emphasizes the built-in security features of Windows 11 and cautions against unnecessary third-party antivirus software. Elaborate on the advice given regarding Windows Security. Discuss the reasoning behind this recommendation and the potential advantages and disadvantages of relying solely on the built-in antivirus.
    4. Describe the basic file management functionalities in Windows 11 as explained in the source, including creating folders, moving and copying files, and understanding file extensions. Explain the importance of organizing files and folders effectively and how the features discussed can aid in this process.
    5. The source provides guidance on initial setup and basic troubleshooting, such as restarting and managing updates. Based on this information, discuss the key recommendations for maintaining a stable and functional Windows 11 system for a new user.

    Glossary of Key Terms

    • Taskbar: The bar located at the bottom of the Windows desktop that displays the Start button, pinned applications, and system information.
    • Start Button: An icon (typically a Windows logo) on the taskbar that, when clicked, opens the Start Menu.
    • Pinned Apps: Applications that users have chosen to display in the Start Menu or on the taskbar for quick access.
    • Recommended: A section in the Start Menu that displays recently opened files, folders, and newly installed applications.
    • All Apps: A section in the Start Menu that lists all installed applications on the computer.
    • Desktop: The main visual work area on a computer screen, displaying icons and the background wallpaper.
    • Power Button (Start Menu): An icon in the Start Menu used to access power options such as Shut down, Restart, and Sleep.
    • System Tray (Notification Area): The area on the far right of the taskbar that displays icons for background processes, notifications, date, and time.
    • Widgets: Dynamic information displays (like weather, news) that can be accessed from the left side of the Windows 11 taskbar.
    • Task View: A feature that displays thumbnails of all open windows, allowing for easy switching between them.
    • Taskbar Behaviors: Settings that control how the taskbar functions, such as alignment and how buttons are combined.
    • File Explorer: The file management application in Windows used to browse, organize, and manage files and folders.
    • File Name Extension: A suffix at the end of a file name (e.g., .pdf, .exe, .jpg) that indicates the file type.
    • Control Panel: A system utility in Windows that allows users to configure various settings, although many of its functions are now integrated into the Settings app.
    • Settings App: The modern interface in Windows 11 for configuring system settings, replacing much of the functionality of the Control Panel.
    • Windows Update: A service that allows Windows to download and install updates for the operating system and other Microsoft software.
    • Personalization: Settings that allow users to customize the visual appearance of Windows, such as background, colors, and themes.
    • Accessibility: Features and settings designed to make computers easier to use for people with disabilities, such as text size adjustments and high contrast themes.
    • Cut: A command that removes selected content from its original location and places it on the clipboard.
    • Copy: A command that duplicates selected content and places the copy on the clipboard, while the original remains.
    • Paste: A command that inserts the content currently stored on the clipboard into the current location.
    • Clipboard: A temporary storage area in computer memory used for holding data that has been cut or copied.
    • Microsoft Edge: The default web browser included with Windows.
    • OneDrive: Microsoft’s cloud storage and file synchronization service.

    Windows 11 Orientation: A Briefing Document

    This briefing document summarizes the main themes and important ideas from the provided source, which serves as an introductory guide to Windows 11. The source focuses on familiarizing new users with the operating system’s interface, key functionalities, and essential settings.

    Main Themes

    • Interface Navigation: The primary focus is on helping users understand and navigate the Windows 11 desktop environment, including the Taskbar and the Start Menu.
    • Essential System Functions: The guide covers critical actions such as launching applications, managing files and folders, connecting to the internet, and shutting down/restarting the computer.
    • Basic Customization and Settings: It introduces users to fundamental personalization options for the Taskbar, Desktop background, display, and accessibility features like text and cursor size.
    • Internet Access and Web Browsing: The source provides a step-by-step walkthrough of launching and using Microsoft Edge for the first time, along with basic web browsing concepts.
    • File Management Fundamentals: It explains core concepts like cut, copy, paste, and basic file and folder organization using File Explorer.
    • Importance of System Maintenance: The guide emphasizes the need for regular restarts and software updates to ensure system stability and security.
    • Security Considerations: It touches upon the built-in Windows Security and advises caution regarding third-party security software and online scams.

    Most Important Ideas and Facts

    The Taskbar

    • The Start button has moved from the far left to the center of the Taskbar.
    • “start button on all other versions of Windows prior to Windows 11 was always on the far left right now the far left is taken up by this little widget area all right but start button right here”
    • Clicking the Start button reveals pinned apps (default and user-defined) and recommended items (recent files, folders, and newly installed apps).
    • “when you click on your start button you get a view of a bunch of pinned apps which means uh just things that have been set into the uh default start area here right in front of you”
    • “underneath recommended you’re going to see uh recent files and folders that you’ve opened”
    • An All apps button in the top right of the Start Menu provides a full list of installed applications, accessible alphabetically with a jump-to-letter feature.
    • “if you want to see all your apps you have to go to this little button right here in the top right hand corner and when you click there you get the full list of installed apps and all their little icons”
    • Users can pin and unpin applications to both the Start Menu and the Taskbar for quick access.
    • “you can right click on it and say pin to start or if it’s already in start uh unpin from start”
    • “we could rightclick and we can say pin to taskar so so just as you can pin things into the start area you can pin and unpin things from the taskbar itself”
    • Single-clicking icons on the Taskbar or within the Start Menu opens applications, unlike the double-clicking required for desktop icons.
    • “double click on it from the desktop single click from start and single click when you’re looking at uh clicking on an icon in the taskbar”
    • The Power button is located within the Start Menu, offering options for shutdown, restart, and sleep. Shutdown is recommended over sleep for better system stability.
    • “when you’re done with Windows for the day you can click on the start button click on this little power icon and then click shut down I recommend shutting down over sleep”
    • Restarting the computer regularly (ideally daily or at least weekly) is important for releasing memory and resources, preventing system sluggishness.
    • “you shouldn’t let a computer run say for 30 days without restarting it because what happens is programs take up bits of memory and resources and they don’t always release them”
    • The right side of the Taskbar includes a hidden icons area (accessed via an upward arrow) for background applications like Windows Security.
    • “if you click on that and you may not have one depending on how many icons you have at play but uh what this is is like an area where they hide icons that are just for things that are just running in the background”
    • Visible icons on the right Taskbar provide access to features like OneDrive, language settings, network status, and volume control. Clicking the network or volume icon opens a quick settings panel.
    • “things that aren’t in this little hidden menu are the more visible icons that we see to the left of the uh time and here so uh one of these is Microsoft One Drive… and here is our little language area… and then we have our little Network icon… so the next one over is volume”
    • The notification area (bell icon) displays system notifications. Users should be cautious of urgent-sounding notifications, especially from websites, as they could be scams.
    • “right next to that we have a little notification area that little bell here… notifications do pop up just like this in the lower right hand corner… be careful because uh people can also get uh notifications from websites and other third parties… be wary of scams and stuff right”

    The Desktop

    • The area above the Taskbar is called the desktop, featuring a customizable wallpaper and icons for software and utilities.

    Taskbar Settings

    • Right-clicking the Taskbar and selecting Taskbar settings allows customization of Taskbar elements and behaviors.
    • Users can hide or change the appearance of the search bar, widgets, and the Task View button.
    • The Taskbar alignment can be changed to move the Start button back to the left.
    • “come down to the bottom here where it says taskbar behaviors right and click the little arrow pointing down there and then it has taskar alignment and you can choose to place the start button back on the left where your brain expects it to be”
    • The setting “Combine taskbar buttons and hide labels” controls how multiple windows of the same application are displayed on the Taskbar. “Never” will show each window separately with its label.
    • “where it says combine taskbar buttons and hide labels right so generally by default it’s on to always do that… if we switch this to uh never for example now instead of that layered File Explorer icon… now it actually shows me that I’m in pictures music and desktop”

    Desktop Icons

    • Right-clicking a desktop icon provides a context menu with options like cut, copy, rename (represented by an icon), share, and delete.
    • Deleted items are moved to the Recycle Bin and can be restored.

    Internet Access with Microsoft Edge

    • Microsoft Edge is the default web browser in Windows 11.
    • The first-time setup of Edge involves several prompts regarding data syncing, tracking, and theme selection. Beginners are advised to “start without your data” and decline most tracking offers to reduce complexity.
    • “this is the first time it’s sprun so you know welcome to Microsoft Edge and it’s going to ask you if you want to sign in to sync data right… but you know we’re beginners here so we’re going to say start without your data right now it’s going to ask you know you always want to have access to your recent browsing data right typically I like to say no to most of these offers”
    • The default homepage is Microsoft Bing. Users can navigate to other websites by typing the URL in the address bar.
    • Web browsing involves tabs, which can be opened using the “+” icon or by right-clicking a link and selecting “open link in new tab.” Tabs can be reordered.
    • The three-dot menu in Edge provides access to settings and other functionalities, including the option to hide the sidebar.
    • “this these three little dots here is the menu for all kinds of things right and that’s standard on Windows these days”
    • The default search engine used in the Edge address bar can be changed in the browser’s settings (e.g., from Bing to Google).

    Windows 11 Settings

    • The main Windows 11 Settings app can be accessed by right-clicking the Start button and selecting “Settings.” It is organized into different categories for system configuration.
    • Windows Update allows users to check for and install updates for Windows and other Microsoft products. Optional updates, including driver updates, can be found in Advanced options. Restarting the computer is often required to complete updates.
    • “right click on the start button and then click on settings right… Windows update if you click on that you can click on check for updates”
    • Personalization settings enable users to change the background (picture, solid color, slideshow, Windows Spotlight), colors, and themes, including high contrast themes for accessibility.
    • “One you might want to jump into right away if you like things to look the way you like them to look is personalization right and here is where you can change background and colors and themes Etc”
    • The classic Control Panel is still accessible by searching for “control” in the Start Menu. It provides access to various system settings.
    • “you can click on the start button but and type in the word control and you’ll see the control panel come up as an offering”
    • Key Control Panel settings include:
    • Mouse: Adjusting double-click speed and changing the pointer size and visibility (e.g., showing pointer location with the Ctrl key).
    • “One thing that I like to do on every new system is click on Mouse right and then here under double click speed I pull that all the way to the left so that it’s slow… I like to go down to Windows standard extra large right”
    • Power Options: Configuring power plans and sleep settings.
    • “another feature I would point out to you uh right now is programs and features so if we click on that uh it’s going to show us a list of all the programs that are installed on the system”
    • Programs and Features: Managing traditionally installed software. Note that modern “apps” are often managed differently (e.g., via right-click in the Start Menu).
    • Devices and Printers: Accessing settings for connected devices.
    • Date and Time: Adjusting the system date, time, and time zone. It’s recommended to set the correct time zone first.
    • “often that’s wrong when you get a new computer and you’re sitting in front of it the time Zone’s wrong or the or the just the time your right time zone but the time is off by a few minutes so you can jump in here and click on change date and time… also you can change your time zone right”

    Cut, Copy, and Paste

    • Cut (Ctrl+X): Moves selected text or files to the clipboard, removing them from the original location.
    • Copy (Ctrl+C): Duplicates selected text or files to the clipboard, leaving the original intact.
    • Paste (Ctrl+V): Inserts the content of the clipboard into the current location.
    • These functions work with text in applications like Notepad and with files and folders in File Explorer. Right-click menus also provide these options (often as icons in Windows 11).
    • “The default keys for uh those commands are it’s control X for cut… copy is contrl c for copy and then uh pasting is contrl V right”

    File Explorer

    • File Explorer is used to manage files and folders.
    • The left-hand navigation pane can be resized.
    • It’s useful to show file name extensions in the View settings to easily identify file types.
    • “what I like to do is click on view View and then go to show and then choose or select file name extensions right and then uh instead of it just saying Firefox installer here now it says Firefox installer.exe”
    • The “Expand to open folder” option (in Options > View) makes the navigation pane on the left dynamically display the currently open folder in the file system hierarchy (though this feature has a temporary bug in a recent update).
    • “if we scroll down to the bottom here I choose expand to open folder”
    • Files and folders can be viewed in different layouts (e.g., extra large icons, details). The “Details” view is recommended as it shows name, date modified, type, and size. Columns can be clicked to sort by that attribute.
    • “the one I tend to like is the details view here so that gives you the name the date modified the type and the size right and you can you can click on any of these headings to sort by that bit”
    • Users can create new folders by right-clicking in an empty area or using the “New” button in the ribbon. Files and folders can be dragged and dropped between locations.
    • “make sure you’ve clicked on the right somewhere in the white space on the right hand side right right and then you can click on new up here in the upper left and choose folder”
    • Right-clicking is context-sensitive, offering different menus and options depending on the element clicked.

    Display and Text Size

    • In Display settings (right-click desktop > Display settings), users can adjust the screen resolution. While the recommended resolution is usually the default, lower resolutions can make interface elements appear larger. Avoid resolutions with a vertical height below 768.
    • “you can click on display resolution here and choose a different resolution now the higher the highest number it tends to be the uh recommended resolution for your monitor and usually that’s going to be your default right but uh if you choose some smaller numbers uh you may find that uh everything just looks uh you know that much bigger and more visually accessible for you”
    • Text size can be adjusted in Accessibility settings (search “text size” in Settings). A slider allows users to increase or decrease the default text size. Be cautious of making text too large, as it may cause layout issues in some applications.
    • “in the uh find a setting area here just type in the word text and you’ll see text size all right click on that it’ll bring you to the accessibility Tex size area and there’s a little slider here”

    This briefing document provides a foundational understanding of the Windows 11 interface and essential functions as described in the source. New users are encouraged to explore these areas further to become comfortable with the operating system.

    Windows 11: Getting Started Guide

    Frequently Asked Questions: Getting Started with Windows 11

    1. Where is the Start Menu located in Windows 11, and how do I access my applications? In Windows 11, the Start button is located in the center of the taskbar, unlike previous versions where it was on the far left (that area is now occupied by the widgets). Clicking the Start button opens a view of pinned applications. You can navigate through multiple pages of pinned icons using the dots or arrows at the top. Below the pinned apps, you’ll find a “Recommended” section showing recent files, folders, and newly installed applications. To see a full list of all installed apps, click the “All apps” button in the top right corner of the Start Menu. Some apps may be located within folders, indicated by a yellow folder icon; click on the folder to see its contents. To quickly jump to apps starting with a specific letter, click on any letter in the app list, and it will highlight the sections of the alphabet that have content.

    2. How do I pin and unpin applications to the Start Menu and Taskbar for quick access? To pin an application to the Start Menu, go to the “All apps” list (via the Start button), right-click on the desired application, and select “Pin to Start.” This will add the application’s icon to your pinned apps view in the Start Menu. To unpin an application from the Start Menu, simply right-click on its icon in the pinned apps area and select “Unpin from Start.” Similarly, you can pin applications to the Taskbar for even quicker access. From the “All apps” list or the Start Menu, right-click on an application and choose “Pin to taskbar.” To remove an application from the Taskbar, right-click on its icon on the Taskbar and select “Unpin from taskbar.”

    3. What is the Taskbar, and how can I customize its appearance and behavior? The Taskbar is the bar located at the bottom of your screen in Windows 11. It contains the Start button, pinned applications, running applications (indicated by a small dot underneath their icons), widgets (on the far left), and the system tray (on the far right). You can customize the Taskbar by right-clicking on an empty area of it and selecting “Taskbar settings.” In the settings, you can toggle the visibility of search, task view, widgets, and the co-pilot (if available). Under “Taskbar behaviors,” you can change the “Taskbar alignment” to move the Start button back to the left. The “Combine taskbar buttons and hide labels” option controls how multiple windows of the same application are displayed; you can choose to always combine them (default), never combine them (showing individual icons with labels), or combine them when the taskbar is full. You can also unpin default icons you don’t use (like the Microsoft Store or Teams) by right-clicking on them and selecting “Unpin from taskbar.”

    4. How do I manage running applications using the Taskbar and Task View? The Taskbar displays icons for applications that are currently running. A small underline or dot beneath an icon indicates that the application is open. Single-clicking on an icon in the Taskbar will bring that application to the forefront. Hovering your mouse over a combined application icon (if you have multiple windows of the same app open) will show you thumbnails of all the open windows, allowing you to choose the one you want. Task View, which can be enabled in the Taskbar settings, provides a visual overview of all currently open windows. Clicking the Task View button on the Taskbar (it looks like two overlapping rectangles) will display all your open windows as thumbnails, allowing you to easily switch between them by clicking on the desired window.

    5. How do I shut down, restart, or put my Windows 11 computer to sleep? To shut down or restart your Windows 11 computer, click on the Start button, then click on the power icon located at the bottom right of the Start Menu. A small menu will appear with options to “Sleep,” “Shut down,” and “Restart.” It is generally recommended to shut down your computer fully rather than relying on sleep mode, as sleep can sometimes lead to issues with devices not waking up properly. Restarting your computer periodically (ideally daily or at least weekly) can help maintain system stability by clearing out used memory and resources that programs may not always release.

    6. How do I connect to the internet using Microsoft Edge for the first time, and what are some basic browser navigation tips? To connect to the internet, click on the Microsoft Edge icon on the Taskbar (it’s the blue and green “e” icon). The first time you open Edge, you will be guided through a setup process. It will ask about syncing data (you can choose to “Start without your data” for a simpler initial setup), importing data from other browsers (you can skip this), and allowing Microsoft to track browsing data (you can choose “Don’t allow” for more privacy). After going through these steps and potentially selecting a theme, you will arrive at the Microsoft Bing homepage, indicating you are online. To navigate to a specific website, click in the address bar at the top and type the website’s address (e.g., google.com). You can open new tabs by clicking the “+” icon next to the existing tab. To open a link in a new tab, right-click on the link and select “Open link in new tab.” You can switch between tabs by clicking on them. To change the default search engine used in the address bar, click the three dots (…) in the top right corner of Edge, go to “Settings,” search for “address bar and search,” and then choose your preferred search engine from the drop-down menu. You can also disable the sidebar in Edge settings under the “Sidebar” section.

    7. How do I manage files and folders using File Explorer in Windows 11? You can access File Explorer by clicking its icon on the Taskbar (it looks like a folder) or by searching for it in the Start Menu. In File Explorer, the left pane provides a navigation view of your folders. You can expand or collapse folders by clicking the small arrows next to them (though a recent Windows update may temporarily affect this functionality). The right pane displays the contents of the selected folder. You can change the view of files and folders (e.g., details, large icons) by clicking on the “View” tab at the top. To see file extensions (like .exe, .jpg), go to the “View” tab, click “Show,” and select “File name extensions.” To sort files and folders, click on the column headers (Name, Date modified, Type, Size). To create a new folder, navigate to the desired location, right-click in an empty area, select “New,” and then “Folder,” and give it a name. You can move or copy files and folders using cut (Ctrl+X), copy (Ctrl+C), and paste (Ctrl+V) commands, or by right-clicking and selecting the appropriate options. You can also drag and drop files and folders. Deleted items go to the Recycle Bin, from which you can restore them if needed.

    8. How can I adjust display settings and text size in Windows 11 for better visual accessibility? To adjust display settings, right-click on an empty area of the desktop and select “Display settings.” Here, you can change the display resolution. If icons and text appear too small on a high-resolution monitor, try selecting a lower resolution. Be cautious not to go below 1024×768 to avoid compatibility issues with some software. Also, pay attention to the aspect ratio to ensure the display fits your monitor without black bars. To change the text size, right-click on the Start button, go to “Settings,” type “text size” in the search bar, and select “Text size.” In the “Accessibility” settings, you’ll find a slider to adjust the text size. Drag the slider to make the text larger or smaller and click “Apply.” Be mindful that making the text too large might cause layout issues in some applications. You can also adjust the mouse cursor size in the Control Panel (search for “Control Panel” in the Start Menu, go to “Mouse,” then the “Pointers” tab, and choose a larger scheme under “Scheme”). In the Control Panel’s “Ease of Access” settings (or by searching for “make the mouse easier to use”), you can also enable features like showing the location of the pointer when you press the Ctrl key.

    Windows 11 Basics: A User’s Guide

    Let’s discuss some Windows 11 basics based on the information in the source.

    When you first encounter Windows 11, the bar at the bottom of your screen is called the taskbar. Several elements reside on the taskbar, with the most crucial being the start button, which is the four-square window icon. Unlike previous Windows versions where the start button was on the far left, in Windows 11, the far left is occupied by the widgets area, and the start button is located more towards the center.

    Clicking the start button reveals a view of pinned apps, which are applications set into the default start area. You might see multiple pages of these pinned icons, indicated by dots or arrows that allow you to navigate between the pages. Below the pinned apps, you’ll find the recommended section, displaying recently opened files and folders, as well as recently installed applications.

    To access all your installed apps, you need to click the button in the top right corner of the start menu. This will present a full list of apps and their icons. Some apps might be organized within folders, requiring you to click on the folder to see its contents. To quickly navigate this list, you can click on any letter, and it will highlight the sections of the alphabet that contain content.

    You can customize the start menu by right-clicking on an app in the ‘all apps’ list and choosing ‘Pin to Start’. If an app is already pinned, the option will be ‘Unpin from Start’. Pinned items generally appear at the bottom of the pinned apps view. Remember that opening a program from the start menu requires a single click.

    The taskbar itself also contains other icons by default. You can unpin these icons by right-clicking on them and selecting ‘Unpin from taskbar’. Similarly, you can pin applications to the taskbar by right-clicking on them in the start menu (either pinned or in the ‘all apps’ list) and choosing ‘Pin to taskbar’. Opening an application from the taskbar also requires a single click. Be mindful of this, as double-clicking can lead to opening multiple instances of the same application.

    On the far right of the taskbar, you’ll typically find a small up arrow that, when clicked, reveals a hidden area for background applications’ icons, such as Windows Security (the built-in antivirus). To the left of the time, you’ll see more visible icons, which might include Microsoft OneDrive for cloud file synchronization, language settings, the network icon indicating your internet connection status, and the volume icon for adjusting the system volume. Clicking on the network or volume icon often brings up a small panel where you can manage your network connection, volume, and access other settings like Night Light.

    Next to the time and date is the notification area, indicated by a little bell. Notifications from Windows and some applications will appear here and might also pop up in the lower right corner of the screen. Be cautious of notifications that create a sense of urgency, as they could be part of scams.

    The area above the taskbar is the desktop, where your desktop wallpaper is displayed and where you can place icons for frequently used software, utilities, files, and folders. Opening items on the desktop typically requires a double click.

    You can customize the taskbar by right-clicking on it and selecting ‘Taskbar settings’. Here, you can toggle the visibility of elements like the search bar, Co-pilot (which is in preview and might be best turned off initially), widgets, and the task view button. Task view, when enabled, allows you to see all your open windows at a glance and switch between them.

    In the taskbar settings, under ‘Taskbar behaviors’, you can change the taskbar alignment to move the start button back to the left, a familiar location for users of older Windows versions. Another useful setting here is ‘Combine taskbar buttons and hide labels’. By default, Windows 11 combines multiple windows of the same application into a single icon. You can change this to ‘Never’ or ‘When taskbar is full’ to see individual icons with labels, making it easier to identify specific open windows.

    On the desktop, right-clicking provides a context menu with options. In Windows 11, this menu initially shows icons for common actions like cut, copy, rename, share, and delete. If you prefer the classic right-click menu with full text options, you can often find an option like ‘Show more options’. You can rename desktop icons and delete them. Deleted items are moved to the Recycle Bin, which is usually located in the top left corner of the desktop. You can restore deleted items from the Recycle Bin by right-clicking on them and choosing ‘Restore’.

    To access the internet, the default browser in Windows 11 is Microsoft Edge, which is typically pinned to the taskbar. The first time you open Edge, you will be presented with several setup screens asking about data syncing, importing data, and tracking. For a basic setup, you might choose to start without your data, decline data synchronization, and opt not to allow Microsoft to track your browsing. The default homepage for Edge is usually the Microsoft Bing page. You can navigate to other websites by typing the address in the address bar at the top. You can open new tabs using the plus sign and close tabs with the ‘X’. You can also open a link in a new tab by right-clicking on it. The three dots menu in Edge provides access to various settings, including the option to hide the sidebar and to change the default search engine used in the address bar (e.g., from Bing to Google).

    The main Windows 11 settings can be accessed by right-clicking on the start button and selecting ‘Settings’. The settings are organized into different categories. Windows Update allows you to check for and install updates for Windows and other Microsoft products, including optional driver and Net Framework updates. It’s generally a good idea to keep your system updated. Personalization settings let you change the background wallpaper, colors, and themes, including high contrast themes for accessibility. You can choose a picture, solid color, slideshow, or Windows Spotlight as your background and adjust how the picture fits the screen.

    The older Control Panel is still available in Windows 11. You can access it by clicking the start button and typing ‘control’. In the Control Panel, you can switch to a small icon view for easier navigation. Some useful settings within the Control Panel include:

    • Mouse: Here, you can adjust the double-click speed (slowing it down can be helpful for users who struggle with fast double-clicks) and change the pointer size and options, such as showing the pointer location when you press the Ctrl key.
    • Power Options: You can manage your power plans and configure when the display turns off and when the computer goes to sleep. On laptops, you’ll have separate settings for battery and plugged-in power.
    • Programs and Features: This lists many of the traditionally installed software programs, allowing you to uninstall them. Note that some modern apps are managed separately through the start menu.
    • Devices and Printers: This area, which now redirects to the modern Settings app, shows your installed printers and scanners.
    • Date and Time: You can adjust the system date, time, and time zone here. It’s often a good idea to set the correct time zone first.

    Cut, copy, and paste are fundamental concepts in Windows for moving and duplicating text and files. You can perform these actions by right-clicking and selecting the appropriate option (icons in Windows 11’s initial right-click menu, full text options under ‘Show more options’) or by using keyboard shortcuts: Ctrl+X (cut), Ctrl+C (copy), and Ctrl+V (paste). When you cut or copy an item, it is temporarily stored in the clipboard. The clipboard usually holds only the last item you cut or copied. You can use these commands with text in applications like Notepad and with files and folders in File Explorer.

    File Explorer is the tool you use to manage your files and folders. You can adjust the width of the left-hand navigation pane by dragging the vertical line. By default, File Explorer shows the file type, but it’s helpful to enable file name extensions by going to View > Show > File name extensions. This will display the full file name, including extensions like ‘.exe’, ‘.jpg’, ‘.png’, making it easier to identify file types.

    In File Explorer’s options (accessed via the three-dot menu > Options), under the View tab, you can select ‘Expand to open folder’. This setting, when working correctly, should cause the left-hand navigation pane to automatically expand and highlight the folder you are currently viewing, providing a clear visual representation of your location within the file system. However, the source mentions a potential bug where this might not always work as expected after a recent update.

    File Explorer offers different views for your files and folders (accessed via the down arrow on the ‘View’ option), including extra large icons, large icons, small icons, list, and details. The details view, which is often preferred, shows the file name, date modified, type, and size. You can sort the files by clicking on these column headers.

    The left-hand pane of File Explorer displays the folder structure. You can expand or collapse folders by clicking the arrows next to them. To organize your files, you can create new folders within existing ones by right-clicking in the right-hand pane and selecting ‘New > Folder’ or by clicking ‘New folder’ in the upper left. You can then drag and drop files into these folders to create a logical structure. You can also create new files, like text documents, by right-clicking and selecting ‘New’. The breadcrumb bar at the top of File Explorer shows your current location and allows you to navigate back up the folder hierarchy.

    Right-clicking is a context-sensitive action in Windows. The menu that appears depends on what you click on. Experimenting with right-clicking on different elements like files, the taskbar, icons in the system tray, the start button, and the desktop can reveal various options and shortcuts. For example, right-clicking on the desktop allows you to access Display settings and Personalize.

    In Display settings (accessed via right-click on the desktop > Display settings), you can adjust the display resolution. On high-resolution monitors, the default resolution might make icons and text appear very small. Lowering the resolution can make everything larger and more accessible. However, it’s advised not to go below a resolution of 768 in the vertical dimension to avoid compatibility issues with some software. Also, be mindful of the aspect ratio when choosing a resolution to avoid black bars on the sides of your screen.

    For further visual adjustments, you can change the text size in Windows 11. To do this, search for ‘text size’ in the settings app (Windows key + I, then type ‘text size’) and go to the Accessibility > Text size area. A slider allows you to increase or decrease the text size, with a preview of how it will look. Be cautious not to make the text too large, as it might not fit properly within some application interfaces.

    Windows 11 Start Button Functionality

    The Start button in Windows 11 is represented by a little Four Square window icon located on the taskbar. Unlike previous versions of Windows where the Start button was always on the far left, in Windows 11, the far left of the taskbar is occupied by the widget area, and the Start button is positioned to its right.

    Clicking the Start button reveals several key areas:

    • Pinned Apps: This is the default view upon clicking the Start button, displaying a set of applications that have been set into this area for quick access. There can be multiple pages of pinned icons, indicated by little dots at the bottom, allowing you to navigate between these pages.
    • Recommended: Below the pinned apps, this section displays recent files and folders that you have opened. It also shows recently installed applications, making them easier to find. For example, if you installed the Chrome browser, its icon would likely appear under “recommended”.
    • All Apps: In the top right-hand corner of the Start Menu, there is a button that, when clicked, displays a full list of all installed applications and their icons. Some of these apps may be organized within folders, requiring you to click on the folder to see its contents.
    • Alphabetical Navigation: Within the “All Apps” list, you can quickly jump to different parts of the alphabet by clicking on any letter. The letters that have associated content are displayed in a highlighted or bold manner.
    • Pinning and Unpinning: You can customize the pinned apps area by right-clicking on any app in the “All Apps” list and selecting “Pin to Start“. Conversely, if an app is already pinned, right-clicking on it in the Start Menu will give you the option to “Unpin from Start“. Newly pinned items generally appear at the bottom of the pinned apps list.

    The Start button also provides access to the power options. By clicking the Start button, you will find a little power icon, which, when clicked, presents options to “Shut down“, “Restart“, or “Sleep” your computer. The source recommends shutting down over using sleep to avoid potential issues with the system not fully awakening. Restarting your computer regularly (e.g., daily or at least weekly) is advised to maintain system stability by releasing memory and resources that programs may hold onto.

    In summary, the Start button in Windows 11 serves as a central point for accessing installed applications, recent files, and system power options. It offers a customizable view of frequently used apps through the pinning feature and allows for easy navigation through the entire list of installed software.

    Windows 11 Taskbar Customization Guide

    The Windows 11 taskbar offers several ways to be customized. You can access these customizations by right-clicking on the taskbar and selecting “Taskbar settings”.

    Here are the key areas for taskbar customization discussed in the sources:

    • Pinning and Unpinning Apps: You can remove default icons from the taskbar that you don’t use by right-clicking on them and selecting “Unpin from taskbar“. Conversely, you can add applications to the taskbar for quick access by clicking on the Start button, finding the desired app in the pinned apps or the “All apps” list, right-clicking on it, and selecting “Pin to taskbar“.
    • Managing Hidden Icons (System Tray): On the right side of the taskbar, a small up arrow may be present. Clicking this arrow reveals a hidden area for icons of applications running in the background that don’t need constant visual presence. You can interact with these background apps by clicking on their icons in this hidden menu.
    • Taskbar Settings: The “Taskbar settings” menu provides various options to modify the taskbar’s appearance and behavior:
    • Search: You can choose to hide the search bar, show only the search icon, or display the full search bar. Even if hidden, the search functionality is still accessible by clicking the Start button and typing in the search bar at the top.
    • Co-pilot: There is an option to turn off the Co-pilot (preview) feature.
    • Widgets: You can turn off the widgets that appear on the left side of the taskbar if you are not interested in seeing information like weather updates.
    • Task View: The Task view button can be turned on or off. When enabled, clicking it shows a list of all currently open windows, allowing you to quickly switch between them.
    • Taskbar Alignment: You can change the alignment of the taskbar icons and the Start button. By default, they are centered, but you can choose to align them to the left, which is where the Start button was located in older versions of Windows.
    • Combine Taskbar Buttons and Hide Labels: This setting controls how multiple windows from the same application are displayed on the taskbar.
    • The default is to “Always, hide labels“, which means multiple instances of an application are grouped under a single icon with a visual cue (like a shadow) indicating multiple windows are open. Hovering over the icon shows previews of the open windows.
    • You can change this to “Never“, which will display a separate icon with its label for each open window. This takes up more space on the taskbar but allows you to see immediately which windows are open.
    • The “When taskbar is full” option will show individual icons and labels until the taskbar runs out of space, at which point it will start combining them.

    In addition to these settings, you can also directly unpin an application from the taskbar by right-clicking on its icon and selecting “Unpin from taskbar”.

    Windows 11 File Explorer Management

    File Explorer in Windows 11 provides various tools and features for managing your files and folders. Here’s a discussion of File Explorer management based on the information in the sources:

    Accessing File Explorer: While not explicitly stated how to open File Explorer, the source demonstrates its usage by navigating to “downloads”, opening different folders, and accessing the “documents” folder. It can generally be accessed via an icon on the taskbar or through the Start Menu.

    Navigating the File System:

    • File Explorer displays a left-hand pane that shows the folder structure.
    • Folders can be expanded or collapsed by clicking the arrows next to them. A downward-pointing arrow indicates an expanded folder.
    • Clicking on a folder in the left-hand pane displays its contents in the main right-hand pane.
    • The vertical line separating the left and right panes can be dragged to adjust the width and make folder names more readable.
    • The source mentions a feature “expand to open folder” which, when enabled in the Folder Options (accessed via the hamburger menu -> Options -> View tab), is intended to automatically expand the folder you are currently in within the left-hand navigation pane, providing a constant visual of your current location in the file system. However, the source notes a potential bug where this might not always function as expected.

    Viewing Files and Folders:

    • File Explorer offers different ways to view the files and folders within a selected location, accessible via the View tab in the ribbon. These include:
    • Extra large icons, Large icons, Small icons.
    • List view, which shows only the file names without additional details.
    • Details view, which displays the name, date modified, type, and size of the files and folders. This is the preferred view according to the source.

    Sorting Files and Folders:

    • In Details view, you can sort the displayed items by clicking on any of the column headers (Name, Date modified, Type, Size). Clicking once sorts in ascending order, and clicking again reverses the sort order. This allows you to easily organize files by name, find the most recent files, group files by type, or order them by size.

    Showing File Name Extensions:

    • By default, Windows may hide file name extensions (e.g., .exe, .jpg, .docx). The source strongly recommends showing file name extensions for better clarity about file types. This can be enabled by going to the View tab, clicking on Show, and selecting “File name extensions“. Once enabled, the full file name, including its extension, will be visible (e.g., “Firefox installer.exe”).

    Organizing Files and Folders:

    • You can create new folders within any location in File Explorer. To do this, right-click in an empty area in the right-hand pane and select New > Folder. You can then type a name for the new folder. Alternatively, you can click on New in the upper left corner of the File Explorer window and choose Folder.
    • You can create a folder structure with main folders and subfolders to better organize your files. Files can be dragged and dropped into these folders from other locations within File Explorer.

    Renaming and Deleting Files and Folders:

    • To rename a file or folder, you can right-click on it. In Windows 11, a context menu with icons will appear. The icon that looks like a file with a pencil is for Rename. Hovering over the icons will also show their function. In older versions of Windows, selecting “Show more options” in the right-click menu would display the classic menu with the full word “Rename”. After clicking the rename option, you can type the new name and press Enter. The source demonstrates renaming an icon on the desktop, and the same principle applies within File Explorer.
    • To delete a file or folder, you can right-click on it and select the delete icon (which looks like a trash can) from the context menu. Again, selecting “Show more options” might show the full word “Delete” in a classic menu. Deleted files and folders are moved to the Recycle Bin.
    • You can restore deleted items from the Recycle Bin by opening it (usually found in the top-left corner of the desktop by default), right-clicking on the desired item, and selecting “Restore“.

    Cut, Copy, and Paste:

    • File Explorer supports the cut, copy, and paste operations for managing files and folders.
    • Cut (Ctrl+X or right-click and select the scissors icon or “Cut” under “Show more options”) removes the selected item from its current location and places it on the clipboard.
    • Copy (Ctrl+C or right-click and select the two overlapping rectangles icon or “Copy” under “Show more options”) duplicates the selected item and places the copy on the clipboard, while the original remains in its location.
    • Paste (Ctrl+V or right-click in the destination location and select the clipboard icon or “Paste” under “Show more options”) inserts the item from the clipboard into the current location.
    • The clipboard temporarily holds only the last item that was cut or copied.

    These features within File Explorer enable you to effectively navigate, organize, and manage your files and folders in Windows 11.

    Windows 11: Cut, Copy, and Paste Essentials

    The concepts of cut, copy, and paste are fundamental for managing information within Windows 11, whether it be text, files, or folders. These actions allow you to move or duplicate data between different locations or applications.

    How Cut, Copy, and Paste Work:

    • Cut: The cut operation (Ctrl+X or right-click and select the scissors icon or “Cut” under “Show more options”) removes the selected item from its original location and places it temporarily on the clipboard. Think of it like physically cutting something out.
    • Copy: The copy operation (Ctrl+C or right-click and select the two overlapping rectangles icon or “Copy” under “Show more options”) creates a duplicate of the selected item and places this copy on the clipboard, while the original item remains in its place.
    • Paste: The paste operation (Ctrl+V or right-click in the destination location and select the clipboard icon or “Paste” under “Show more options”) inserts the item currently stored on the clipboard into the new location.

    The Clipboard:

    The clipboard is a temporary storage area in your computer’s memory. When you cut or copy an item, it is stored in the clipboard. By default, the clipboard can hold only one item at a time. If you cut or copy something new, it replaces the previous content of the clipboard. When you paste, you are inserting the last item that was cut or copied.

    Using Cut, Copy, and Paste with Text:

    The source demonstrates these actions within Notepad, a basic text editor.

    1. Select the text you want to cut or copy by clicking and dragging your mouse over it.
    2. To cut: Right-click on the selected text and choose cut (or press Ctrl+X). The text will disappear from its original location and be placed on the clipboard.
    3. To copy: Right-click on the selected text and choose copy (or press Ctrl+C). The text will remain in its original location, and a copy will be placed on the clipboard.
    4. To paste: Position your cursor where you want the text to appear, right-click, and choose paste (or press Ctrl+V). The text from the clipboard will be inserted at the cursor’s location.

    Using Cut, Copy, and Paste with Files and Folders:

    You can also use these operations to manage files and folders within File Explorer, as discussed in our previous turn.

    1. Select the file or folder you want to cut or copy.
    2. To cut: Right-click on the selected file or folder and choose the scissors icon (or select “Cut” under “Show more options”). The item will be removed from its current location.
    3. To copy: Right-click on the selected file or folder and choose the two overlapping rectangles icon (or select “Copy” under “Show more options”). The original item will remain.
    4. Navigate to the destination folder where you want to move or duplicate the item.
    5. To paste: Right-click in an empty area within the destination folder and choose the clipboard icon (or select “Paste” under “Show more options”). The cut or copied item will now appear in the destination.

    The source emphasizes that the concept of cut, copy, and paste is a fundamental skill in Windows and is consistent across various applications, including text editors, file managers, and even within applications like Microsoft Excel for manipulating cells in a spreadsheet. You can use either the right-click menus or the keyboard shortcuts (Ctrl+X, Ctrl+C, Ctrl+V) to perform these actions.

    ✔️ How to Use Windows 11 – Basics Tutorial for Beginners – Computer Guide for Dummies

    The Original Text

    welcome to Windows 11 the first thing you need to do is get oriented so what are you looking at here this bar along the bottom is called the taskbar and on the taskar there are a variety of elements uh the most important of which is this icon right here the little uh Four Square window icon and that is your start button so start button on all other versions of Windows prior to Windows 11 was always on the far left right now the far left is taken up by this little widget area all right but start button right here now when you click on your start button you get a view of a bunch of pinned apps which means uh just things that have been set into the uh default start area here right in front of you when you click on the button and if you’ll notice these two little dots there’s a couple of pages of pinned icons right so you can move between those pages by clicking on the dots or clicking on the little arrow to go to the next one so if you have a lot of pinned items you might have five pages right that kind of thing underneath recommended you’re going to see uh recent files and folders that you’ve opened right this is a new installation here so nothing’s been opened uh there’s just the get started welcome to Windows thing but uh recent files and folders and if you’ve recently installed something uh generally the icon will show up here so if you installed the Chrome browser for example you would see the Chrome uh browser icon under recommended that makes it easier to find uh you know what you’ve recently taken action on all right now if you want to see all your apps you have to go to this little button right here in the top right hand corner and when you click there you get the full list of installed apps and all their little icons now some of them like here for example you have little yellow folder symbol uh it you actually have to click on the folder and then you get uh the full set of icons in that folder right so a lot of them aren’t in folders uh but some of them are right and uh things that you should know about these little icons are that if you’re trying to search for something that’s you know way down in a further letter you don’t want to scroll scroll scroll right you can uh click on any of the letters you know here we click on G for example and it’ll show you a highlighted map of which letters have uh content right so anything in the Bold like our for example here brings us back to that folder that uh we looked at earlier uh so again any letter and you can jump anywhere in the alphabet and you know get more quickly to what you want to see the other thing is that if you have something that you uh like to run into or open up a lot uh you can right click on it and say pin to start or if it’s already in start uh unpin from start so what that means of course is that when we click on start here that was paint right so here we already have uh the paint icon but if it was out say if I unpin it here and then I go back into all apps and then click on any letter go to P there’s our paint rightclick I can pin to start and then it will show back up but generally at the bottom yeah it it’ll become the last item all right so that’s a quick view of this area for getting into programs and you just click once on any of these icons to open that actual program or app they call the maps these days uh which is different from the desktop over here if you wanted to open Firefox Firefox from the desktop you’d have to double click so double click on it from the desktop single click from start and single click when you’re looking at uh clicking on an icon in the taskbar right A lot of people get confused about that and say they’ll click twice here on Microsoft Edge and actually open two copies of it right so because they’re used to you know in older versions of Windows almost everything was double clicked open right so a lot of things now are single click so try and keep that in mind uh and that’s almost certainly what’s happening if you open two things at once when you meant to open one you’re double clicking when you should have single clicked now also in your start button is your power button so uh that’s pretty critical to know a lot of people can’t figure out immediately how to shut down their system right so when you’re done with Windows for the day you can click on the start button click on this little power icon and then click shut down I recommend shutting down over sleep uh you know generally speaking because Microsoft has never seemed to get sleep right in terms of uh you know I do it stuff right so I often have people call me up and say this isn’t working that’s not working and what’s happened is their computer’s gone to sleep but when it’s uh awakened not all of it has awakened so their say their network card didn’t wake up properly and now they can’t get online until they restart their computer computer and everything gets refreshed so and that’s another thing that you should know okay so you’ve got your little power button you know aside from shutting down restarting is often uh something that you should do particularly if you if you like to leave your computer on all the time which is something that I tend to do myself uh but you shouldn’t let a computer run say for 30 days without restarting it because what happens is programs take up pits of memory and resources and they don’t always release them and then your computer has less and less and less to work with and it’s kind of like uh you know going crazy you your your mind is getting smaller and smaller until the system starts acting really weird and uh the cure for that so often just restart your computer so I tend to restart mine at least once a day just you know as I’m leaving for lunch or something just hit the restart and then so by the time I come back it’s all up and ready to go again of course uh you don’t have to every single day I’m not saying that it’s a hard and fast rule if you’ve got a lot of things open and you you know restarting would interrupt your workflow you know let it ride but don’t let it go for more than a week uh if you want uh to keep things stable all right so that is the start button um these other icons on the taskbar here are the default ones at least for my uh region here and you can you can change these and clean these up right so for example I don’t use the Microsoft store uh very often so I would rightclick and say unpin from taskbar right and uh I don’t use Microsoft teams much so I would right click and say unpin from taskbar but if we wanted to put something on the taskbar we could click on start and see a lot of people like uh to play solitire and that would be something they’d want down there so we could rightclick and we can say pin to taskar so so just as you can pin things into the start area you can pin and unpin things from the taskbar itself so uh moving on down the line into the right hand side of the taskbar uh first thing we come across is this little up Arrow here if you click on that and you may not have one depending on how many icons you have at play but uh what this is is like an area where they hide icons that are just for things that are just running in the background that don’t necessarily always need to be visually in front of you but need to be available so for example this here is Windows security which is the built-in antivirus for Microsoft Windows so I can click on that little up arrow click on that icon and then it brings me my security add glance here right so I can expand that and uh when you have these little triangles with the exclamation point here it’s it’s giving you uh hints warnings advice that kind of thing so uh you know you can read the notices and see whether you want to act on that right I won’t go into all of the details of the security right now but what I would say is generally speaking you don’t really need to buy something like Norton Antivirus or maffy or what have you uh you know they do have the built-in Antivirus for Windows and generally speaking it it’s pretty good it’s not the best out there but uh in some ways it is just because uh you know say for example maafi is just going to keep trying to sell you more and more and more security it’s like uh you know if You’ got a a club and you need a bouncer at the door you know one bouncer is going to generally be fine right you don’t need seven bouncers they’re just going to block the door and slow things down and maybe scare away customers right so uh if that analogy works for you I don’t know but it’s kind of how I feel about you know third party companies coming in and and trying to oversell security to you right so now things that aren’t in this little hidden menu are the more visible icons that we see to the left of the uh time and here so uh one of these is Microsoft One Drive which is uh kind of like a cloud offering for sharing files and between your different systems so say if you have a laptop and you have a desktop and you have your one Drive account so you can use one drive to synchronize your documents and pictures and music and stuff between those two computers so there’s there there’s uh everything’s going to be save to the cloud and then whenever you change something it gets updated in the cloud and when you whenever you go to the other computer and turn it on it’s going to download all the changes so so that if you’re working on a book for example on your desktop you know you’ve gotten up to chapter 3 you go over to your laptop you turn it on it synchronizes you’ve got chapter 3 on your laptop without having to run around with you know a USB stick or a CD or whatever so uh you know that that’s that thing and here is our little language area so you know I’m in Canada uh the default language for PCs is the US and so I have those two languages you may have more but uh this is how You’ switch uh with your mes between languages right and then we have our little Network icon which tells us uh you know whether we’re online or offline or whatever this is a wired network uh you may have a wireless bit there but when you when you click on that you see how these two both these icons get highlighted when I click so the next one over is volume right uh so whether I click on volume or network I get this little uh area here that pops up and you know I can I can change my um volume by using this slider here and then uh you know depending on uh what kind of network you’re on if it if there if this was a Wi-Fi network for example it might have airplane mode you know or this kind of thing going on and you can change other things here like accessibility settings and you know whether you want your screen to uh I think it could cut back on Blue Light the Night Light thing right uh so that uh it doesn’t interfere with your sleep as things go later in the day you can change the way the light comes off your monitor and and make things healthier for you that kind of thing so so this is it’s kind of like another widget area you know uh but more technical than the one on the left hand side here and of course here we have our time and date and right next to that we have a little notification area that little bell here right now uh do not disturb is on um but you know if if that was on we might see a few notifications from Windows about things that have been happen happening recently Etc and notifications do pop up just like this in the lower right hand corner so if the system has something to say to you generally speaking uh something will pop up in the lower right but be careful because uh people can also get uh notifications from websites and other third parties uh generally through uh giving them permission when you’re using your browser and uh those third part parties often try to imitate your system and you know for example pretend that you’ve got a virus and that you have to take action right away and basically I’m saying be wary of scams and stuff right so so be careful uh what you click on and what you react to and you know I guess generally speaking the way scams tend to work is that uh they they give such a sense of urgency like you have to act now without thinking right and usually your system won’t treat you quite that roughly so so that’s one way to kind of tell the difference between the two so uh you know that’s a quick overview of the taskbar above the taskbar is what we just generally call the desktop right and uh this is the picture here is your desktop wallpaper right which can be changed and then of course you have all your icons on your desktop for uh different software and utilties and stuff and this whole list can change and if you’ve been working on your computer for a while it basically fill up your whole screen with these kinds of things so you get files and folders and and icons to programs and stuff so uh now if you want to do some uh tweaking of your taskbar you can right click on it and click on taskbar settings all right and the first area here let’s expand this can maximize it with that middle button so so we can quickly go over that so every window in Windows generally speaking uh there there’s going to be a few exceptions where you only see the X right but uh you’re going to have the X here which will close the window you’re going to have this icon which you can use to maximize or restore right and then you see if you hover over it you get these uh little options so if I wanted to put it on the right hand side of the screen we can do that right or um if uh you know we wanted top right corner like so all right and uh but if you just click on it once you’re going to get the maximize right which is what we were after in the first place and the one here this is just minimize so if you click on the little dashed line there it’ll shrink down just to the tab bar and you see that it has this little dott under it showing that it’s it’s running right it’s it’s open but not visible so we can click back on that to uh restore it to whatever size it was before it was minimized so anyway this is the settings for the taskbar and you can actually turn things off like so if you don’t use your search you can turn that off you can say you know hide search and it’ll disappear or if you don’t want it to be so big you can put search icon only and then you you’d have to click on the icon before you put in any search um one thing I would just tell you is that if you hide it uh you save all that space and you still have that search functionality if you click on start and you click up on the the search bar at the top you’re going to get the the same kind of uh functionality right so not necessarily necessary but uh you know we’ll put it back to the default so that things look familiar now co-pilot is is something that’s in preview uh I would just turn that off for the moment um myself because um you know I I generally don’t like to play with things that are in beta mode right um and we have other things that we can turn off like we could turn off the widgets in the left if you’re not interested in and seeing the weather and the you know currency conversion rates and stuff showing up on your computer Compu all the time and uh also there’s this little um task view button here that we can turn on and off and I’ll show you what that is so save right now we have the taskbar settings open and if I open say file explorer here now we have two different windows open if I click on task view then it shows me a list of all the windows that are open so if I had 12 things open I’d have 12 little squares here and then you can you see the little preview and then you can quickly switch between them right so I’ve pulled up my file explorer if I go back to task view here and click on settings then I bring settings to the front right so uh we’ll close file explorer here for the moment so so if you use that you could leave it on again if you don’t save a bit of room and turn it off all right and uh another thing that a lot of people really appreciate because they’re used to older versions of Windows is you know uh hide your widgets right and then come down to the bottom here where it says taskbar behaviors right and click the little arrow pointing down there and then it has taskar alignment and you can choose to place the start button back on the left where your brain expects it to be right and another thing that I would say is very useful here where it says combine taskbar buttons and hide labels right so generally by default it’s on to always do that and and what that means is that say here again if we open File Explorer I can open another File Explorer by uh right clicking and clicking on file explorer again and then I say I can do that a third time and you see we still only have the one icon although it has that little uh shadow of or visible edge of something behind it to show that there are some stacked and if you want to move between the three uh windows that you have open if you hover over that icon you see the three different uh panels that you you can just choose between them now so if you know let’s go to the desktop here and this one was on let’s go to music here and let let’s put this one to pictures right so we’re in these three different folders now if we go if we go back to our settings and we switch this to uh never for example now instead of that layered File Explorer icon which visually doesn’t give you a lot of information now it actually shows me that I’m in pictures music and desktop takes a bit more room on your taskbar but you can actually see immediately what it is and then you can just go up I want to go back to my desktop I want to go back to my pictures I want to go back to my music so that’s why I would say uh you know if you follow my personal preference either choose never or uh when taskbar is full which would mean that it’ll it’ll show you the bigger bits until you fill up the taskbar and then it’ll start layering things all right so um you know your choice I’m going to stick it back on the default uh for the the moment but uh you know if it was my system I would put put it on never right let’s close these guys off now so that’s an overview of the the uh basic visuals right now if we wanted to delete an icon or rename an icon on the desktop we would rightclick and we get this menu here and this is different than earlier versions of Windows where say uh if we had uh right clicked well actually what we would see I can show you what we would normally see if I click on show more options now I’m going to get that classic uh rightclick menu uh where I have you know rename for example is spelled out for us right but now in Windows 11 if I rightclick I get this little icon for renaming right so a lot of the basic most common functions the the the the full typed name has been replaced by these little things so here’s if you hover over it shows you what it is here’s cut right copy rename share and delete right so if I wanted to just take the x64 off of Reaper here I could delete that and hit enter it wants admin permission I’m going to say go ahead and continue so I’ve renamed that icon I can also right click cck and delete it right and then a handy thing to know is that if you delete something it’s going to go into your recycle bin right so we open up the recycle bin which by default is going to be tucked away here in the top leftand corner of your desktop we can find the file in the recycle bin right click on it and click on restore it wants to confirm that we click on continue and and there it is back on our desktop now one of the most common things that you’re going to want to do on your windows 11 PC is Jump onto the internet and to do so in the normal case you’re going to use Microsoft Edge which we have down here on the taskbar you can install Firefox or Chrome or any other browser but uh you know if you’re new to Windows you probably haven’t done that and you’re going to need to start with Microsoft Edge now the warning is is that the first time that you open Microsoft Edge Microsoft is going to hit you with a number of questions and offers and it’s going to be quite confusing just to get to the point where you’re actually online and can do something so let me walk you through that process here so we’re going to click on edge and this is the first time it’s sprun so you know welcome to Microsoft Edge and it’s going to ask you if you want to sign in to sync data right so syncing data is a kind of an advanced thing where if you have a desktop and a laptop you work computer you can sign in with your the same Microsoft account and your your settings like your favorites and you know your your site history search history that kind of thing will be synchronized across the computer so so that your experience on each computer is uh standardized and very similar right but you know we’re beginners here so we’re going to say start without your data right now it’s going to ask you know you always want to have access to your recent browsing data right typically I like to say no to most of these offers so you know the less tracking that Microsoft does or that any third party does uh you know the less your computer has to do and the less there is to go wrong and the less other people know about every little thing that you’re doing of course so I’m going to say don’t allow and confirm and continue right and then here they’re offering to import data from elsewhere again you know let’s forego the data synchronization stuff say continue without this data and then uh Microsoft wants to track everything you do so that they can see you know how you work and how other people work and then based on that information ostensibly you know make their offerings more useful and targeted to their customers again let’s reduce the complexity and the flow of data going to say don’t allow and say confirm and start browsing so you think that means start browsing but not quite yet right so here we have uh they’re offering different themes right so you know there’s different colors Etc if you’re into having you know public G browser or whatever go ahead and click on one of those but um basically I would just click finish here now we’re actually on the web all right so the the default uh homepage is uh the Microsoft Bing uh homepage right uh here they’re asking questions you can close these little popups in the right hand bottom right hand corner can be quite annoying anyway so here we go we’re online if you want to go to a particular website like for example if you want uh instead of searching the web with Bing if you want to go to Google you can click in the address bar at the top here and type in google.com or whichever oneca whichever you use and you get to that site they have their own offerings right so we can say stay signed out right there’s there’s different tabs right so here’s here’s another tab uh which is just a welcome to Microsoft Edge tab that automatically opened right we can close that by hitting the little X but if we wanted to open our own extra tab there’s there’s a little plus sign right here we can open that up and we have a whole new page so say if I went to Google on both tabs and here on this tab you know we can search for pigs and on this tab we can search for ducks all right you don’t stay signed out there ah sport Ducks I was thinking the animal but there you go so then you can move between the two tabs you can even reorder the tabs you know drag one over and and put them in order so in this way uh if you’re doing a bit of research on something and you know for example you’re looking at real estate you can open several tabs and and kind of keep track of the properties you’re interested in ETC so uh one thing also to know is that you know instead of doing a search and going through the whole trying to find a page once you open a new tab uh when you are on a tab say if we’re looking at uh the links here and you say okay well the Wikipedia article would be interesting you can right click and say open link in new tab and it’ll open in a new tab right next to the one that you’re on right and then you can keep going down and go oh National Geographic Kids has something right right click opening a new tab so now we have you know these two articles on pigs that we can refer to and of course you can you can just keep going and have a whole bunch of tabs open and uh you know be able to move freely between them all right and uh the other thing to know about Edge that would be most significant I would say is that this these three little dots here is the menu for all kinds of things right and that’s standard on Windows these days and even on the web you’ll probably have noticed that these little uh uh three dot I think they call them hamburger menus but anyway uh those are the menus that get you into all the extra functionality right so for example if we click on those dots and we click on settings we get a whole area here where we can tweak things so for example Edge has this sidebar here which uh you may just find distracting as a beginner so you could click on sidebar here and just say uncheck always show sidebar right and then voila it disappears right and say if we want to go to a particular setting we can say type in Search and it will give us the different elements that are relevant to search right and if we look for our default say address bar and search right down here near the bottom if we click on that we can say which search engines we want to use by default when we search from the address bar so right now of course on a Microsoft system it’s Microsoft Bing but we could switch that to Google right and now if we go and we just go to the address bar and we type in save horses we get a Google result right so it’s a quick way to uh enable your favorite default search engine speaking of settings if you want to jump into the settings area for Windows 11 itself right click on the start button and then click on settings right we can maximize that right we have all these different categories where we can jump in and tweak things right so for example Windows update if you click on that you can click on check for updates and windows will you know reach out to Microsoft and see what updates for Windows there happen to be uh there’s some Advanced options for that if we clicked on that uh we can click on this is usually off by default I tend to turn it on receive updates for other Microsoft products like Microsoft Office or whatever and uh also I like to be notified whenever restart is required that’s usually off I turn that on all right and uh and here’s an interesting area so uh you know if you noticed when we were on just the plain Windows update thing just says you’re up to date right but if when we go into advanced options we go down to optional updates there’s two available all right so if we click on that we get these different categories driver updates and other updates under driver updates we have a display update for this system and other under other updates we have a Net Framework update right so if you find that your system is uh acting a little unstable or if you just like to know that everything is as up to date as it can be you can pop into this area select those updates and click download and install right and once you click on that it’ll bring you back to the main Windows update uh area and you’ll see that the updates are downloading now generally speaking when uh updates are running you can go ahead and do other things you know we could close this off and just do other things well updates are running and eventually you’ll get a notification in the bottom right saying that the computer would like to restart you don’t have to restart right away uh you know if you’re writing out something a letter an email or you know reviewing do something online uh you could wait but uh ultimately you’ll want to restart to finish the update uh you saw the screen go black there that’s because one of the updates was for the display and it’s not unusual for the display to uh jump around while the video uh display driver is being updated so now those updates are complete and we can look around at some of the other offerings here uh one you might want to jump into right away if you like things to look the way you like them to look is personalization right and here is where you can change background and colors and themes Etc so if we click on background you know we have the default Windows 11 swirly here is is uh what we’ve been looking at so far uh this is a relatively nice one uh I minimize this to show you what that looks like one of the reasons I like this one is that uh it’s it’s mostly dark and the icons on the desktop that show up with their names nice and cleanly against that darker background all right uh this one looks fairly interesting as well uh it looks like colorful potato chips to me anyway so um let’s just switch back to what we’ve been looking at so that’s with the picture background but you could also just choose a solid color for for example right so uh black is the default choice for that uh which would just give us uh a nice clean black screen with that high contrast uh for icons and stuff if I don’t have a picture this is the color I would prefer on my system right and uh other than that uh it’s a bit more advanced I won’t get into it right now but you can set up a slideshow or you can uh let Microsoft put things all over your desktop by choosing Windows Spotlight all right but we’ll go back and just put it back to picture and the other thing that you should know about when you have a picture as a background is you’ve got these fill options right uh how it’s going to I should say fit options the option chosen here is fill but uh if you’re going to fill the screen then there’s going to be no uh no edges visible like like if the aspect ratio is different than your monitor uh you know whichever side needs to stretch out to fill the screen is going to stretch out and then some of the image might be cropped up if you choose fit then the whole image will fit but then you might have uh you know black or other colored bars on either side or on the top and bottom because of the different aspect ratio for the image uh versus the Monitor uh then we have stretch which would uh just stretch the image to exactly fit your monitor uh but could distort it if the aspect ratio is off uh there’s also tile so say if you had a small square image of uh you know whatever a cookie and you had uh it could tile you know so many times across and so many times up and down you’d have so many cookies right and of course we have Center which is just put it in the center of your screen at its natural size so if it’s a tiny picture you would have a tiny picture in the center of the screen if it was a huge picture of uh like a dartboard and you know you might only see the bullseye on the dartboard all right and uh we have span which I’m not sure how that differs from the others but you could always click on it and find out if you’re playing with a picture of your own on the desktop and then we also have uh different themes now here we have what they call contrast themes right and these are for those who are visually impaired or just prefer things to be uh very Stark so you know if we if we click on one of these choose one of these here’s the samples here if we choose one of these from the drop-down say Aquatic and we choose apply then you get immediately a view of how that’s going to look uh on your system right and this desert is the next one here right there’s another option we have dusk we have night sky and of course we can switch it back to none all right so uh those are what we would call accessibility themes generally speaking and then under related settings here we have themes which is uh a of more uh usual themes not so high contrast and uh I won’t preview all of those but uh there’s a bunch on offer here and you can also click on browse themes to get an even larger list now that was the new windows 11 settings area if you’re used to the old windows settings area which is the control panel that is still available so you can click on the start button but and type in the word control and you’ll see the control panel come up as an offering if you click on that your control panel will pop up and we can maximize that I like to switch from category view to the small icon view right and then in here you can play with all kinds of things right so uh one thing that I like to do on every new system is click on Mouse right and then here under double click speed I pull that all the way to the left so that it’s slow because the issue there is that uh when it’s in the middle you have to click so fast to get you know this is where you can test your double clicking is open it close it right uh you have to click so fast that uh well some people simply can’t do it right so they’ll they’ll be clicking and clicking and trying to open something like on the desktop you have to double click on an icon to open a program and uh it just won’t it won’t work for them you know nine times out of 10 or whatever but if I pull that all the way to the left suddenly you know they can click click make a double click at that speed and it will work all right so fairly important U even if you don’t need it to be uh slower if you ever share your computer it’ll reduce frustration for somebody else I’m sure so uh the other bit in here is pointers uh for the mouse and you can see the size note the size of the little arrow here that I’ve been using the default size uh if we click on the drop down here I like to go down to Windows standard extra large right and then you see uh here a preview of what that’s going to give us and then this one that we’ve been using so it’s twice as big right so I can click apply and then now I have that nice large cursor or arrow and if we go to pointer options right uh we have the pointer speed that we can adjust um generally I don’t find that that needs adjusting but uh sometimes on certain systems with certain mice you know every time you move your mouse a little bit it seems to fly across the screen right if that’s happening to you you can pull that uh to the left generally I wouldn’t pull it all the way to the left because uh you know if we click apply here uh things start to go way too slow right um but uh you know adjust to your taste usually just one tick at a time uh until you fine-tune it uh the way that you want another uh nice option is to click on show location of pointer when I press the control key so uh basically that means that when you press the control key you’ll get this little blip these circles that’ll show you where your mouse is so if you have trouble finding your mouse sometimes on your screen just hit the control key and then you’ll see immediately where it has gone right um other things here I don’t tend to tweak but uh if you use the wheel on your mouse to scroll through things you can adjust how many lines it Scrolls at a time right if you find that it moves too fast you could lower that if you want it to move faster of course you could uh increase that number right and then we click okay and we have our new mouse cursor right and of course here in the uh control panel there’s all kinds of other useful options one is power options right so if we jump in there uh you know there’s generally different Power plans on your system that you can choose m’s on high performance uh at the moment if you want to tweak that or see what the settings actually are you can click on change plan settings and uh you know a typical setting here might be you know to turn off the display every 15 minutes and on high performance to never put the computer to sleep but if if you have a power saving mode it might be uh you know 20 minutes or whatever that it’s going to put the computer to sleep you don’t necessarily want that to happen if uh every time you step away you got to come back and log in and do the whole thing right so uh if you’re like me I like to have uh both of these at never and if if you know I want to save power or whatever I can put my computer to sleep and I can turn off my monitor right so you would hit save changes to save that and if you’re on a laptop you would you would see more options because there’s going to be a battery options versus um you know your plugged-in options and you can you can tweak each of those accordingly on on battery I would recommend uh having your computer go to sleep after a certain time just to conserve the battery and to keep the system from uh just running out of juice and and turning off suddenly uh without because it has no more power uh which is more dangerous and can corrupt your system all right and we can go up at the top here to the breadcrumb back to all control panel items and uh another feature I would point out to you uh right now is programs and features so if we click on that uh it’s going to show us a list of all the programs that are installed on the system now uh that that’s a bit deceptive it’s not all of them it’s all of the standard uh style programs uh that we would traditionally think of as a program uh that’s been set up on a on a system but now there’s a sort of a distinction between programs which are listed here in apps which are things that are uh just access differently by the computer and and you might see under here so for example photos here you know I could rightclick and uninstall photos here from you know the start area but photos is not listed here in in the in the program list right so say if you installed uh Norton Antivirus uh which by the way I don’t recommend Norton Antivirus so you know uh I would I would rather see you use uh something else but um as I mentioned earlier just use the Microsoft One the free one but uh that would be in this list right that’s not an app it’s actually you know full-fledged software so you may need to manage software from here and you may need to manage apps from the start menu all right and we go back to all control panel items uh other bits that would be useful to know devices and printers all right that actually brings you now into the standard settings and then you can see your printers and scanners list uh right now I don’t have any physical devices but we have the Microsoft print to PDF printer there and uh what else would be interesting here you can you know tweak your sound settings uh you can look at your system information right see what kind of computer you have what kind of processor Etc so you have access to that area quickly from here yeah and one more thing would be the date and time um often that’s wrong when you get a new computer and you’re sitting in front of it the time Zone’s wrong or the or the just the time your right time zone but the time is off by a few minutes so you can jump in here and click on change date and time you know tweak the date make sure the the years right right you know you can you can go month by month Etc here and then uh you know go into whichever uh area hour minute second right and you can use the up and down bits to to change the time or or minutes Etc and uh you can also type it in right so you can just type in the number right just cancel that because it’s correct on this system and also you can change your time zone right so um I often find that computers come set up for the wrong time zone so just choose your correct time zone from the drop- down list in fact you may want to do that first change your time zone because that if your if your time is off by you know 3 hours or whatever changing your time zone may just put it right where it needs to be uh otherwise if you’re if you’re messing with this first and then you change your time zone you’re going to have to go back and mess with this again if you know what I mean anyway we can click okay there and that’s a preview of the control panel now an important concept to understand in Windows is cut copy and paste now you can do that with text but you can also do that with files and and folders and other things so uh let me show you what I mean by that so we’re going to click on start and I’m going to type in note and so I can get notepad coming up right and uh notepad is basically a little text editor right very just text there’s no formatting or anything you can’t make things bold or Center them or whatever uh you would use wordpad for that um as a default little app on Windows but I just want to show you some things here so uh this is a sentence this is a note this is the oops and there we go okay so uh you can select things by clicking you hold down your mouse and draging right so I have selected this whole sentence now if I want to move that sentence I can rightclick and I can say cut all right and then I place my cursor wherever I want the sentence to now appear I rightclick and I choose paste so I cut it and I’ve pasted it so those words are are literally from pre-computer days when you would cut something out of a page and paste it onto another page if you’re moving paragraphs or sentences around right so uh now there’s also copy and paste right so if I select this sentence here right click and instead of choosing cut I choose copy then I can place my cursor where I want it right click and paste and now I get a copy of it right so the way that this works is that there’s there’s something called the clipboard there a little area of memory when you when you cut something it goes into the clipboard and it’s removed from where it initially was when you copy something it’s put into the clipboard but it stays where it originally was right so now it’s in the clipboard the clipboard uh unless you get a clipboard utility uh is is by default it’s just going to hold one item right so if I copy one thing and then I copy another the another thing is in the clipboard not the first thing right so so when I paste I’m only going to get the last thing that I cut or I copied right so uh keep that in mind right and uh that’s just with text right so we can close that off there and I can show you that this is also possible to do with files so if I go into downloads here I have a list of files I’m going to right click on name at the top and choose size all columns to fit so we can see all the full file names and essentially we can rightclick on a file and uh it’s a little bit different here in terms of uh the rightclick menu that comes up uh different than a notepad right so uh we have little icons for cut and copy as opposed to the words now on older versions of Windows if I click on show more options uh we had cut and copy as menu full menu items not tiny little icons uh but you know they’ve changed the default here so we’re going to rightclick and if I say cut for Chrome setup here and then if I go to my desktop on the left here so here’s my desktop if I right click and now the icon is paste right another little icon to look at you can click on that and you see that that file has been pasted into uh or onto the desktop all right so on the desktop I can right click and I can click on copy right and then say if I go to documents I can rightclick I can choose paste again and now I have a copy of chrome both on the desktop and in documents so you can do that with documents and folders as well uh and you know if you’re in like say Microsoft Excel doing a spreadsheet uh you can copy and paste or cut and paste uh cells in the in the spreadsheet right so the whole idea of cut copy and paste uh Works across all kinds of Vari of Windows and it’s an important skill to have now I’ve been right clicking to uh do the cutting copying and pasting but the default keys for uh those commands are it’s control X for cut so that means hold down your control key and you can you can just keep your finger on it right uh you keep your finger on it for 30 seconds if you like it’s not that’s the timing there isn’t critical the the the critical thing is well you have your finger on that then you tap the X like just like you would be you’re going to type in the letter X in in a letter just hold down the control key tap the X and then let go with the control key all right um so you don’t have to try and hit them both at the same time is what I’m I’m trying to say some people get that impression and and of course it doesn’t always work out and they end up hitting the X before the control and well that doesn’t work so well so hold down the control key tap the X let go of the control key that’s cut right so similar uh copy is contrl c for copy and then uh pasting is contrl V right so uh you know for example if I have now I’ve got my Chrome setup selected in documents I’m going to press controll X right and then if I go over to pictures here and I click on the right so that that’s the active window I go control+ V and then I get my Chrome setup has moved from documents to pictures right and then you know I can rightclick on that and one of the little icons is delete I can delete that and then I can also delete it from my desktop right so uh let’s have another look at the downloads here maximize this and just show you a few things about file explorer right so this is the default view here uh few things you should know is that uh if things aren’t fully readable on the left hand side this vertical line here is movable so if you hover over it in just the right spot you get this little Double Arrow you can click and you can drag to give yourself more or less room all right and then uh another thing is is that we have all of these uh files and it tells us under type what type of file it is right but um what I like to do is click on view View and then go to show and then choose or select file name extensions right and then uh instead of it just saying Firefox installer here now it says Firefox installer.exe right so that’s an executable file I don’t have to look over here to figure out what type of file it is I can see immediately by the extension and this works great for uh pictures so you’ve got a a bunch of pictures in your uh pictures folder and some of them are jpegs some of them are gifts you know some of them are pings so you got you know your jpg extension your GF and your PNG extension um you know a lot of times those things don’t matter but sometimes they really do right uh you know if you’re creating a web page and you want you know a certain kind of optimized image or whatever you know it’s important to know what the extension is so I like to turn that on another thing that I like to turn on uh is uh we go into the little hamburger menu here and we go to options right and click on The View tab if we scroll down to the bottom here I choose expand to open folder right so let me drag the by the way when you click on the title bar of of a window and drag you can move the window around all right so uh I’ve CHS an expand to open folder click okay right and then now when I’m in uh different folders it’s going to expand on the on this edge here on this left side here to show me that folder so right now I’m I’m on edge here if I double click on application to enter this folder it’s going to expand and show me that folder that I’m in so so you’ll always have a a direct visual view of where you are in the structure of your file system um on the leftand side it’ll follow your your movements on the right otherwise uh all of this would have just stayed you know tightly closed like this you’d be you know all the way down here but you wouldn’t have any view of where you were and uh it it’s often the case that when you’re when you’re in one folder then you’re um needing to see and interact with other folders so for example if I wanted to pull this file just up one level then I can see that level immediately here so uh that I find very useful and uh there’s different views here right so if you click on the little uh down arrow on the right there you know we’ve got our extra large icons all right your large icon view your small icon view all right and we got a list view which is just the file name and no no additional information right and then the one I tend to like is the details view here so that gives you the name the date modified the type and the size right and you can you can click on any of these headings to sort by that bit right so now I’ve got them sorted by size largest to smallest if I click again it’ll reverse the sort so it goes smallest to largest now I can sort by type so if you if you got various types of files in a folder and you know you’re looking specifically for a PDF it’ll put all the PDFs together and you’ll have uh you know fewer files to search through you can ignore all the non- PDFs right you can sort by date if you want to see uh what’s the most recent or what are the oldest files uh or or just looking for something in a particular date range makes it much easier to to find and then of course the uh the default sorting is by name and you can have that go um you know up the alphabet or down so another thing to know uh is that you know let let’s just stretch this out a little bit here further so on on the left here you see see this the structure and there’s the little arrows right so when the arrow is pointing down that means that that folder is expanded right if I click that down arrow it collapses the folder right if I want to expand say here the common files folder I click on that and then it shows me the files immediately uh or the folders I should say immediately um below uh there could be files but the files will never be listed on this side um this is just the folder structure right so and you can keep expanding right uh to get deeper and deeper into the folder structure uh so so that that’s how you kind of walk through it right and um another thing you should know is let’s go into documents here for example so you’ve got your documents folder you’re creating documents by default if you’re using Microsoft Word or something similar uh your documents are going to be saved in this folder right but uh you know once you get to a few hundred files uh it can get confusing just trying to find one or make sense of it all so uh the thing is to create your own folder structure right the the computer comes with a bunch of folders but you know you’re going to want to make your own so in that case we’re in documents make sure you’ve clicked on the right somewhere in the white space on the right hand side right right and then you can click on new up here in the upper left and choose folder right and then here you can say uh you know different categories right uh you know click again in the Whit space new folder right and then new folder right and then you can drag and drop your files into those folders um from from anywhere right if you have uh if you have this area expanded on the left hand side you can go into another folder and drag them from that folder into these ones right so and of course you can keep you can keep going and doing subfolders right uh and if you don’t want to click new there you can rightclick and say new folder right from in this area right and then you know right click new folder right and and so on so now we have right your uh documents repairs laundry and in this breadcrumb there’s there’s so many ways to move around here right so you you can click the little arrow between repairs and laundry and it’ll show you uh the other options right so we can click on kitchen there for example and uh now we’re in the other folder there are even some options for creating some file types when you right click so you can right click and say new text document right and then you could create a document you know relevant to your current uh folder topic right and uh even here we have similar choices in the upper left corner now I’m not sure why it’s not actually expanding here on the left the way it normally would let’s just try closing and reopening file explorer here we go into documents repairs oh it maximize it kitchen H for some reason this system is a little bit buggy yeah so I just paused recording and checked on why this might be happening and a recent update to Windows 11 has uh introduced this strange little bug so um I would I would still turn on expand to folders but it won’t necessarily always work until Microsoft fix it it uh where we should see ourselves right if we’re in documents repairs kitchen is uh you know under Drive C we got users right and uh you know under under users you’ve got different usernames depending on how your system is set up if you click on your start button you can see what your actual username is in this case someone else right so uh we click on that folder and then if we go into documents right and we’ve got repairs kitchen that’s what should have expanded right on the left hand side and for some reason won’t do it today but maybe tomorrow so I just mentioned a a little bit about right clicking so the thing about right clicking is that it’s context sensitive so it depends on what you’re clicking on uh will it depends what your menu you’re going to get right so for example if I right click on this file on the desktop you know I get these particular choices right if I right click on the taskbar I get these particular choices you know if I right click on the one drive icon here in uh the system tray you know I get a whole other uh bunch of options right for example I can quit one drive and uh right clicking which we’ve already done on the start button gives us a bunch of uh options quick access to Common tasks in Windows right so um just keep in mind that if you’re not sure what to do in Windows just try right clicking wherever you are so here I’ve right clicked on the desktop you know I could go into display settings or personalize and tweak things there um in fact let’s jump into display settings because I will show you something that uh will help a lot of you if you have a monitor uh high resolution monitor on a new computer uh the icons are going to seem uh very small con compared to you know older uh let’s call uh classic monitors right and uh that that might be too small for your comfort right so you can click on display resolution here and choose a different resolution now the higher the highest number it tends to be the uh recommended resolution for your monitor and usually that’s going to be your default right but uh if you choose some smaller numbers uh you may find that uh everything just looks uh you know that much bigger and more visually accessible for you so a couple of notes about that um don’t choose any numbers below uh 7 68 uh just because anything smaller than that uh a lot of software just won’t fit right so you’ll open up a window it’ll have a bunch of settings and everything there’ll be a save button at the bottom but because the window is taller than your 768 uh you can’t even see the save button you can’t click on it you don’t know it’s there and you’re stuck right so that would be the very lowest uh that you would want to go and um otherwise the other thing to look out for is the aspect ratio right so if you have a a very uh say a widescreen monitor um you you don’t want uh the number pairings that are more square right because then you’re going to have uh you know those black bars on the left and right hand side of your monitor uh where you know your your monitor is just not being used so um play around with the different settings and find one where the icon look a good size but the uh background of your desktop fits completely on the monitor all right um and other than that I think I can show you how to change the text size on your system which is also something that can help for visuals so to do that let’s start from scratch here we’re going to close that window there we’re going to right click then click on settings right click on the start button of course and then in the uh find a setting area here just type in the word text and you’ll see text size all right click on that it’ll bring you to the accessibility Tex size area and there’s a little slider here right this is a preview of how things are so this is the default a on this computer and we can pull that uh until things get uh very large right so um now a warning would be if you make them if you pull it all the way to the right uh you’ll find that on in some software the text is so big it no longer fits in the space allotted to it in the software so things are going to either overlap or or be cut off right so uh you want to find some nice median uh compromise so that you know you’ve got the bigger text but it’s not too big uh what that means for you on your system will differ so you can play around with it but you know you could start by just pulling this into the middle for example and hitting apply note the size of the options here on the left when I hit apply and see how much bigger they are right so uh for those of you with limited Vision uh or just don’t like squinting you have you have the option to play around with the size of your text let’s close that off and we’ll close off this video just if you have any questions comments Etc um put them in the comment section below

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Bush and Musharraf: A US-Pakistan Dialogue

    Bush and Musharraf: A US-Pakistan Dialogue

    President George W. Bush and President Pervez Musharraf of Pakistan held a joint press conference, discussing the strong relationship between their countries. Bush praised Musharraf’s courage in the face of extremism and highlighted their cooperation in fighting terrorism. The leaders addressed intelligence sharing, economic development, and Pakistan’s commitment to democracy. They also spoke about regional issues, such as relations with India and the situation in Afghanistan. Musharraf emphasized the desire for a long-term strategic partnership with the U.S. and explained Pakistan’s efforts to combat the Taliban. Both leaders expressed confidence in their ability to work together to achieve peace and security.

    A Meeting of Minds: Bush and Musharraf, 2006

    Study Guide

    I. Quiz: Short Answer Questions (2-3 Sentences Each)

    1. What specific accomplishment regarding intelligence cooperation between the US and Pakistan did President Bush highlight during the press conference?
    2. What commitment did President Musharraf renew regarding elections in Pakistan? Why was this commitment considered important in the context of combating radicalism?
    3. According to President Musharraf, what were the three “bottom lines” of the peace treaty signed with tribal elders in North Waziristan?
    4. How did President Bush respond to the question about whether the US needed permission to strike inside Pakistan if Osama bin Laden was located?
    5. What issue did the reporter Zafar Jung raise concerning the United States’ policy toward Pakistan’s access to nuclear technology for peaceful purposes?
    6. What did Bush say the United States could do to facilitate an agreement between Pakistan and India regarding Kashmir?
    7. What was President Bush’s view on the Israeli-Palestinian conflict, and what role did he see the United States playing in resolving it?
    8. How did President Bush respond to claims that the United States is waging a war on Islam?
    9. What was the basis of the relationship between President Bush and President Musharraf, as described by President Musharraf?
    10. What did President Bush and President Musharraf emphasize as crucial for achieving lasting peace in regions of conflict?

    II. Quiz Answer Key

    1. President Bush highlighted the cooperation between US and Pakistani intelligence forces that helped prevent the loss of innocent life in the United Kingdom. This cooperation was seen as necessary in a world where extremists are willing to kill to achieve political objectives.
    2. President Musharraf renewed his commitment to holding free and fair elections in Pakistan in 2007. This commitment was seen as important because giving people a chance to participate in the political process was considered the best way to defeat radicalism and extremism.
    3. The three “bottom lines” of the peace treaty were: no al-Qaeda activity in tribal agencies or across the border in Afghanistan, no Taliban activity in those areas or across the border, and no Talibanization or obscurantist way of life allowed. These were agreed to by the tribal elders.
    4. President Bush emphasized that the US and Pakistan were “on the hunt together” and that they would “deal with” the situation when Osama bin Laden was found, without getting into the specifics of tactics. He focused on the shared goal of bringing al-Qaeda to justice.
    5. Zafar Jung raised the issue of a discriminatory regime regarding the fear of nuclear technology for peaceful purposes, as Pakistan needed energy but was being denied access. He asked if this discrimination would end after the meeting between the two presidents.
    6. Bush stated that the United States could offer assistance in creating conditions for peace, laying out a vision, and providing aid for institutional building to foster democracy. Ultimately, the resolution of the Kashmir issue would depend on the will of the leaders involved to get the past behind them and move forward.
    7. President Bush supported a two-state solution with a democratic Palestinian state living side by side with Israel. The U.S. would give aid to those suffering, help create the conditions for peace to occur, lay out a vision, talk to world leaders, and provide aid to help institutional buildings so that a democracy can flourish.
    8. President Bush refuted claims of a war against Islam, calling them “false.” He emphasized the importance of rejecting extremist propaganda, noting that the US respects Islam and that many Muslims live peacefully in the United States.
    9. President Musharraf described the basis of their relationship as trust and confidence. He stated that without this trust, a productive relationship is impossible.
    10. President Bush and President Musharraf emphasized the importance of leadership will and mutual trust for achieving lasting peace in regions of conflict. This included the need for leaders to put the past behind them and work together toward a better future.

    III. Essay Questions

    1. Analyze the strategic importance of Pakistan to the United States in the context of the “War on Terror” following 9/11, as reflected in the statements made by Presidents Bush and Musharraf.
    2. Evaluate the effectiveness of the tribal deal in Pakistan’s Federally Administered Tribal Areas (FATA) as a counterterrorism strategy, considering President Musharraf’s explanation of the deal and potential criticisms of its long-term impact.
    3. Discuss the challenges and opportunities for promoting interfaith harmony between the West and the Islamic world, drawing upon President Bush and President Musharraf’s comments on the issue.
    4. Compare and contrast the perspectives of President Bush and President Musharraf on the role of the United States in resolving conflicts in Kashmir and Palestine.
    5. Assess the significance of economic development and educational reform as tools for combating extremism in Pakistan, based on the points raised by Presidents Bush and Musharraf.

    IV. Glossary of Key Terms

    • Extremism: Holding extreme political or religious views; often associated with intolerance, radicalism, and violence.
    • Radicalism: Belief in or support for fundamental or revolutionary changes in the established order.
    • Terrorism: The use of violence and intimidation in the pursuit of political aims.
    • Talibanization: The process by which a region or society adopts the strict religious laws and customs associated with the Taliban.
    • Al-Qaeda: A militant Sunni Islamist multi-national organization founded in 1988 by Osama bin Laden, Abdullah Azzam and several other Arab volunteers during the Soviet–Afghan War.
    • Federally Administered Tribal Areas (FATA): A semi-autonomous tribal region in northwestern Pakistan, bordering Afghanistan.
    • Kashmir: A disputed territory between India and Pakistan, with ongoing conflict and political tensions.
    • Two-State Solution: A proposed resolution to the Israeli-Palestinian conflict involving the establishment of an independent Palestinian state alongside Israel.
    • Proliferation: The spread of nuclear weapons, fissile material, or the technology and information necessary to manufacture them.
    • Interfaith Harmony: Promoting understanding, respect, and cooperation among different religions.

    Okay, here is a briefing document summarizing the key themes and ideas from the provided transcript of a meeting between President George W. Bush and President Pervez Musharraf.

    Briefing Document: Meeting between President George W. Bush and President Pervez Musharraf

    Date: [Date not specified in document, but context suggests 2006]

    Location: Washington D.C., White House

    Attendees:

    • President George W. Bush (United States)
    • President Pervez Musharraf (Islamic Republic of Pakistan)
    • Various members of their respective administrations

    Executive Summary:

    The meeting focused on reinforcing the strategic relationship between the United States and Pakistan, with a strong emphasis on counterterrorism cooperation, regional stability (particularly in Afghanistan and regarding India-Pakistan relations), and Pakistan’s internal development (economic, educational, and political). Both leaders expressed mutual trust and confidence. Key themes include combating extremism, promoting moderation, fostering economic development, and resolving regional conflicts. The discussion also addressed concerns about Pakistan’s nuclear program and the need for peaceful resolution of the Israeli-Palestinian and Kashmir disputes.

    Key Themes and Discussion Points:

    1. Counterterrorism and Extremism:
    • Shared Struggle: Both presidents emphasized the shared threat posed by extremists and terrorists. Bush stated, “He understands that we are in a struggle against extremists who will use terror as a weapon… I admire your leadership. I admire your courage, and I thank you very much for working on common strategies to protect our respective peoples.”
    • Intelligence Cooperation: Highlighted as crucial for preventing attacks, with specific mention of collaboration that helped prevent loss of life in the United Kingdom. “I want to remind the people of Pakistan and the people of America that because of the good work of our intelligence forces and Pakistani intelligence forces as we helped people in the United Kingdom we prevented the loss of innocent life that kind of cooperation is necessary.”
    • Pakistan’s Role: Bush acknowledged Musharraf’s role as a “strong defender of freedom” and a target of extremists.
    • Tribal Areas Strategy: Musharraf briefed Bush on the strategy in the Federally Administered Tribal Areas (FATA), emphasizing a “holistic approach” involving military, political, administrative, and reconstruction elements. He clarified that recent peace deals were “not to deal with the Taliban,” but rather “to fight the Taliban.” Specifically, he described the agreement with tribal elders that prohibited Al-Qaeda activity, Taliban activity, and Talibanization of the tribal agencies. Bush indicated satisfaction with this deal.
    • Osama Bin Laden: In response to a question about striking inside Pakistan if Osama bin Laden were located there, Bush emphasized trust and collaboration. He expressed confidence that Musharraf would bring Bin Laden to justice if found. Musharraf affirmed total coordination at all levels of intelligence and operations.
    1. US-Pakistan Relationship:
    • Strategic Partnership: Both leaders affirmed the desire for a long-term, broad-based, and strategic relationship. Musharraf stated that the meeting reinforced their “trust and confidence in each other.”
    • Economic and Social Development: Discussions included economic assistance, trade and investment opportunities, and support for education and health sectors in Pakistan. Bush mentioned the need to move forward on a Reconstruction Opportunity Zone and a bilateral investment treaty.
    • Defense: The f16 deal was discussed.
    • Democracy in Pakistan: Bush reiterated Musharraf’s commitment to free and fair elections in 2007. “The last time I was with the president he assured me and assured the people that were listening to news commerce that there would be free and fair elections in Pakistan in 2007 he renewed that commitment.”
    1. Regional Stability:
    • Afghanistan: The leaders discussed the situation in Afghanistan, with plans for a trilateral meeting involving Presidents Bush, Musharraf, and Karzai. Bush stressed the importance of Afghanistan’s success for regional peace.
    • India-Pakistan Relations: Bush expressed pleasure at the progress in relations between Pakistan and India and encouraged the peaceful resolution of the Kashmir issue. “I think it’s very important that the that the issue of Kashmir mu forward and be resolved peacefully and I appreciate your efforts mr. president.” Musharraf noted his “excellent meeting” with Indian Prime Minister Manmohan Singh in Havana, calling it “a step forward towards resolution of disputes between India and Pakistan.”
    1. Interfaith Harmony and Moderation:
    • Combating Propaganda: Bush emphasized the need to counter extremist propaganda and promote understanding between the West and the Islamic world. “All of us need to step up and talk about a world in which we respect each other’s religions matter of fact is very important for Muslims around the world to know there’s a lot of Muslims living at peace here in the United States.”
    • Respect for Islam: Bush asserted that America respects Islam and highlighted the presence of peaceful Muslims in the United States.
    • Interfaith Harmony Initiative: Responding to a question, Bush praised Musharraf’s call for building bridges and promoting interfaith harmony.
    1. Nuclear Issues and Energy:
    • Non-Proliferation Concerns: In response to a question about discriminatory practices related to nuclear technology for peaceful purposes, Bush stated that they “talked about energy and we talked about our need to work through the recent history of that we’ve had together on dealing with proliferation matters.” This suggests ongoing concerns and discussions related to Pakistan’s nuclear program.
    1. Israeli-Palestinian Conflict and Kashmir:
    • Peace Process: Both leaders acknowledged the importance of resolving the Israeli-Palestinian conflict. Bush reiterated his commitment to a two-state solution, emphasizing the need for both sides to recognize each other’s right to exist.
    • Kashmir Resolution: Bush stated that the Kashmir issue will be solved when the leaders of Pakistan and India decide to solve it and offered US assistance to facilitate an agreement if desired. “Kashmir issue will be solved when two leaders decide to solve it and we want to help the United States can’t force nations to to reach an agreement.”

    Points of Note:

    • Armitage Quote: Bush denied knowledge of reported threats from Deputy Secretary of State Richard Armitage to bomb Pakistan “back to the Stone Age” if it did not cooperate after 9/11. He maintained that Pakistan, under Musharraf’s leadership, was one of the first to offer support.
    • Trust and Confidence: The constant refrain of “trust and confidence” underscores the effort to portray a strong and reliable partnership despite underlying complexities and potential disagreements.
    • Focus on Personal Relationship: The meeting highlighted the personal relationship between Bush and Musharraf as a key factor in the strength of the US-Pakistan alliance.

    This briefing document provides a concise overview of the key discussions and themes from the meeting. It reflects the priorities and perspectives of both leaders at the time.

    US-Pakistan Relations: Counter-Terrorism, Trade, and Regional Security

    • Why was President Musharraf in Washington D.C. meeting with President Bush? The meeting was to reinforce the strong, long-term strategic relationship between the United States and Pakistan, focusing on a wide range of issues including cooperation in the fight against terrorism, economic development, trade, investment, education, health, defense, regional issues like the Palestinian dispute, and progress between Pakistan and India, including the Kashmir issue and Afghanistan. Both presidents emphasized mutual trust and a desire for peace and security in the region.
    • What role did the fight against terrorism play in the relationship between the US and Pakistan? Fighting terrorism was a central and critical aspect of the US-Pakistan relationship. President Bush lauded Musharraf’s commitment to combating extremism, noting Musharraf’s own personal risks and the need for intelligence cooperation. Musharraf detailed Pakistan’s holistic approach, including military, political, administrative, and reconstruction elements to counter terrorism in its tribal agencies.
    • What is the “tribal deal” President Musharraf described, and what was its purpose? The tribal deal was an agreement signed with tribal elders in Pakistan’s North Waziristan Agency, aimed not at cooperating with the Taliban, but at fighting them. The core principles of the deal include preventing Al-Qaeda and Taliban activity in the tribal agencies and across the border into Afghanistan, as well as preventing “Talibanization” and obscurantist ideologies in the region. The tribal elders are obligated to enforce this agreement and act against those who violate it.
    • How did President Bush respond to questions about potential US military action within Pakistan to capture Osama bin Laden? President Bush emphasized the trust and collaboration between the US and Pakistan in the hunt for Al-Qaeda. Both leaders said they were working together in all areas, such as intelligence, operational, strategic, and tactical coordination. Bush deferred to the moment when such a situation arises and when the right decision will be taken to strike in such coordination.
    • What were the key issues discussed regarding the broader relationship between the US and the Islamic world? The discussion focused on promoting interfaith harmony and countering extremist propaganda. President Bush emphasized that America respects Islam and rejects the notion that the “war on terror” is a war against Islam. He stressed the importance of distinguishing between the peaceful Muslim faith and the actions of extremists and terrorists. The importance of resolving the Israeli-Palestinian conflict as well as supporting peaceful resolution of disputes like Kashmir was also discussed.
    • What specific economic development and trade initiatives were discussed? The focus was on creating Reconstruction Opportunity Zones to spur growth in Pakistan, along with a bilateral investment treaty. President Musharraf emphasized Pakistan’s need for assistance, particularly in trade and investment, as well as in education and health.
    • What was President Bush’s perspective on resolving the Kashmir dispute? President Bush believed that lasting agreements must be reached by the leaders of nations. He was encouraged by the discussions between President Musharraf and the Indian Prime Minister. He mentioned he is willing to help facilitate an agreement, and emphasized that the United States could not impose peace, but can create conditions where peace can flourish.
    • What did President Musharraf want from the meeting and the U.S. in general?
    • Musharraf sought a long-term, broad-based, strategic relationship with the United States. He emphasized Pakistan’s need for assistance in trade, investment, education, and health sectors. He pushed for a resolution to the Palestinian and Kashmir issues, and highlighted Pakistan’s commitment to fighting terrorism. Ultimately, he aimed to reinforce mutual trust and confidence between the two nations.

    Pakistan-United States Relations: Counter-terrorism, Economy, Democracy, and Regional Issues

    Pakistan and the United States have a relationship based on trust and a shared desire for security and peace. Both countries have common strategies to protect their people. The US president stated that the US desires the best for Pakistan and the region.

    Key aspects of the Pakistan-US relationship include:

    • Counter-terrorism cooperation Both countries recognize the importance of intelligence sharing to prevent terrorist attacks. Pakistan is taking a holistic approach to fighting terrorism using military, political, administrative, and reconstruction elements. The US President stated that he believes President Musharraf when he says the tribal deal is intended to reject Talibanization and that there won’t be al-Qaeda.
    • Economic Development The US recognizes that economic prosperity can help people improve their lives and is working with Pakistan on reconstruction opportunity zones and a bilateral investment treaty. The US has provided assistance to Pakistan in education and health.
    • Democracy and Education President Musharraf has committed to free and fair elections in Pakistan. He is also focused on improving Pakistan’s education system to prepare students for the global economy.
    • Regional Issues President Bush was encouraged by President Musharraf’s meetings with the Indian Prime Minister regarding the Kashmir issue. Both presidents discussed the situation in Afghanistan and the tribal agencies. The US President, along with President Musharraf and President Karzai, planned to have discussions regarding avenues for peace in Afghanistan.
    • Interfaith Harmony President Musharraf has called for building bridges and promoting interfaith harmony between the West and the Islamic world. The US President spoke out against propaganda that tries to inflame passion and create conditions where terror is justified. He stated that the US respects Islam and that there are many Muslims living peacefully in the United States.

    US and Pakistan Cooperation Against Terrorism

    Pakistan and the United States are cooperating in the fight against terrorism. Both countries recognize the importance of intelligence sharing to prevent terrorist attacks.

    Key points include:

    • Common Strategies: Both countries share common strategies to protect their people from extremists who use terror as a weapon.
    • Intelligence Cooperation: The good work of US and Pakistani intelligence forces helped prevent the loss of innocent life in the United Kingdom.
    • Holistic Approach: Pakistan is taking a holistic approach to fighting terrorism, using military, political, administrative, and reconstruction elements.
    • Tribal Deal: A peace treaty signed through a grand assembly of elders aims to fight the Taliban. The deal has three bottom lines: no al-Qaeda activity, no Taliban activity, and no Talibanization. The US President stated that he believes President Musharraf when he says the tribal deal is intended to reject Talibanization and that there won’t be al-Qaeda.
    • Mutual Interest: It’s in the interest of both the US and Pakistan that al-Qaeda be brought to justice. Both countries collaborate and strategize on how best to do this.

    US and Pakistan Presidents on Kashmir and Palestine

    The US and Pakistani presidents have discussed the issues of Kashmir and Palestine, agreeing that leadership from involved nations is key to resolving these conflicts.

    Key points from the discussion include:

    • Kashmir:President Bush was encouraged by President Musharraf’s meetings with the Indian Prime Minister, indicating a desire at the leadership level to solve this long-standing problem.
    • The US is willing to assist but cannot force nations to reach an agreement. Lasting agreements occur when leaders decide to put the past behind them and move forward.
    • The US can help create conditions for peace, lay out a vision, talk to world leaders, and provide aid to help institutional building so that democracy can flourish.
    • President Bush asked both leaders what the United States could do to facilitate an agreement.
    • Palestine:President Musharraf emphasized the need to resolve the Palestinian dispute, calling it the core of all problems, even terrorism and extremism.
    • President Bush expressed his desire and will to resolve the Palestinian dispute.
    • President Bush is the first president to have articulated a two-state solution, believing a Palestinian state as a democracy living side by side with Israel will yield peace.
    • For peace to occur and for a Palestinian state to exist, people have to recognize Israel’s right to exist.

    US-Pakistan Talks on Afghanistan Stability and Tribal Deal

    Afghanistan’s stability was discussed between the US and Pakistani presidents, with planned trilateral discussions involving the president of Afghanistan.

    Key points from the discussion include:

    • Mutual Interest: It is in the mutual interest of the US, Pakistan and Afghanistan for Afghanistan to succeed.
    • Avenues for Peace: Discussions were planned to find avenues for peace, considering Afghanistan has been devastated by war.
    • Tribal Deal: President Musharraf explained to President Bush what was happening in Afghanistan and the tribal agencies. He clarified that the peace treaty was signed through a grand assembly of elders, and it is intended to fight the Taliban. The US President stated that he believes President Musharraf when he says the tribal deal is intended to reject Talibanization and that there won’t be al-Qaeda.
    George W. Bush: The American Presidency Project

    The Original Text

    ladies and gentlemen the President of the United States and the president of the Islamic Republic of Pakistan thank you very much please be seated Laura and I appreciate the opportunity to welcome president mr. Musharraf here to Washington we remember finally mr. president to your great hospitality in Pakistan and and we remember that the importance of that visit it reconfirmed our friendship gave you and me a chance to discuss important issues and there’s no more important issue than defending our peoples this president is a strong defender of freedom and the people of Pakistan and I appreciate your leadership he understands that we are in a struggle against extremists who will use terror as a weapon he understands it just about as bit as good as anybody in the world after all they’ve tried to take his life they’ve these extremists who can’t stand the thought of a moderate leader leading an important country like Pakistan want to kill the president let’s just say things to none of the people of Pakistan and the people of America that because he has been a strong forceful leader he has become a target of those who can’t stand the thought of moderation prevailing I admire your leadership I admire your courage and I thank you very much for working on common strategies to protect our respective peoples we had a good discussion here today we talked about how our intelligence cooperation can continue I want to remind the people of Pakistan and the people of America that because of the good work of our intelligence forces and Pakistani intelligence forces as we helped people in the United Kingdom we prevented the loss of innocent life that kind of cooperation is necessary in a world in which extremists and radicals are willing to kill to try to achieve political objectives we talked about the earthquake recovery and our nation was proud to support you mister brethren because we care when we see people suffering in you I was briefed by you and your administration when I was there and I was impressed by the great organization and compassion shown for the Pakistani people by your government I hope all is going well particularly for those who suffered mightily now we talked about economic development and the need to move forward on a reconstruction Opportunity Zones as well as a bilateral and investment treaty was our relationship is more than just helping to secure our respective homelands ours is a relationship that recognizes that through economic prosperity people can can embedder themselves we had a very interesting briefing on the federally administered tribal areas the governor the areas are with us here and he briefed me and members of my national security team on the strategy to strengthen governance and to promote economic development we talked about education first time I ever met President Musharraf he talked about the need to make sure the school systems in Pakistan worked well I was impressed then I’m impressed now by your commitment to an education system that prepares students for the and gives students the skills necessary to compete in a in a global economy we talked about democracy the last time I was with the president he assured me and assured the people that were listening to news commerce that there would be free and fair elections in Pakistan in 2007 he renewed that commitment because he understands that the best way to defeat radicalism and extremism is to give people a chance to participate in the political process of a nation we talked about we talked about India in relations and the president’s relations with India I was pleased to see it in Havana Prime Minister Singh and President Musharraf had another discussion I think it’s very important that the that the issue of Kashmir mu forward and be resolved peacefully and I appreciate your efforts mr. president we talked of course about Afghanistan and a president musharraf and President Karzai Karzai and I will have dinner right here in the White House next week and it’s going to be an important discussion it’s going to be important discussion because one of the most important avenues for peace is for Afghanistan’s to succeed and it’s in our mutual interest that we work together to help that a country that’s been devastated by war succeed and so I look forward to our trilateral discussion mr. president it’s going to be a good one it’s going to be an interesting one and it’s an important discussion all in all we’ve had yet another good meeting between people who are able to speak frankly with each other and people who share the common desire for people to live in security and peace welcome miss Miller go andreen I would like to first of all express my gratitude and also on behalf of my entire delegation for the warmth and hospitality that we have received and many courtesies that we are being extended to us since our arrival in the United States I had an excellent meeting with President Bush we first of all reinforced our trust and confidence in each other I trust President Bush and I have total confidence in him that he desires well for Pakistan and for our region and I trust him also that he’s trying to do his best for bringing peace to the world and I trust him also that he’s trying to resolve the core issue of the Palestinian dispute we discussed the entire gambit of relations bilaterally between United States and Pakistan and also in our region and on international issues bilaterally we reinforced our desire to have this relationship on a long-term basis broad-based and a strategic relationship when we are talking of broad-based whatever the president has said it involves all aspects which we discussed it has its political and diplomatic aspects which we reinforced and then our desire to fight terrorism and succeed against terrorism other than that issue in the social sector on the economy how whatever assistance is being given to us whatever assistance we require our requests on that especially in the field of Trade and Investment which are the main areas which we require assistance in otherwise on a broad-based level assistance in the education and health sector on the defense side the f16 deals all this was discussed on the regional issues on the international plane we did discuss the core issue of the Palestinian dispute which needs to be resolved and being at the core and I am extremely glad that the president has a desire and a will to resolve this Palestinian dispute I wish him very well because that lies at the heart of all problems even at the heart of terrorism and extremism on the regional side in our region we also discussed the reproach going on between Pakistan and India and I proudly told the president that we had I had an excellent meeting with Prime Minister Manmohan Singh in Havana and it was a step forward towards resolution of disputes between India and Pakistan I did tell him on the way forward that we are moving on the Kashmiri dispute special coming on the other side we had any in-depth discussion on what is happening in Afghanistan and our tribal agency they are I explained to him whatever we are doing in the form of the peace treaty that we have just signed through a grand Georgia which is an assembly of elders this treaty is not to deal with the Taliban it is actually to fight the Taliban the misperception in the media I did clarify to the president and may I very briefly say and what I explained to the president that this is a holistic approach that we are taking to fighting terrorism in Pakistan in the tribal agency tribal agencies of Pakistan this is a political side of the holistic strategy the holistic strategy being the military arm being used a political element and administrative element and a reconstruction element so we want to move on all these aspects forward confining myself to this deal this deal is not at all with the Taliban as I said this is against the Taliban actually this deal is with the tribal elders of North Waziristan agency and the deal has three bottom lines which we fix for ourselves and this is very important which I explained to the peloton number one there will be no al-qaeda activity in our tribal agencies or across the border in Afghanistan there will be no Taliban activity in our tribal agencies or across in Afghanistan there will be no Taliban ization which is a obscurantist thoughts or way of life Nothe liberalization so all these three have been agreed by the tribal elders who signed that deal and when they sign the deal they are honorbound and they have a very strict on a code to not only abide by it but also that whoever violates it they move against them so this is in brief the deal which I explained to the president and I I know that he is satisfied with that deal and maybe this shows the light or the way forward for bringing peace to the region so this is what we discussed holistically that I would like to conclude by saying we have we had a total understanding of views between President Bush and myself and as I said we reinforced our trust and confidence in either in each other thank you very much that you have two questions have pasted them after 9/11 would the United States have actually attacked Pakistan if President Musharraf had not agreed to cooperate with the war on terrorism he says that the United States was threatening to bomb his country back into the Stone Age and President Musharraf would Pakistan have given up its backing of the Taliban if this threat had not come from Armitage first let me let me let me that he’s asking about the our mother’s thing I am you know the first I heard of this is when I read it in the newspaper today III you know I was I guess I was taken aback by the harshness of the of the words all I can say is is that shortly after 9/11 secretary Colin Powell came in and said President Musharraf understands the stakes and he wants to join and help route out an enemy that has come and it killed 3,000 of our citizens matter of fact my recollection was that one of the first leaders to step up and say that the stakes have changed that attack on America that killed 3,000 the citizens needs to be dealt with firmly was the President and if I’m not mistaken : told us that if not the night of September the 11th shortly thereafter now I need to make sure I get my facts straight but it was soon I don’t know of any conversation that was reported in the newspaper like I just don’t know about it I would like to I’m launching my book on the 25th and I am honorbound to Simon & Schuster not to comment on the book before that Dave in other words by the book is what he’s saying my question is about the US president yes excellency president musharraf has issued a call for building bridges and promoting interfaith harmony between the west and the Islamic world which is in the upheaval and in complete turmoil so your comments of Islamic fascist and then the comments of the Pope and in flipped and inflammation Islamic world and my question is that would you take the leading role along with President Musharraf to build these bridges and promote interfaith harmony to avert any wrong notion of clash of civilizations I appreciate the president’s leadership in promoting harmony there is unbelievable propaganda in the Middle East these days that try to inflame passion the the propagandists are attempting to create conditions where terror is justified and so at my speech at the United Nations I stood up and said loud and clear America respects Islam and we do we don’t respect people who kill in the name of Islam to achieve political objectives like the terrorists whose matter of fact I these extremists exploit propaganda in order justify their behavior all of us need to step up and talk about a world in which we respect each other’s religions matter of fact is very important for Muslims around the world to know there’s a lot of Muslims living at peace here in the United States they are proud Americans and they’re equal to me as a citizen we respect their religions I repeat to you however that the free world in the moderate world must stand up to these extremists and not let them spread their hateful propaganda now let them try to incite the incite people to acts of violence because these extremists are not only against Western people they’re also against moderate people and the president’s reaching out to help understand the world understand that the Muslim religion is a peaceful religion is very important and we can help and we will help one way we can help is to is to work with the Palestinians and the Israelis to achieve peace I’m the first president ever to have articulated a two-state solution I believe a Palestinian state as a democracy living side by side with Israel will yield the peace what’s important is for people to understand that in order to have that peace in that Palestinian state people have got to recognize Israel’s right to exist in order for this to happen you can’t ask people to negotiate with people who say you shouldn’t exist we will continue to give aid to people who suffer we didn’t ask the question whether you know what was the nature of the religion of the people who suffered in Pakistan when we spent a half a billion dollars to help this president we said they’re suffering and we want to help and so we will continue to outreach it’s important however for people in the Middle East to reject the extremist propaganda that is spreading in many cases absolute lies about the intentions of the United States they’d love to say this is a war against Islam I can’t think of anything more false these are moderate reasonable people who reject extremism in order for there to be peace so I work hard to do my part thank you for that question Steve thank you sir there’s been a back-and-forth this week over whether the US needs permission to strike inside Pakistan if Osama bin Laden is located could each of you give your position on that and you did you are you satisfied with his assurances on the tribal deal well first of all I appreciate the briefing on the tribal deal when the president looks him in the eye and says the tribal deal is intended to reject the Taliban ization of the people and that there won’t be a Taliban and won’t be al Qaeda I believe you know I mean it that this is a person with whom I’ve now had close working relationships for five and a half years and when he says if we find or when we find Osama bin Laden he will be brought to justice I believe in and we’ll let the tactic speak for themselves after it happens we’re on the hunt together it’s in the president’s interest that al Qaeda be brought to justice and it’s in our interest and we collaborate and we strategize and we talk a lot about how best to do this all I can tell you is is that when Osama bin Laden is found he will be brought to justice and that’s what we’ve continually discussed later I think as the president said we are in the hunt together against these people now why are we bothering of how to the semantics of the tactics of how to deal with the situation you’ll deal with it we are in the hunt together you want the person if at all we confront him if at all we find out his location we are quite clear what to do so let’s not get involved in how it ought to be done by whom it ought to be done there is total coordination at the intelligence level between the two forces there is coordination at the operational level at the strategic level even at the tactical level so therefore we are working together and when the situation arises we need to take the right decision to strike that’s how I don’t want let me I what we’re thinking about anyway doing and missing may I also say that we need to have ladies and gentlemen here we have the basis of a relationship is trust and confidence if we don’t have that trust and confidence in each other and we think that we are bluffing each other I don’t think that’s a good way of moving forward anyway okay I’m sorry Zafar Jung group of the newspapers mr. president I have two-part question and first I must rejoice the remarks which you gave the outset about President Musharraf and second is mr. president in Pakistan we cherish the idea of having strategic and long partnership with United States of America but we found that there is a discriminatory regime is being forward by your great country pertaining to the fear of the nuclear technology for the peaceful purpose Pakistan leaves of energy and we have been denied of that could you insure us that this discrimination will come to an end after your disgrace waiting with President Musharraf and the second part of my question mr. president that President Musharraf has been asking resolution of the problem of Palestine and cash weed for the sustainable peace in the world especially in this part of the world are you going to contemplate are you contemplating some step to take some initiative to resolve these two problems and question for mr. president is how far free life how is a song about your relations with President Bush and the agenda the item for which you are going to take up with the president how far you have been successful in persuading thank you sir you represented the entire press corps there that’s good we talked about energy and we talked about our need to work through the recent history of that we’ve had together on dealing with proliferation matters secondly in terms of Kashmir and Palestine Kashmir issue will be solved when two leaders decide to solve it and we want to help the United States can’t force nations to to reach an agreement it’s because we want there to be an agreement lasting agreements occur when leaders of nations say let’s get the past behind us and let’s move forward I am I’m encouraged by the meetings that the president and the Prime Minister of India had it is an indication that there is desire at the leadership level to solve this long-standing problem leadership is also going to be required between Israel and Palestine we of course can help and will help but it’s important for you to understand that we cannot impose peace we can help create the conditions for peace to occur we can lay out vision we can talk to world leaders and we do we can provide aid to help institutional buildings so that a democracy can flourish but ultimately peace long standing peace depends upon the will of leaders I’m impressed by this president’s will to get something done in Kashmir he and I have talked about this issue in the past he is said he was going to reach out to the Prime Minister’s of India and he has and our hope is that this process continues forward I asked the president just like I would ask the Prime Minister of India what can we do to help what would you like the United States to do to facilitate an agreement would you like us to get out of the way would you like us not to show up would you like us to be actively involved how can we help you if you so desire achieve peace and that’s that’s the role of the United States as far as I’m concerned thank you I think the I’ve already answered we’ve had far-reaching discussion encompassing bilateral issues regional and international I think we have general consensus on all issues Thank You mr. brother good job by the board thank you thank you very much thank you all

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Quran Para 1-15 Just Only Urdu Translation by Fateh Muhammad Jalandhri

    Quran Para 1-15 Just Only Urdu Translation by Fateh Muhammad Jalandhri

    The provided text appears to be excerpts from an English translation of the Quran. It discusses fundamental Islamic concepts, such as the oneness of Allah, prophethood, the importance of faith and prayer, and moral conduct. The passages address believers and non-believers, outlining rewards for the righteous and punishments for the disbelievers. Various stories of past prophets are referenced, and guidance is provided on different aspects of life, including dietary laws and matters of judgment. The text emphasizes obedience to Allah and His Messenger and warns against associating partners with God.

    Comprehensive Study Guide: Understanding the Source Material

    Quiz: Short Answer Questions

    1. According to the text, what are some of the characteristics of those who believe in the unseen?
    2. Describe the attitude and actions of the hypocrites as portrayed in the provided excerpts.
    3. What guidance does the text offer regarding financial dealings and loans?
    4. Summarize the rules or instructions given concerning divorce in the source material.
    5. What are some of the regulations mentioned regarding Hajj and Umrah?
    6. How does the text describe Allah’s relationship with and knowledge of humanity?
    7. What are some of the things that have been made forbidden (haraam) according to the text? Provide at least two examples.
    8. Describe an instance where a past prophet or community faced consequences for their actions as mentioned in the excerpts.
    9. What instructions or encouragements are given regarding fighting or jihad in the way of Allah?
    10. What does the text say about the Day of Judgment and its significance?

    Quiz Answer Key

    1. Those who believe in the unseen have faith, pray with respect, and spend from what they have been bestowed. They also believe in the afterlife and follow the guidance given by the Almighty.
    2. The hypocrites outwardly claim to believe in Allah and the last day but do not truly believe. They deceive the believers but only deceive themselves unknowingly, spread mischief, and mock the true believers.
    3. The text advises documenting loans for a fixed period with a just writer and witnesses. It also encourages giving time to a borrower in difficulty and states that forgiving the debt is better if understood.
    4. Divorce is mentioned as permissible but should ideally happen only twice. Divorced women have a waiting period (iddat). Men are advised to treat women fairly during and after divorce, and taking back the mehr (dowry) without a valid reason is discouraged.
    5. The text instructs on performing Hajj and Umrah for Allah’s pleasure, completing them, and offering a sacrifice if stopped. Shaving the head during Ihram is regulated, and certain actions like arguing and committing bad deeds are prohibited during Hajj.
    6. The text emphasizes that Allah is the creator and sustainer of all, knows everything in the heavens and the earth (hidden and manifest), is aware of people’s actions and intentions, and is capable of everything. He answers prayers and guides those who turn to Him.
    7. Examples of things made forbidden include associating partners with Allah, consuming another’s property unjustly, taking bribes to consume goods illegally, marrying close relatives (mothers, daughters, sisters, aunts, etc.), and fornicating.
    8. The people of Noah, Ad, and those before them who denied Allah’s verses were punished for their sins. The children of Israel are mentioned as having a covenant with Allah but often disobeyed and even killed prophets.
    9. The text encourages fighting in the way of Allah against those who fight believers and to combat mischief and oppression. However, it also cautions against excesses in fighting and emphasizes that fighting should cease if the enemy retreats.
    10. The Day of Judgment is portrayed as a significant event when everyone will return to Allah and be held accountable for their deeds. Believers will receive reward, while disbelievers and wrongdoers will face punishment.

    Essay Format Questions

    1. Analyze the concept of belief and disbelief as presented in the provided excerpts. What are the characteristics and consequences associated with each?
    2. Discuss the social and ethical guidelines outlined in the text. How do these guidelines address various aspects of life, such as family, finance, and conflict resolution?
    3. Examine the role and attributes of Allah as depicted in the source material. How is Allah portrayed in relation to creation, humanity, and divine guidance?
    4. Compare and contrast the descriptions of the believers and the disbelievers/hypocrites in the text. What are the key distinctions in their beliefs, actions, and ultimate fates?
    5. Explore the themes of justice and accountability within the excerpts. How are these concepts emphasized in different contexts, such as legal matters, social interactions, and the Day of Judgment?

    Glossary of Key Terms

    • Allah: The Arabic word for God, the one and only God in Islam.
    • Quran Majeed: Referred to in the text as “this book,” it is the holy book of Islam, believed by Muslims to be the word of Allah revealed to Prophet Muhammad.
    • Prophet (Rasool/Nabi): A messenger of God chosen to convey divine messages to humanity. Examples mentioned include Muhammad, Moses, Jesus, Abraham, and others.
    • Believers (Momin/Momino): Those who have faith in Allah, His prophets, His books, and the Day of Judgment, and who act righteously.
    • Disbelievers (Kafir/Infidel): Those who reject the truth of Allah and His messages.
    • Hypocrites: Those who outwardly profess belief but inwardly harbor disbelief and seek to deceive the believers.
    • Unseen (Ghaib): Aspects of reality that are beyond human sensory perception, such as Allah, angels, and the afterlife.
    • Mehr (Dowry): A mandatory gift given by the groom to the bride in a marriage contract.
    • Iddat: The waiting period for a divorced or widowed woman before she can remarry.
    • Hajj: The annual pilgrimage to Mecca, one of the five pillars of Islam.
    • Umrah: A voluntary pilgrimage to Mecca that can be performed at any time of the year.
    • Ihram: A state of ritual purity and specific dress that pilgrims enter before performing Hajj or Umrah.
    • Jihad: An Arabic term that literally means “to strive” or “to struggle” in the way of Allah. It can encompass various forms of striving, including military struggle under specific conditions.
    • Zakat: Obligatory charity in Islam, one of the five pillars.
    • Day of Judgment (Qiyamah): The day when Allah will resurrect all of humanity to be judged for their deeds in this life.
    • Paradise (Jannah): The eternal abode of peace and happiness for the righteous believers.
    • Hell (Jahannam/Nar): The eternal abode of punishment for the disbelievers and wrongdoers.
    • Haraam: Forbidden or unlawful in Islam.
    • Halal: Permitted or lawful in Islam.
    • Shirk: The act of associating partners with Allah, considered the greatest sin in Islam.
    • Taqwa: God-consciousness, piety, and awareness of Allah.
    • Sunnah: The practices and traditions of Prophet Muhammad.
    • Torah: The holy book revealed to Prophet Moses.
    • Gospel (Injeel): The holy book revealed to Prophet Jesus.
    • People of the Book (Ahl al-Kitab): Refers primarily to Jews and Christians who received scriptures before Islam.
    • Angels (Malaika): Beings created by Allah from light, who carry out His commands.
    • Satan (Shaitan): The devil, who tempts people to disobey Allah.

    Briefing Document: Analysis of “01.pdf” Excerpts

    This briefing document provides a review of the main themes, important ideas, and facts presented in the excerpts from “01.pdf”. The document draws directly from the provided text, incorporating quotes where relevant.

    Overall Theme:

    The primary theme of these excerpts is the exposition of fundamental tenets and principles, likely of Islam. The text addresses the nature of God (Allah), the importance of faith and worship, guidance through scripture (specifically the Quran), the consequences of belief and disbelief, moral and ethical conduct, social regulations, and historical narratives. It also addresses interactions with non-believers and the concept of divine law.

    Key Ideas and Facts:

    1. The Nature of God (Allah):

    • Oneness and Supremacy: Allah is repeatedly emphasized as the sole deity, the source of all creation, the Most Gracious and Most Merciful. “I seek refuge from Allah, Satan The one who starts from Mardur by taking the name of Allah is great The Most Merciful is Most Merciful in every way All praise is for Allah who is the source of all creation.” The text asserts, “There is no one except Allah who is the most merciful God Not worthy of worship, alive to hold everyone.”
    • Creator and Sustainer: Allah is identified as the creator of the heavens and the earth, providing sustenance and control over all aspects of existence. “People, worship your Lord who created you and those before you so that you can be saved from the punishment of the one who harmed you I made the ground my bed and the sky my roof And from the sky I will rain down water for you to eat…”
    • Knowledge and Wisdom: Allah is all-knowing and all-wise. “Without doubt, Allah is capable of everything… And He has made his reputation and he is aware of everything.” “Allah is the greatest, the wisest is divorce.”
    • Justice and Accountability: Allah is the ultimate judge, and individuals will be held accountable for their actions. “Oh God, the judge of the day of judgement We worship you and pray to you alone… Fear the day when you are in the presence of Allah You will return and every person will be responsible for his deeds.”

    2. The Importance of Faith and Worship:

    • Belief in the Unseen: Faith requires belief in the unseen. “Abstinence is a guide for those who believe in the unseen having faith and praying with respect…”
    • Prayer (Salah): Prayer is a central act of worship. “and praying with respect… Keep doing it and stand respectfully before Allah.” Specific prayers like the middle prayer (Asr) are mentioned.
    • Guidance through Scripture (Quran): The Quran is presented as the word of Allah, a guide for believers. “Alif Lam Meem this book means Quran Majeed There is no doubt that it is the word of Allah Abstinence is a guide for those who believe…” It confirms previous scriptures but also distinguishes right from wrong. “O Prophet, He has revealed the true book to you that confirms the first heavenly books and it is He who revealed the Torah and the Gospel… and then the Quran which It separates right and wrong…”
    • Obedience to Allah and the Prophet: Believers are called to obey the commands of Allah and His Prophet. “If I accept your prayers then they should Obey my orders and have faith in me so that Find the righteous path…” “O believer of Allah and His prophet Be obedient…”
    • Remembrance and Thankfulness: Remembering Allah and being thankful for His blessings is emphasized. “Remember the elders and thank them…”

    3. Consequences of Belief and Disbelief:

    • Reward for Believers: Those who have faith and do good deeds are promised paradise with gardens, flowing canals, and pure companions. “And those who have faith and do good deeds Give them the good news that for them There are gardens of blessings beneath which canals flow…”
    • Punishment for Disbelievers: Disbelievers face severe punishment in hellfire. “Fear the fire whose fuel is men and stones and which were prepared for the infidels… A great punishment is prepared for them and the hawks.” Their hearts and minds are described as sealed. “Their hearts and ears are sealed and their eyes are veiled A great punishment is prepared for them and the hawks.”
    • Hypocrisy: Hypocrisy is strongly condemned, with hypocrites being described as deceiving themselves and facing severe consequences. “There are those who say, ‘We believe in Allah and Every day they believe in the end, though they They do not believe in their own Allah They deceive the Muslims and the believers but the truth is I don’t deceive anyone but myself and They are unaware of this…”

    4. Moral and Ethical Conduct:

    • Avoiding Mischief and Corruption: Believers are urged to avoid spreading mischief and corruption. “And when it is said to them, ‘There is mischief in the earth, If you don’t put it, they say that we are trying to reform Look this is without doubt a free sid But they do not keep any news…”
    • Justice and Fairness: Justice is a recurring theme, especially in dealings with others, including family and in legal matters. “The writer should write as Allah has given him I have taught you not to refuse to write and Write the document and the person who takes the loan get the text of the document written down and Allah that his master is afraid and he is in debt Do not get anything less written down…” “O you who believe, stay steadfast to justice And give true testimony for the sake of Allah against yourself or your parents…”
    • Honesty and Integrity: Avoiding bribery and consuming others’ property unlawfully is prohibited. “Don’t consume another’s property unnecessarily and don’t destroy it Take the bribe to the officer so that the people consume some part of the goods illegally Go and you know it too…”
    • Charity and Spending in the Way of Allah: Believers are encouraged to spend their wealth for good causes. “And spend your wealth in the way of Allah and Do not throw yourself into destruction and do good deeds Allah blesses those who do good…” “Momino, until you are one of those things which Spending in the way of Allah is dear to you If you do not do this, you will never be able to achieve goodness…”
    • Controlling Anger and Forgiving Others: Suppressing anger and forgiving the mistakes of others are praised. “Stopping anger and making people’s mistakes free and Allah makes us friends…”

    5. Social Regulations and Family Law:

    • Marriage and Divorce: The text provides guidance on marriage, divorce, and the rights and responsibilities of spouses. “In the nights of fasting It is lawful for you to go to your women it’s been done it’s your dress and You are their clothing…” “Divorced women can hold back their periods for three days on their own… divorce It is only twice…” Regulations regarding dowry (Mehr) are also mentioned.
    • Breastfeeding and Childcare: Mothers are instructed to breastfeed for two full years, and fathers are responsible for providing for them. “and mothers give their children This order is given to feed milk to that person for full 2 years which is for breastfeeding for the entire period Whether and food for lactating mothers and According to tradition, clothes are the responsibility of the father.”
    • Inheritance Laws: Detailed rules regarding the distribution of inheritance are laid out, specifying shares for men, women, parents, and siblings. “He gives you instructions regarding your children that one boy’s share belongs to two girls the share is equal and if the child dies only Only girls means two or more than two then they have two thirds of the total…”
    • Dealing with Orphans: Justice and care for orphans are emphasized. “And the orphan is required to work until he attains adulthood Keep yourself busy and stay under scrutiny, then you will become an adult… Those who consume orphans’ property illegally He fills his belly with fire and surely Allah will throw you into hell.”

    6. Interactions with Non-believers:

    • Jihad (Striving/Fighting in the Way of Allah): The concept of Jihad is introduced, with believers being called to fight against those who fight against them, but within limits. “And those who fight you You too fight them in the way of Allah But do not do excesses because Allah will punish you for excesses I do not keep friends with those who do this and they Kill wherever you find them and from where they took I have removed you from there, that is from Mecca You should also expel them…” The purpose is to establish Allah’s religion and stop mischief.
    • Dealing with the People of the Book (Jews and Christians): The text refers to the Torah and the Gospel and engages with the beliefs and behaviors of the People of the Book, sometimes critically. “O People of the Book, you are aware of the verses of Allah Why do you deny it and yet believe in the Torah? So you are the people of the book, you mix truth with lies why do you create mischief and why do you ignore the truth you hide it even though you know it…”
    • Prohibition of Taking Disbelievers as Allies: Believers are warned against taking disbelievers as close allies. “O you who believe, do not take My enemies and your enemies as allies, extending to them affection while they have disbelieved in what has come to you of the truth…”

    7. Historical Narratives and Examples:

    • Adam and the Angels: The creation of Adam and the dialogue with the angels are recounted. “And it is worth remembering the time when Your Lord said to the angels that I’m going to make my deputy in the ground He said, do you see such a person in it wants to make a Naib who can spoil it and do some other things Then you keep killing and we will praise you I keep on reciting tasbih and takdees, he said I know the things that you don’t know, He taught Adam the names of all things…”
    • Noah’s Ark: An example is given related to those who did not heed the warning of the flood. “and the example of the people of Noah and the people of Aad and Samud and those after them was very strong, only Allah knows them well and their apostles came to them with clear signs but they did not listen…”
    • Abraham (Ibrahim): Abraham’s monotheism and rejection of idolatry are highlighted. “beware and that time is also worth remembering when Ibrahim said to his father Azar, Do you make idols into gods? I am watching I believe that you and your community are openly misguided and in this manner we will send Ibrahim to the skies and began to show the unknown things about the earth so that he Be among those who believe strongly…”
    • Moses (Musa) and the Exodus: Events related to Moses and the children of Israel are mentioned, including the appointment of a king and battles. “that I have not seen a single person who, after Moses, He said to his Prophet that you are a prophet for us Appoint a king so that we can worship Allah perform jihad in the path…”
    • Jesus (Isa): The miracles of Jesus and the reaction of the disbelievers are described. “And We made it clear to Isa son of Maryam Gave the signs and helped Ruhal Qudas…” “is when Allah says to Isa that O Isa son of Mary, remember my favors I did this to you and your mother When I asked Ruhal Qudsai Jibraeel about your You helped me in my lap and even though I was young I was the same used to chat with people on the phone and when I have given you the Book and the grain and the Torah, and I taught you the Bible…”

    8. The Concept of Trial and Testing:

    • Believers will be tested in their faith. “Do you think that heaven is without trial I will enter it although Allah has already It is good for those amongst you who do Jihad I did not even know it and this is also the intention So that he may make known to those who follow the right path…”
    • Hardships and losses are sometimes a form of testing. “And We will surely test you with something of fear and hunger and a loss of wealth and lives and fruits, but give good tidings to the patient.”

    Conclusion:

    The excerpts from “01.pdf” present a wide range of foundational Islamic teachings. They emphasize the absolute oneness and power of Allah, the importance of faith, worship, and adherence to divine guidance through the Quran. The text outlines ethical and moral principles for believers, provides social and legal frameworks, and recounts historical narratives to illustrate divine will and the consequences of different paths. The strong contrast between the rewards for believers and the punishment for disbelievers serves as a central theme throughout these excerpts.

    Core Teachings from Religious Scripture

    Frequently Asked Questions based on the Provided Text

    1. What is the central message or focus of this text?

    The text appears to be excerpts from a religious scripture, likely the Quran, addressing fundamental aspects of faith, divine guidance, worship, morality, law, and the consequences of belief and disbelief. It emphasizes the oneness of Allah, the importance of following divine commands, the concept of accountability, and the contrasting fates of the righteous and the unrighteous. The text covers a wide range of topics, from the nature of Allah and the purpose of creation to specific legal and ethical guidelines for believers.

    2. What are some of the key attributes or descriptions of Allah presented in this text?

    Allah is described as the Most Gracious, the Most Merciful, the Lord of all creation, the Judge of the Day of Judgment, the one who bestows blessings, the source of guidance, the all-knowing, the all-powerful, the creator of the heavens and the earth, the giver of life and death, the one who answers prayers, the forgiver of sins, the bestower of sustenance, the one who is aware of everything, and the ultimate authority. The text repeatedly stresses His uniqueness and prohibits associating partners with Him.

    3. What are some of the core practices or beliefs emphasized for those who believe in Allah?

    Believers are instructed to seek refuge in Allah, to worship and pray to Him alone, to ask for His guidance on the right path, to have faith in the unseen, to pray with respect, to spend from what Allah has bestowed upon them, to believe in the books revealed (including the Quran and previous scriptures), to believe in the prophets, to believe in the afterlife, to follow divine guidance, to be conscious of Allah’s limits, to avoid mischief and corruption, to spend wealth in the way of Allah, to perform Hajj and Umrah, to fast, to avoid taking interest, to fulfill trusts, to be just in their dealings, and to remember Allah frequently.

    4. What are some of the consequences described for those who disbelieve or act against Allah’s commands?

    Disbelievers are warned of a great punishment, sealed hearts and ears, veiled eyes, being misled, following misguidance, engaging in mischief, deceiving themselves, having disease in their hearts, facing the fire whose fuel is men and stones, not profiting from their actions, being deaf, dumb, and blind to the right path, being surrounded by Allah’s power, and ultimately facing hell. The text also mentions specific punishments for transgressions and the lack of forgiveness for those who die in disbelief without repentance.

    5. What guidance does the text offer on matters of social conduct and family life?

    The text provides instructions on marriage, divorce, the rights of women, breastfeeding, inheritance, dealing with orphans, lending and borrowing, and the prohibition of bribery and consuming others’ property unjustly. It emphasizes fairness, kindness, and the maintenance of just relationships within families and the community. Specific rules are laid out regarding the waiting period after divorce (iddah), the distribution of inheritance, and the treatment of spouses.

    6. What does the text say about previous prophets and scriptures?

    The text acknowledges and confirms previous prophets and scriptures, such as the Torah and the Gospel, stating that the Quran confirms the truth contained within them. Believers are expected to believe in all that was revealed to the prophets without making any distinction between them. The text also recounts stories of prophets like Adam, Noah, Ibrahim, Moses, Jesus, and others, highlighting their roles and the messages they conveyed.

    7. What is the text’s stance on warfare (Jihad) and dealing with enemies?

    The text mentions fighting in the way of Allah against those who fight against believers and cause mischief. However, it also emphasizes not committing excesses and ceasing hostilities if the enemy retreats. The concept of Jihad is linked to striving for the sake of Allah and defending the faith. The text also discusses the consequences of turning away from Jihad when it is made obligatory and the rewards for those who participate and become martyrs.

    8. What are some of the examples or parables used in the text to illustrate its points?

    The text uses various examples and parables to convey its messages, such as the person who lit a fire but then was left in darkness, the rainstorm with thunder and lightning causing fear, the story of Adam being taught the names of all things, the encounter of Talut (Saul) and his army with Jalut (Goliath), the story of those who fled their homes in fear of death and were then brought back to life, and the argument between Ibrahim and the one given kingship about who gives life and death. These examples serve to make abstract concepts more understandable and impactful.

    Seeking Refuge in Allah from Satan

    The sources indicate seeking refuge from Allah, specifically from Satan. The excerpt begins with the statement “I seek refuge from Allah, Satan The one who starts from Mardur by taking the name of Allah is great The Most Merciful is Most Merciful in every way All praise is for Allah who is the source of all creation”.

    This suggests that seeking refuge in Allah is associated with the commencement of something, in this case, taking the name of Allah. It is also directly linked to seeking protection from Satan. The text immediately follows this by praising Allah as great, most merciful, and the source of all creation. This juxtaposition implies that Allah is the ultimate protector and the one to whom refuge should be sought from evil influences like Satan.

    The Centrality of Praising Allah

    Based on the sources, praising Allah is a central theme. The excerpt from “01.pdf” begins immediately after the statement about seeking refuge in Allah by declaring, “All praise is for Allah who is the source of all creation“.

    This verse establishes that all praise is due to Allah because He is the originator and sustainer of everything that exists. The text continues to describe Allah as “The Lord is most kind and merciful“, further highlighting attributes that warrant praise.

    The overall tone of the initial verses emphasizes Allah’s greatness, mercy, and power, all of which serve as reasons for offering praise. By acknowledging Allah as “great The Most Merciful is Most Merciful in every way” and “the source of all creation,” the text lays the foundation for recognizing His supreme status and the appropriateness of directing all praise towards Him.

    Belief in the Unseen: A Defining Trait of Believers

    Based on the source “01.pdf”, belief in the unseen (Ghaib) is a fundamental characteristic of the believers. The text states, “Abstinence is a guide for those who believe in the unseen having faith and praying with respect“. This verse immediately links belief in the unseen with having faith and performing prayers respectfully, suggesting that these are interconnected aspects of piety.

    The source further elaborates on what believers have faith in, mentioning “the afterlife“. This indicates that belief in a life after death is part of believing in the unseen.

    The text contrasts believers with disbelievers, noting that the disbelievers “may or may not give them advice It is equivalent to not believing in Allah Their hearts and ears are sealed and their eyes are veiled”. This implies that a lack of belief in the unseen is associated with disbelief in Allah and a state of being closed off from guidance.

    Furthermore, the source mentions, “These are the people who believe in the afterlife They are following the guidance given by the Almighty And the successful ones are those who are disbelievers”. This reiterates the importance of belief in the afterlife as a marker of those who follow divine guidance and are considered successful, contrasting them with disbelievers.

    In summary, according to the source, belief in the unseen is a core tenet of faith, encompassing belief in things not directly perceived, such as Allah, the afterlife, and potentially other aspects of the divine realm. This belief is presented as a defining characteristic of believers and is linked to receiving guidance and achieving success, while its absence is associated with disbelief and spiritual blindness.

    Guidance and Truth in the Quran

    Based on the source “01.pdf” and our conversation history, guidance and truth are central concepts within the text.

    Guidance (Hidayat):

    • The Quran is presented as a primary source of guidance. It is described as “this book means Quran Majeed There is no doubt that it is the word of Allah Abstinence is a guide for those who believe in the unseen“. This indicates that the Quran offers direction for those who have faith in what they cannot see.
    • Believers are identified as those who follow guidance. The text states, “These are the people who believe in the afterlife They are following the guidance given by the Almighty And the successful ones are those who are disbelievers“. This implies that adhering to divine guidance leads to success, contrasting with those who disbelieve.
    • Allah is the ultimate source of guidance. It is mentioned that “Allah’s Hidayat means Deen Islam is the guidance“. Furthermore, the text notes that Allah “may grant safety to those who follow His will shows the way and by his command taking them out of the darkness into the light and guides them on the right path“.
    • The Prophet is a vehicle for guidance, sent as “a warner and a scaremonger“. The implication is that the Prophet conveys Allah’s guidance to humanity.
    • Rejecting guidance leads to misguidance. The text warns, “If you abandon guidance and purchase misguidedness then do not It was not their business that gave them any profit nor did this They were guided by the example of that person is the one who lit the fire…“. This highlights the negative consequences of turning away from the provided guidance.

    Truth (Haqq):

    • The Quran is explicitly stated to be the truth. The verse “Alif Lam Meem this book means Quran Majeed There is no doubt that it is the word of Allah” asserts its divine origin and unquestionable truth. Additionally, believers acknowledge that “It is the truth from their Lord“.
    • Truth should not be mixed with falsehood, nor should it be concealed. The text commands, “never associate truth with falsehood Mix it up and don’t deliberately hide the truth“. This emphasizes the importance of maintaining the purity and clarity of the truth.
    • Belief in the revealed books is tied to believing in the truth. It is mentioned that if one were a man of faith, they would have believed in the truth, implying that the divine books contain the truth.
    • The Prophet is described as having been sent with truth. This reinforces the idea that the message he conveys is rooted in truth.
    • Ultimately, on the Day of Judgment, only the truth will benefit. This underscores the paramount importance of adhering to and upholding the truth in this life.

    Recipients of Guidance and Truth:

    • Believers are the primary recipients of guidance and those who recognize and accept the truth. Our previous discussion highlighted that belief in the unseen is a characteristic of these believers who are guided [see our conversation history].

    Obstacles to Guidance and Truth:

    • Disbelief (Kufr) is a major impediment to accepting guidance and truth.
    • Hypocrisy is portrayed as a state where individuals claim belief but their hearts are sealed, preventing them from true guidance.
    • Following desires can lead people astray from the guidance and the truth revealed by Allah.
    • Pride and stubbornness can prevent individuals from acknowledging and submitting to the truth.
    • Mixing truth with falsehood and deliberately hiding the truth are actions that actively obscure guidance.

    Consequences of Following Guidance and Truth:

    • Those who follow guidance and believe in the truth are promised success, salvation from punishment, and entrance into Paradise.

    Consequences of Rejecting Guidance and Truth:

    • Rejecting guidance and the truth leads to misguidance, severe punishment (including the fire of hell), and failure in both this world and the hereafter.

    In summary, the source emphasizes that Allah, through the Quran and His Prophet, provides guidance (Hidayat) which is synonymous with the truth (Haqq). Believers are those who accept this guidance and truth, while disbelievers and hypocrites turn away, facing negative consequences. Adhering to guidance and truth is presented as the path to success and salvation.

    Disbelievers: Characteristics and Divine Punishment

    Based on the source “01.pdf” and our conversation history, disbelievers (Kafirun) are a significant group whose characteristics and the punishment (Adhab) they face are discussed extensively.

    Who are the Disbelievers?

    • Disbelievers are those who do not believe in Allah. The text equates not taking advice with “not believing in Allah”.
    • They deny the truth (Haqq), which includes the Quran as the word of Allah.
    • They do not believe in the unseen (Ghaib), including the afterlife.
    • They are described as having their “hearts and ears are sealed and their eyes are veiled“, making them incapable of receiving guidance.
    • They are those who reject the verses of Allah.
    • They are identified as those who do not follow Allah’s guidance (Hidayat), which is equated with Deen Islam.
    • They are contrasted with believers who have faith and do good deeds.
    • The text mentions specific groups like the Jews and Christians who may disbelieve in certain aspects of the revealed books or the prophethood of Muhammad (peace be upon him).
    • Mushrikun (polytheists) are also considered disbelievers as they associate partners with Allah.

    Characteristics and Actions of Disbelievers:

    • They deceive the Muslims and believers but ultimately deceive only themselves without realizing it.
    • There is disbelief in their hearts, described as a disease that Allah makes worse, leading to sadness because of their lies.
    • They are accused of causing mischief in the earth but claim to be reformers.
    • They reject faith even when called to it, questioning the intelligence of believers.
    • When meeting believers, they claim to have faith, but in private, they mock them.
    • They abandon guidance and purchase misguidedness.
    • They are described as deaf, dumb, and blind to the right path.
    • They make partners with Allah.
    • They deny the Day of Judgment.
    • They hinder others from the path of Allah.
    • They kill prophets without any reason and those who order justice.
    • They take the verses of Allah for a small price, prioritizing worldly gains over divine guidance.
    • They are unjust (Zalimun) and transgressors (Mu’tadin).
    • They follow their own desires rather than divine commands.
    • They attribute lies to Allah.

    Punishment for Disbelievers:

    The source outlines various forms of punishment for disbelievers, both in this world and, more prominently, in the afterlife:

    • A great punishment (Adhabun Azeem) is prepared for them.
    • Their hearts and ears are sealed, and their eyes are veiled, which can be seen as a form of spiritual punishment in this life.
    • They experience sadness because of their lies.
    • They will not attain profit from abandoning guidance.
    • Allah laughs at the hypocrites and gives them time to indulge in mischief and rebellion.
    • They will be left in darkness after having seen the light.
    • Allah surrounds the disbelievers on every side, implying inescapable divine power.
    • On the Day of Judgment, Allah will decide between them regarding their disagreements.
    • They will face a great punishment in the end.
    • They will be gathered towards Hell, which is described as a bad place.
    • Their wealth and children will be of no use in saving them from Allah’s punishment.
    • They will be the fuel for hell.
    • There will be a severe punishment for those who deny Allah’s verses.
    • They will face a painful punishment.
    • Their deeds will be ruined in this world and the hereafter, and no one will help them.
    • They will be cursed by Allah, the angels, and all of humanity.
    • The punishment will not be lightened for them, nor will they be given respite.
    • Even if they offer an earth full of gold as ransom, it will not be accepted.
    • They will be in the lowest level of Hell.
    • They will have no helpers.
    • They will be disgraced on the Day of Judgment.
    • They will be made to taste the punishment of the fire.
    • They will be given boiling water to drink and a painful torment in hell.

    Relationship to Guidance and Truth:

    The punishment for disbelievers is directly linked to their rejection of guidance (Hidayat) and truth (Haqq), as we discussed previously. Because they refuse to believe in Allah, His revealed word (the Quran), the unseen, and the guidance provided by the Prophet, they incur divine wrath and are destined for severe consequences. The acceptance of guidance and belief in the truth are presented as the means of salvation, while disbelief is the path to punishment. The sealing of their hearts and veiling of their eyes, mentioned as characteristics of disbelievers, symbolize their rejection of spiritual insight and their willful blindness to the truth, ultimately leading to their punishment.

    QURAN PARA 1-15 JUST/ONLY URDU/HINDI TRANSLATION WITH TEXT HD FATEH MUHAMMAD JALANDRI | FULL QURAN
    Full Urdu Quran Part 2 of 2 | Quran in Only Urdu – PARAH: 16 to 30 | Fateh Muhammad Jalandhari

    The Original Text

    Quran Para 1-15 Just/Only Urdu/Hindi Translation With Text Hd Fateh Muhammad Jalandri | Full Quran I seek refuge from Allah, Satan The one who starts from Mardur by taking the name of Allah is great The Most Merciful is Most Merciful in every way All praise is for Allah who is the source of all creation The Lord is most kind and merciful Oh God, the judge of the day of judgement We worship you and pray to you alone They ask for our help to lead them on the right path the paths of the people on whom you bestow your blessings I kept doing this with those on whom I was angry And do not go astray, Amen, start in the name of Allah He who is Most Gracious, Most Merciful Alif Lam Meem this book means Quran Majeed There is no doubt that it is the word of Allah Abstinence is a guide for those who believe in the unseen having faith and praying with respect, and Of that which We have bestowed upon them and whatever the book O Prophet you But the books which were revealed before you believing in all that was revealed to the prophets and These are the people who believe in the afterlife They are following the guidance given by the Almighty And the successful ones are those who are disbelievers You may or may not give them advice It is equivalent to not believing in Allah Their hearts and ears are sealed and their eyes are veiled A great punishment is prepared for them and the hawks There are those who say, ‘We believe in Allah and Every day they believe in the end, though they They do not believe in their own Allah They deceive the Muslims and the believers but the truth is I don’t deceive anyone but myself and They are unaware of this, there is disbelief in their hearts It was a disease but Allah made their disease worse and they felt sad because of their lies the one who gives punishment And when it is said to them, ‘There is mischief in the earth, If you don’t put it, they say that we are trying to reform Look this is without doubt a free sid But they do not keep any news and when they are told that just like other people have accepted faith you too If you have faith then they say, the way Fools have accepted faith, in the same way we too have accepted faith Listen to me these are the fools but They do not know and when these people meet the believers If yes, then they say that we have accepted faith and When you go into your demons, then they say we are with you and We make fun of these Muslims Allah laughs at the hypocrites and they Time is given to indulge in mischief and rebellion These are the people who are going astray If you abandon guidance and purchase misguidedness then do not It was not their business that gave them any profit nor did this They were guided by the example of that person is the one who lit the fire on the night of the date when the fire that illuminated the things around him Allah has illuminated their light and left them in the dark to Can’t you see they are deaf, dumb and blind to somehow get back to the right path they cannot do it or there is any example in this that it is raining from the sky and there is darkness in it It’s getting dark and the clouds are rumbling And if there is lightning then it gets scared of the thunder put your fingers in your ears for fear of death And Allah surrounds the disbelievers on every side. The lightning is so close in their eyes of Basari shines and casts light on them we walk in it and when it gets dark if it is then one remains standing and if Had Allah willed, they would have heard and The gaze of the eyes makes both of them jealous Without doubt, Allah is capable of everything People, worship your Lord who created you and those before you so that you can be saved from the punishment of the one who harmed you I made the ground my bed and the sky my roof And from the sky I will rain down water for you to eat for which the fruits of Anwa Aksa are produced Do not make anyone a partner of Allah and you know So be it and if you have read what we have written in this book I have revealed it to my servant, if there is any doubt You too make a similar face and Whoever is your helper besides Allah call them too if you are truthful then If you cannot do this and you will never be able to do it Fear the fire whose fuel is men and stones and which were prepared for the infidels And those who have faith and do good deeds Give them the good news that for them There are gardens of blessings beneath which canals flow when they are exposed to any of these If you are given dry fruits to eat then you will say this it is what was given to us earlier and to them We will be given fruits in the form of each other and There they will have pure wives, and they Allah will always remain in heaven because of this I don’t care about mosquitoes or anything more Description of things like flies, spiders etc. Now, those who are believers believe that It is the truth from their Lord, and whoever They are infidels and say that from this example What is the intention of Allah with this misleads many and makes many He guides and also misleads Only those who are disobedient to Allah’s covenant after strengthening it breaks and the Allah has decided to maintain a thing i.e. a relationship I have ordered her to cast her spells and These are the people who cause damage to the land You infidels are going to be taken from Allah why can you deny it in a situation where You were lifeless, so he gave you life He kills you and then he kills you He will make you alive and then you will return him to him you will go, it is he who has given all the things which are on the land I have created the skies for you towards Mutjens He has made his reputation and he is aware of everything And it is worth remembering the time when Your Lord said to the angels that I’m going to make my deputy in the ground He said, do you see such a person in it wants to make a Naib who can spoil it and do some other things Then you keep killing and we will praise you I keep on reciting tasbih and takdees, he said I know the things that you don’t know, He taught Adam the names of all things, then He presented him before the angels and said: If you are true, tell me their names. He said you are as pure as the knowledge you have We know nothing except what has been forgiven us No, of course you are wise and intelligent then Allah ordered Adam, “Adam, you tell them the names of these things so when they When he told them their names, he said to the angels Didn’t I tell you that I He knows all the hidden things of the skies and the earth and what you reveal and what you hide I know everything you do and when we He ordered the angels to go before Adam If you prostrate yourself, they all will fall down in prostration but Satan refused and became arrogant he became a kaafir (disbeliever) and we said: O Adam, you and May your wife live in paradise and wherever she is You can eat and drink without restriction if you want, but this tree Don’t go near him, otherwise you will be among the oppressors Then the devil caught both of them under that tree and in the comfort and pleasure We got them removed from there, then we ordered I told you to go away from paradise You are the enemy of others and the land for you I will fix a place and place for a time Then Adam was given this by his Lord He learnt some Kalma and asked for forgiveness, so he I forgave his mistake, of course he is willing to forgive He is the most merciful; we said that You all get off here when you have the If you receive advice from me, then follow it to do that those who followed my instructions that they will have neither any fear nor any sorrow and those who did not accept him and Those who deny our verses will go to Hell and he will always be there O family of Yaqub, remember my favors which I made a promise to you and I will fulfill that promise Do what you promised me, I will accept that I’ll finish what I promised to you and Be afraid of me and the book that I have given to you Rasool Mohammed Sallallahu Alaihi Wa Wasallam But it is your book which has been revealed, i.e. It says that the Torah is true, believe in it and Do not be the first to deny it and My verses I paid a small amount in return for the bribe That is, do not achieve worldly rewards and Be afraid of it and never associate truth with falsehood Mix it up and don’t deliberately hide the truth And pray the namaz and give zakat, and bowed down with those who bowed down before Allah what is this smart thing that you people do You tell me to do good and for yourself Although you forget the name of Allah Do you even read the book, don’t you understand? Patience and prayer helped in times of grief and pain Do it and surely the prayer is fallen but on those people No, those who are going to do this, who believe he has done that he should pray to his God We are going to meet and go back to him O children of Jacob, they are my favors Remember the things I did to you, and I have given you superiority over the people of the world and be afraid of the day when someone will do something about someone Neither did it work nor did anyone’s recommendation accept it And no revenge of any kind should be taken against anyone It should be accepted and people should not help in any other way and remember those favors of ours When we freed you from the community of Pharaoh Bakshi, those people used to cause you a lot of pain They would have killed your sons and They allowed their daughters to live and in that Very strict from your lord It was a test and when we crossed the ocean for you I tore it apart and then I freed you and Pharaoh’s community was destroyed and you see and when We promised Moses forty nights So you worshipped the calf after them I decided and you were committing atrocities Then We forgave you so that Be thankful for the fact that when We gave Moses the Book And Moses blessed you so that you may be guided And when Moses told his people He said, brothers you have made the calf a god have put their lives at stake to stay So repent before your creator Then kill your own people, your Creator This is better for you then Of course he forgave you your mistake He is the most forgiving and the most merciful, When you said to Moses that until we I will not see Allah in front of me, I will have faith in you If you do not bring it, then lightning will surround you and You were watching after death came We revived you for nine days so that Be grateful and we will provide you with the shade of a cloud I kept it for you and my mind and my salwa I kept on taking off the pure things that we had given you I have given them food and drink but your The elders did not appreciate those blessings Jani and he would not do any harm to us rather we used to cause harm to ourselves and when we He told them to enter that village and Eat and drink as much as you want from wherever you want and watch entering the door in prostration and You say we will forgive your sins and if they give more to those who do good, then Those who were cruel, they took that word whose He was ordered to replace him with another So we started speaking words to those tyrants But punishment was sent down from the sky because were being disobedient and when Moses sent his When they asked us for water for the community, we said that he hit the stone with his stick When he hit it, twelve fountains burst out from it and All the people, having found their respective ghats, I drank the water and I commanded Allah Eat and drink the prescribed sustenance and Do not go about causing mischief in the land and when you He said that Moses could not tolerate us eating only one meal If possible, pray to your God that vegetables and cucumber and wheat and lentils and Onion etc. which grow in the barren land of our create it for me he said that it is excellent Why give up things and replace them with useless things? If these are the things you want then tell someone Go to the city and you will get what you ask for and will eventually be left humiliated, disgraced and needy And without any reason a tong was given to him and he got arrested in a shocking incident because he They denied the verses of Allah and They used to kill the prophets without any reason. Because people were disobedient and things went beyond limits People who were Muslims or Jews or Christian or star worshipper means a person Be a community of religion which believes in Allah and the Day of Judgment If one has faith and does righteous deeds, then such people who will get the reward of their deeds from Allah and on the Day of Judgment they will get it in some way there will be no fear of nor will they be sad and when We have made a promise to you and you will give Kohetur but he stood him up and ordered that the I have given you the book, hold it tightly stay and remember what is written in it so that Be safe from punishment, then you will be safe after that So if you turn away from it then the grace of Allah is upon you and Had it not been for his kindness you would have been in trouble you would have read it and you would have known those people very well Who among you eats fish on a weekday If you had crossed all limits in hunting then We told them to become cruel monkeys and This story was created for the people of that time and Those who were to come after them were to be taught a lesson and abstinence made it a lesson for the people and when Moses told his community that Allah He commands you to slaughter a bull He said, are you laughing at me Musa? said I seek refuge in Allah that I should become naive he said that in his Pray to God that he gives us this Moses said, “Tell me what kind of bull it is. God says that that bull neither Neither the old man nor the calf, but between them That means you are young so do as I command you do as he told you to do Pray to the Almighty to give us this Also tell me what its colour should be, said Moses It is said that God says that its color is dark It should be bright enough to make the viewers happy he said to the god now Then request us to tell you that And of what kind it should be because there are many bulls We know each other very well And if Allah wills, we will know the truth It will happen Moses said that Allah says that the ox is not engaged in work, He neither ploughs the land nor provides water for farming It should be flawless and should not have any kind of blemish He said, now you have told everything correctly With great difficulty he gave a roar to that bull while they seemed about to do so and when you killed a man So they started fighting among themselves, although the thing You were hiding it, Allah will reveal it so we said that the bull was going to Hit the deceased with a piece of it like this Allah gives life to the dead and to you shows the signs of his nature so that You understand, then your heart hardens as if they were stones or even bigger than that If the stones were harder, then the instruments would be like this that fountains burst out of them, and The eagles are such that they burst and in them Water starts to come out from it and the eagle looks like this They fall down out of fear of Allah And Allah is unaware of your deeds no momino do you expect that These people will be convinced of your religion Although some of these people are Kalam Ullah That means listening to the Torah and then understanding it. Later they have been changing it deliberately and this When people meet Momino they say We have accepted faith and when we are in solitude When we meet each other we say whatever Allah has revealed to you that you Because you tell them that on the Day of Judgment By reference to him your Lord I will blame you in front of your eyes, do you understand? No, don’t these people know that whatever what they hide and what they reveal Allah knows everything and some are ignorant of it. that except my desires there is no one except the book of Allah is not aware of it and he is working only on guesswork. So pity on those who take their He writes a book by hand and says that It has come from Allah so that due to Him A small price means gaining worldly bounty Whatever they do, I feel sorry for them because it is meaningless Write things down with your hand and then It is a pity that they do such things and They say that the fire of hell will last for a few days You cannot even touch them, ask them You have taken a vow to Allah that Allah will not do anything against His promise, You say such things about Allah whose to you not a Mutlu who does bad deeds and his If crime surrounds him from all sides then such people are going to hell and they will remain there forever will continue to be jealous and those who believe and do good deeds He will be the owner of Paradise and forever we will keep enjoying it and when we made it Israel was promised that no one other than Allah Do not worship anyone and do not respect your parents and with relatives and orphans and needy Keep doing good and speaking nicely to people keep saying and offering namaaz and giving zakat Except a few people, all of you are from that era you turned your face away and when we made a promise to you We took the oath that we should not kill each other and Do not drive your own people out of their homeland, then you You have agreed and you accept this fact too then you are the one who can even kill his own people and you give it to some of your own people By attacking with crime and oppression, they were forced to return to their homeland and if she is yours If they come to you as captives, then free them by paying revenge You also take it, although you have to throw it out it was haram on you what is it that you You do believe in some of the sayings of the Kitabullah And if you deny the hawk then you If any of them do such act then their punishment will be nothing else what else could be the life of the world I am disgraced and the days of communion are harsh be put into severe punishment and whatever you do You do this; Allah is not unaware of them, these are the people those who have chosen this world in exchange for the hereafter If you have bought your life then the punishment from them is lighter No other kind of help will be provided to them and We gave Moses the Book and Other prophets were sent after him one after the other. And gave open target to Isa ibn Maryam and if Ruhal Qudsai helped him then is that so that when a prophet comes to you like this You brought things which you don’t like If I wanted you would have been rebellious and a The gang is lying to Ambiya and one is lying to the gang They keep killing and they say it’s on our hearts There are no curtains but Allah has made them They have been cursed because of their disbelief, so this They believe in only a few and when Allah From here he got a book which was his It also confirms the heavenly book and it Earlier they always used to ask for fata on the infidels Then the thing which he recognized very well when his When she came closer, he turned away from her The curse of Allah is on the infidels for whatever In return he sold it on his own it is bad, that is, because of the jealousy that Allah is on whomever of the slaves he wishes his It is revealed by the grace of Allah If they disbelieve in the Book that has been revealed He became engrossed in her amazing beauty And for the unbelievers there is a humiliating punishment And when they are told that the book Allah has now revealed it, if you believe in it They say that whichever book is revealed to us first It has already happened, we believe in that only, that is, this Although they do not believe in any other book except that She is absolutely true and she is the source of his heavenly blessings. Tell them that you have a book and confirm it too that if you were a man of faith then you would have Why were the prophets killed beforehand? and Moses had open doors with you Then you bring it to their Kohetur Later, you made the calf your god and you They used to oppress in the name of justice and when we He took a firm oath from the people and Kohetur stood over you and ordered that whoever I have given you the book, hold it tightly and listen to what you are commanded Then your elders started saying that We have heard it but we do not believe it Because of their disbelief the calf entered their hearts I was composed O Prophet tell them that if If you are a believer then your faith is bad for you tells us that if the abode of the hereafter and not for the people i.e. Muslims and A secret for you in the sight of Allah If you are truthful then wish for death And because of the deeds that send their hands forward We have already said that we will never desire her and Allah is well aware of the wrongdoers and they You are more aware of the joys of life than anyone else You will see that it is even better than the mushrik Each one of them wishes that I wish he lived for a thousand years but not for so long Even if he gets age, he will have to face punishment I can’t free myself from the work they do Allah is watching them, tell them that whoever If there is an enemy of Jibraeel, he will die in anger should go because he has read this book revealed to your heart by Allah’s command which confirms the first books And there is guidance and good news for those who believe. Whoever is the devotee of Allah and His angels, and of His prophets and Jibraeel and Mikaeel If there is an enemy of then the Allah of such infidels There is an enemy and we have a solution for you The verses are said to be false and only he who denies them when these people do what bad characters do When someone made a covenant with Allah, then one of them Fareek threw it away like a thing The reality is that they are often dishonest and When they had a prophet from Allah, Jama sallallahu alaihi wa wasallam came and he Their heavenly book also confirms this So among those who were given the book A group kept the book of Allah behind their backs threw it away as if he did not know and those They started chasing after the things which were the promises of Solomon In the Sultanate Shayano Mann did not talk about Mutlur but It was the devils who believed that people could use magic They used to teach and they, i.e. Bani Israel, those things who also went after the two in the city of Babylon It was descended upon the angels Harud and Marut And they both didn’t teach anybody anything. Unless you say that we are just trying the method O people, do not fall into disbelief, Learn the thing that causes separation between husband and wife and except by the order of Allah he cannot do that Nothing can harm anyone with this thing And she used to learn some mantras which would harm her they would only deliver it and would not give any benefit and he I knew that the person who is And the buyer of the mantra etc. will be his end no part in And for which they put their lives at stake I sold it, it was bad, would it have been good They would have known this and if they had believed And if you had avoided cursing, then you would have been saved from the sight of Allah Wouldn’t it have been nice if we got a very good reward They would have known about it, O people of faith. At the time of the Prophet sallallahu alaihi wasallam don’t tell Rayna don’t tell her that and Listen carefully and cause pain to the infidels There is a punishment for those who disbelieve in the people of the book or the mushrik do not like the fact that upon you people towards your Lord May goodness and blessings descend from him and Allah whomsoever he loves with his mercy, especially He takes it and Allah is the possessor of great grace The verse which We abrogate or forget, If you get it done then it will be better than that or similar to that Do you not know that Do you think Allah is capable of everything I do not know whether the kingdom of the skies and the earth It belongs to Allah and nothing else except Allah You have no friends and helpers Muslims, do you want that your from the Prophet sallallahu alaihi wa wasallam ask the kind of questions you asked before were made to Moses and whoever believed If he leaves it and accepts disbelief in its place, then he will surely Many people have strayed from the straight path The book wishes with all its heart that After having accepted faith, you were again made a Kafir (non-believer) Although the right over them has already been declared, You forgive and beg, even May Allah send His second command, surely Allah There is power in everything and keep praying And keep giving zakat and whatever good you do for yourself If you send him, you will find him with Allah There is no doubt that Allah blesses us with all our deeds And the Jews and Christians say that no one except Jews and Christians This is the reason for these people not going to heaven These thoughts are false, O Prophet, tell them that If you are truthful then give your reasons why yes No, the person who bows his head before Allah That is, if one has faith and he is a righteous man, then His reward is with his Lord and Such people will not get any kind of punishment on the Day of Judgment. nor would they be sad and the Jews would say that Christians are not on the path and Christians say not on the Jewish path though he I read the divine book in the same way The same thing is said by those who I don’t know that means The Mushrik are those who disagree on the matter Allah will bless him on the Day of Judgment He will decide and who is more cruel than him the name of Allah in the mosques of Allah refuse to be mentioned and Try to give these people something to feel desolation I have no right to enter these mosques but There is disgrace in the world for those who are afraid And in the end there will be a great punishment and the east and the west Everything belongs to Allah so whichever way you turn Do it there, Allah is the one who is surely Allah Sahib is in power, there is a possibility and these people are aware of this fact. I am sure that Allah does not have children Pure is whatever is in the heavens and on the earth Everything belongs to Him and everyone is obedient to Him He is the creator of the skies and the earth And when someone wants to do some work, he He commands that if it happens then it will happen goes and those who don’t know anything i.e. Mushrik (Mushrik) are those who say that Allah speaks to us Why doesn’t he do it or do we have any signs Why don’t those who came before them come in the same way? He too used to talk like this These people have similar hearts To explain to those who believe in Sahib We have explained the signs, O Prophet We tell you the good news with truth He has sent him as a warner and a scaremonger, and I do not ask you anything about Hell and the Jews will never be happy with you And neither are Christians, nor do they follow their religion Take the initiative and tell them that Allah’s Hidayat means Deen Islam is the guidance and Prophet, if you have the knowledge i.e. the Even after Allah’s arrival, their desires are not fulfilled If you walk then you will be saved from the clutches of Allah There will be no friend or helper We have given the book to the people, it He reads as he is entitled to read These are the people who have faith in him And those who don’t believe in him are the ones who will get the reward O Children of Israel, remember my favor that I did to you and that I gave you He has bestowed great favour on the people of the world and fear that day When a person is of no use to another person And neither revenge should be accepted from him nor he Recommendation of someone may give some benefit and neither may it give any benefit to the people can get any other kind of help and when Abraham’s God told him a few things I tried it and he passed them perfectly He said, I will make you the leader of the people He said that God will make me He said that you should also make a Peshwa from among your children My word and agreement are not for the oppressors and when we opened the Kaaba to the people A place has been fixed for gathering and finding peace and ordered that at the place where Ibrahim used to stand there in prayer and command Ibrahim and Ishmael Sent to those who perform Tawaf and Takaaf and those who bow down and those who prostrate keep my house clean for the people And when Ibrahim prayed: O Lord Make this place a city of peace and its residents Of those who believe in Allah and the Hereafter If you give them dry fruits to eat, then believe Allah said that whoever is a kaafir (infidel) I I will give him the same life for some time But then he has to suffer the punishment of hell I will force you and that is a bad place and when Ibrahim and Ismail, the foundation of Baitullah When we were raising our hands, prayers were recited that May our Lord accept this service from us Of course you are going to hear and know O Lord, keep us obedient to you And from among our children also a group should be accepted as our own Make us obedient to orders and our God Tell me about our ways of worship and about our condition Pay attention with mercy, you are surely the one who pays attention The one who says is merciful, O God One of these prophets among the people Keys that I read out your verses to them and teach the book and the grain and You should purify your hearts without any doubt He is Ghalib, the master of wisdom and of Ibrahim Who can change the condition of the poor, Bajaj? of those who are absolutely ignorant and We have given them I had chosen this in this world and the hereafter In the future too, he will be among the righteous when he His Lord said, my Be obedient, so he requested that I became obedient to Rabbul Alameen and This is what Ibrahim told his sons He made a will and Yaqub also told his son This is what Allah said: O my sons If I have chosen this religion for you then If you have to die then you must die as a Muslim, when Yakub If you are dying, will you be present at that time? when he asked his sons Whom will you pray after me? He said that your God and your father Grandfather of Abraham and Ishmael and Isaac We will worship the God who is the one who has faith And we are obedient to his command, this group of people Since they will be rewarded for their deeds and You will be rewarded for your deeds and the actions you perform you will not be able to investigate them and the Jews And Christians say become either a Jew or a Christian then you will be on the right path oh prophet tell them Not two but we are the religion of Ibrahim Ikhtiyar which were being done for one Allah and Muslims were not among the mushrik Say: We believe in Allah and whatever is in the Book It was revealed to us and to him who is right; And Ishmael and Ibah and Yakub and their progeny But were revealed to them and the books which were revealed to Moses and Jesus was blessed upon them and others who to the prophets from their Lord We found them and believed in all those prophets we make no distinction between any of them and we Then we are obedient to that one God If these people also believed in the same way as If you have faith then you should be guided and If he turns his face away and refuses to listen, then he against you and against them Allah is sufficient for you and He is the All-Listening He knows, say that we have followed Allah’s command I have adopted the color and from Allah Whose colour can be better and we will choose that colour tell them that they are going to pray whether you You argue with us about Allah Although He is our and your Lord and we will be rewarded according to our deeds, and You are responsible for your deeds and we are responsible for that only O Jews and Christians, they are worshippers You are convinced that Abraham and Ishmael and Isaac and Jacob and their children Were they Jews or Christians? O Prophet, tell them that Well do you know more or Allah Who is more cruel than him who sacrifices his life for the sake of Allah? which he has in the book and hide whatever you are doing This group of prophets is not unaware of this Because they will get what they did and you get what you did and what you do you will not be able to enquire about them you foolish people They will say that the tribe on which the Muslims already belong You used to come to me, now why are you turning your face away from him You say that the east and the west are all the people of Allah He belongs to whomever he wants the straight path But he drives you and in this way we have given you the Ummah I have created death in my heart so that you can be a witness against people Become another prophet and finally, sallallahu alaihi Wa Wasallam became a witness against you and on which Kabul You were there first, that’s why we decided on it It was to find out who was the successor of our Prophet Who remains submissive and who turns away and this thing i.e. Tahwil Qibla is known to the people It became clear to them, but those to whom Allah gave guidance I have forgiven them, they do not consider it a sin and Allah It’s not like your honor is lost just like that God bless you, for God is most kind to people O Prophet Sallallahu Alaihi, you are merciful Wali wasallam we are yours towards the sky we are looking at you raising your face, so we are giving you the same Face the side of the one you like If you order me to pay tax then I will tell you my face Turn your face towards the Haram Masjid i.e. the Kaaba And you people should pray wherever you are At this time, turn your face towards this mosque And those who have been given the book are very They know that this new Qibla is from their Lord they have rights from their side and the work that these people do Allah is not unaware of them and if you The People of the Book have all the signs with them Even if I come, this is not your argument and you too should follow their cause You are not the one and among these too many are the ones Kabale has no legs and if you in spite of that that you have the knowledge of Allah The order has come behind their desires If you walk, you will be among the oppressors to whom we have given the book, he is this prophet after all Jama Sallallahu Alaihi Wa Wasallam was asked in this way You recognize me the way you recognize your sons They do, but one difference among them is the truth O Prophet, you are hiding it deliberately Sallallahu alaihi wa wasallam this is the new qibla If you have the right from your Lord then You should never be among those who doubt and There is a time set for every person where When he prays, he turns his face May you gain strength in good deeds wherever you are Allah will surely bring you all together Allah is on everything and wherever you go In prayer, turn your face towards the Masjid Haram Take this without any doubt from your God you have the right and whatever you do Allah is not unaware of it and wherever you are Go out and pray facing the Haram Masjid Read and be a Muslim wherever you are This is the instruction to head towards this mosque This has been done so that people consider you as some kind of could not accuse, except those who are cruel among them If they accuse you, let them do so, so don’t be afraid of them And keep fearing me and this is also the purpose that I may bestow upon you all my blessings and this also that you walk on the path the way min We have you in all the words and blessings We have sent a messenger from among them who will tell you about our I recite the verses and purify you. They would make and teach the book i.e. Quran and Dana and tell you things that you never knew before You didn’t know me so remember me I will miss you and my Keep being grateful and don’t destroy me Believers, seek help from patience and prayer Surely, Allah is with those who are patient and those who are killed in the way of Allah In relation to this it is said that he is dead not dead but alive but to you We are not afraid and we are free from fear and hunger and wealth and Your loss of lives and fruits We will try and give patience to those who are patient Give the good news that when someone attacks those people When trouble strikes we say that we To Allah belongs all that is, and to Him shall we return These are the people who are going to leave It is God’s blessing and a special mercy and this is the right path, of course Safa and Marwa are among the signs of Allah So whoever goes to Kaaba for Hajj or Umrah There is no sin on him if both of them wandering around in the middle, but it is a noble deed And whoever does a good deed then Allah Those who obey our orders and The instructions which We have sent down to someone We hide our needs cleverly despite the fact that we my book to make people understand them I have openly stated about such people Curse Allah and all the cursers Yes, there are those who repent and their condition we correct it and we will forgive the Allah If they explain it clearly, then I will I forgive you for your mistake and I am very forgiving I am the most kind and merciful to those who disbelieve and only the infidels died, on such a person’s curse and Allah’s curse The curse of angels and humans alike They will always be trapped in this curse Neither will the punishment be lightened nor They will get some respite and people Your god is only one god, that great one There is no one to worship except the Kind and Merciful Certainly not worthy of being created by the heavens and the earth in doing and reuniting with each other night and day boats and ships coming and going behind I am in the sea for the benefit of the people and I am the one whom Allah has given from the sky it rains and makes the ground turn into a dead body After going, being alive means becoming dry Later it makes everything green and on the land kinds of animals help in spreading and the winds help in in running and in the clouds which are in the sky and the earth for the wise are surrounded by are signs of Allah’s power and the eagle People are such that they consider non-Allah as their They make partners and Allah loves them but those who are believers Allah has the most friends And O wrongdoers, if only at the time of punishment Now we will see that all kinds of power It is only for Allah and that Allah is strict The leader of disbelief is going to be punished that day will express his discomfort with his feet and Both will see the divine punishment and they will seeing this situation relations will get spoiled Those who follow will say with longing, oh if only May we be fortunate enough to go to sorrow again so that Just like they are getting fed up with us, we are getting fed up with it too You too should be fed up with them, this is how Allah rewards their deeds He will show his desire and come out of hell People will not be able to buy things which are halal in the land It is good that you eat it and do not follow the footsteps of Satan come on he is your open enemy You are forced to do only evil and shameless acts. and also says that such a reference to Allah Say things you don’t know about And when these people are told that Allah has revealed his book If you try to plead with them, they say no, we will We will advocate the same thing that we have believed in our I found my forefathers, even though their forefathers You neither understand anything nor are you on the right path Even then he will be followed by those who People are infidels, their example is like that man that gives voice to something that calls out And these deaf people can’t hear anything except sound are you dumb and blind, do you understand anything O people of faith, you cannot possess pure things We have given them to you, eat them and if If you are a servant of Allah then enjoy His blessings Be thankful, he just died for you and blood and swine’s meat and Anything on which the name of someone other than Allah is written It has become haram to be called yes, those who are compelled It may happen provided there is no disobedience to Allah do it and do not let the limit go beyond the need But there is no sin, surely Allah will forgive Allah is merciful to those who those verses and guidance from the book of He has revealed them in exchange for A small price means gaining worldly bounty They just fill their bellies with fire Allah will not bless such people on the Day of Judgment he will speak and will not purify them from their sins and there is a painful punishment for them These are the people who abandoned the guidance Leaving behind misguidedness and forgiveness, he bought the punishment How are you going to endure the pain of hell This is because Allah has given the Book of Truth and those who have read this book I disagreed with him out of stubbornness It is not only goodness that you have gone far away from the east And considering the Maghrib as the Qibla, turn your face towards it But the goodness is that people believe in Allah and Every day on the end and on the angels and on Allah Believe in the Book and the Prophets and In spite of being dear to relatives and orphans and the needy and the travelers and the beggars give it to him and spend it in freeing the neck And pray and pay zakat and take a pledge So complete it and with hardship and pain And these are the people who stood firm during the war those who are true in their faith and this is the You are Allah-fearing believers About Maktu, Kasas i.e. blood revenge The command for bloodshed is given in such a way that A free man should be killed in place of a free man and a slave should be killed in place of a slave slave for slave and woman for woman and if The murderer should be given some money from his deceased brother’s purse If the heir of the deceased is forgiven, Advocacy of the contract in the preferred manner i.e. Demand to shed blood and make the murderer happy I should pay it with your Ease for you from God And it is a kindness now that there is excess after this For him who does this is a punishment of suffering and for the people of wisdom Your life is in the hands of the order You should avoid murder, it would be your duty that when the time of death comes for any one of you If he comes and leaves some goods behind, If yes then it is for parents and relatives According to the custom, make a will to Allah This is a right on those who are afraid, then the person who If after hearing the will, he changes it The blame for changing it lies with those people Whoever changes it, Allah is all-knowing and listening Now if someone has to do something with the will favouring an heir or seeking his rights If he suspects that he will change the will If he makes peace between the heirs, then he will get some There is no sin, surely Allah is forgiving The Merciful is making fasting compulsory for you, believers Just as people before you have been burdened with their duties These were done so that you may become pious and fasting The days of the world are numbered only for a few days, so the person who If any of you is sick or travelling Complete the fasts on other days And those who have the strength to keep fast But he did not keep anyone in need in exchange for fasting Feed them and whoever wants to If one does more good, then it will be more in his favor It is good and if you understand then you should keep fast The month of fasting is better for you Ramadan is the month in which the Quran is the most important The first one was revealed who is the guide of the people and in which there are clear signs of guidance, and who can distinguish between true and false Whoever of you is present this month One should keep fasts for the whole month and If you are ill or travelling then do it on other days I will complete their count by fasting Allah wants ease for you and I do not want strictness and this is an order of ease Therefore it has been given to you to count the fasts Complete it and in return for this favor that Allah has instructed you to Remember the elders and thank them And O Prophet, when my servants ask you about me If they inquire, they will know that I am there with you when someone When the caller calls me, I answer him If I accept your prayers then they should Obey my orders and have faith in me so that Find the righteous path in the nights of fasting It is lawful for you to go to your women it’s been done it’s your dress and You are their clothing, God knows that You are betraying your rights by going to them. So he did you a favour and If I request you for your blessings, now You have the authority to converse with them and what allah has written for you That is, children, call for it from Allah and eat it. and drink even the morning’s white striped night that it began to look different from the black stripe Complete your fast till nightfall and when you If Taqaf is sitting in mosques then have a discussion with them don’t do this, these are the limits of Allah, they don’t have it This is how Allah reveals His verses to people To explain, he explains openly so that they become cautious and united with each other Don’t consume another’s property unnecessarily and don’t destroy it Take the bribe to the officer so that the people consume some part of the goods illegally Go and you know it too, O Prophets I am asking you about the new moon why does it increase or decrease tell me that it is The duration of people’s work and the time of Hajj There is a means to know and the goodness is in this not in my house in a state of ihraam come from their backside rather than neku’s He is one who is pious and keeps his house safe Enter through the doors and fear Allah So that you become successful and those who fight you You too fight them in the way of Allah But do not do excesses because Allah will punish you for excesses I do not keep friends with those who do this and they Kill wherever you find them and from where they took I have removed you from there, that is from Mecca You should also expel them and make them mislead from the religion The trouble of committing murder is greater than bloodshed and until he tells you the Masjid-e-Haram i.e. Don’t fight near the Kaaba, you should also fight there Don’t fight with them but if they fight with you then You kill them, this is the punishment for infidels then if they retreat then Allah The Forgiving, the Merciful and Keep fighting until the conflict vanishes Go and in this country only Allah’s religion is dominant Let it happen if he stops causing mischief There is no injustice against anyone except the oppressors we should worship the month of respect, the month of respect and the things of respect are opposite to each other If someone does injustice to you, then Whatever atrocities he commits on you, you will inflict the same Do that and fear Allah and know Remember that Allah is with those who fear Him and Spend your wealth in the way of Allah and Do not throw yourself into destruction and do good deeds Allah blesses those who do good And perform Hajj and Umrah for the pleasure of Allah Complete it and if you get stopped on the way So make whatever sacrifice is possible and when until the sacrifice reaches its destination Head is not shaved and if someone is sick amongst you Or if he has some kind of headache If he shaves his head, he should fast in lieu of that Either give charity or sacrifice, then when you are in trouble If you go away and become content, then whatever is within you I want to take advantage of Umrah till the time of Hajj He should make whatever sacrifice is possible and The one who does not get the sacrifice should observe three fasts I will go for Hajj and return with him, this is the whole 10 This ruling is for the person who You people do not live in Mecca and Allah Be afraid of Allah and know that Allah is strict The one who is in the month of Hajj is a punisher If you know, whoever performs Hajj in these months If she decides, then women should not do this during the days of Hajj do not disagree with anyone nor do any bad deed and Do not fight with anyone and whatever good work you do And Allah will know and the way So take your travel expenses with you because The best way is to abstain from sins and the people Keep being afraid of me, you will not know anything about it It is not a sin to go to the market during Hajj Seek livelihood from your Lord through trade and When you start returning from Arafat then Mashar Haram That is, mention Muzdalifah and like that Recite the way he taught you and And what is worse than this, you people just don’t use these methods I was aware of the place from where other people were returning You too are back from this and may Allah forgive you Ask for mercy, surely Allah is forgiving Then when all the rituals of Hajj are completed If you have completed it then you will remember Allah in Mina Remember the way you remembered your forefathers used to do it but even more than that and many people There are those who pray to Allah that O God, we have to pay the salary in this world Give it to such people and in the end they will have something there is no share and the eagles are such that they pray Oh God, please give us blessings in this world too Please grant me and grant me blessings in the end as well These are the people who should be kept safe from the punishment of hell for whom a share of their deeds i.e. Azar The righteous are ready and Allah will soon take the account and in the days of Qayam Mina which The days are numbered, remember Allah if If someone hurries and leaves in two days There is no crime in that either and whatever the matter may be There is no fault of his even after considering these things It is for the person who fears Allah and You must fear Allah and know that You will all be submitted to him and no one else This is a person whose conversation is famous in the world You find life charming and He is apologetic on the basis of his conscience, that is, on the fact that He makes Allah a witness in his heart Though he is extremely pugnacious and when p When Karr goes away he runs around on the ground so that Fina can study English and do farming and ruin the race of humans and beasts and may Allah destroy English does not like it and when he is told that If you fear Allah then pride will turn into a sin If he traps him then hell is enough for him and That is a very bad place and no one is like that is to gain the pleasure of Allah He sells his life and Allah blesses his servants Momino is very kind in Islam Enter fully and don’t follow the devil Come on, he is your open enemy then. If after you reach Akaam Roshan If you falter, know that Allah is liberating Are these people wise about this? It is expected that Allah’s punishment will descend upon them in the form of a cloud. Come down upon the Lords and the angels also descend come and get the job done and all the work Why should I turn towards Allah only? O you who are prophets? Ask Israel how freely we gave them He gave signs and whoever is blessed by Allah if Allah changes it after it comes to Him, then A severe punisher and those who disbelieve Made life in the world joyful for them She has gone and she greets the believers But those who fear Him will not be spared on the Day of Judgment will be above them and whomever Allah wishes First of all, He gives unlimited sustenance to all people There was only one religion but they had differences among themselves When they began to do so, Allah turned towards them and revealed books to them with truth so that in the matters in which people differed judge them in them and Disagreement was also caused by those people who The book was given to him even though he had it open The events had already happened and this dispute If they did it only out of mutual stubbornness then They used to differ about the immortal truth, Allah Show the believers their path by your kindness and whoever Allah wishes to have a straight path shows if you care about it that just like that you will enter paradise and Now if you people have any problems then He did not face any strictness at all And more troubles arrived, and he was shaken in his companions Even the Prophet and the believers were shaken The people who were with him all cried out, when Allah’s help will come Look, she wants Allah’s help to come closer to her O Prophet, people ask you about Allah’s Tell me what kind of goods should I spend on the way that you can spend whatever you want but whatever goods you spend You want to do that at a high level, Kaka means close to parents to the relatives and the orphan and the needy And give to the travellers and whatever good you You will do it, Allah knows it, you Muslims But fighting in the way of Allah is obligatory has been given to you and it will displease you But it is not surprising that one thing may seem bad to you and May it be good for you, and it is not surprising that One thing appeals to you and that’s for you Be a merry fellow and know these things better than Allah He knows and you do not know, O people of the Prophet to fight with you in the months of respect tell me that you are inquiring about Fighting among them is a major sin and blocking from the path and disbelieving in it, and By going to the Masjid-e-Haram i.e. Kaaba to close it and drive out the people of the mosque from it Throw out those who disbelieve in Allah Nearby is a greater crime than this and final English is better than blood and these people I will always fight with you even if If you keep Makhdu then I will turn you away from your religion And whoever of you turns away from his religion, If he becomes a Kafir and dies as a Kafir then this is how The deeds of people in this world and the hereafter They will be destroyed and these people will go to hell Those who will always remain in it are going to leave He believed and left his homeland for the sake of Allah and May Allah bless those who keep fighting the infidels and may Allah forgive O Prophet, he is going to be merciful to you They ask for the ruling on alcohol and gambling Two, that their sins are greater and that of the people There are some benefits for them but their crimes There are more benefits than just the benefits, and that too from you They ask which one is right in the path of Allah Spend the goods and tell them that it is necessary May Allah be more kind to you like this He openly explains his deeds So that you think about this world and the hereafter Pay attention to the things and you will know about orphans I also request you to tell me that their The reform of the condition is a very good work and if You live together with them, which means you share the expenses if you want to keep him then he is your brother and Allah knows very well that the one who does evil who is it and who is going to reform and if If Allah wanted, He would have put you in trouble Surely, Allah is All-Mighty and Wise Believers should not do anything against polytheistic women until they have faith Don’t marry me because she is a mushrik woman How do you like her, a Momin girl? it is better and so is the mushrik man until The believers did not believe in their women How can you like a judgemental man? A believer’s slave is better than the polytheists They call us towards hell and Allah shows His Kindly calling towards paradise and forgiveness and he discloses his orders to the people openly narrates it in order to gain advice and I ask you about menstruation Say it is impurity, so in the verse, in menstruation Keep away from women and until she is pure Don’t confront them, but when they are pure If it happens, then the way Allah has appointed you He has said, go to him, there is no doubt that Allah blesses those who repent and the pure Keeps the residents your friend If women are your farm then in your farm Go whichever way you want and do good deeds for yourself send and fear Allah and know that One day you will have to face him And O Prophet, Bisharatganj to the believers And stop trying to make peace among people And Allah hears and knows everything. Allah, I am happy with you on your oath but whatever oath you made I will not do it You will eat from them and Allah will bless them There is a God who will forgive those who Make them swear to never go to women You should wait for a month if this happens I swear, if I turn to Allah then is kind and if he intends to divorce Even if you do, Allah hears, knows and Divorced women can hold back their periods for three days on their own And if he believes in Allah and the Day of Judgment if they keep it then it is not permissible for them because Allah has whatever has been produced in their hands hide and eat them if you want forgiveness So during this period he gives them his strength at the end women are more entitled to take it The rights on men are same as those on customs According to this, men have rights over women men have a status superior to women and Allah is the greatest, the wisest is divorce It is only twice, i.e. when you divorce twice if given, then women will either have to face many problems Is it better to let Shahista stay in the marriage or not to leave it with and it is not fair that the Meher, take some of what you have given them Yes, if the husband is afraid that he If we cannot maintain the limits of Allah If the woman tries to get release from the hands of Khan If you give something in return then both of you get something It is not a sin, it is ordained by Allah This is the limit, do not go out of these and those who They will go beyond the limits of Allah Then you would be guilty if the husband rapes two girls If he gives the third divorce to the woman after until the woman marries another man If you don’t do it, it won’t be halal for the first husband Yes, if the other husband also divorces and the woman And eat first and then turn towards each other if they take it then there is no sin on them provided that Both should believe that the limits of Allah and these are the limits of Allah He explains these things to those people those who have knowledge and when you give it to women You have already divorced her and her iddat is over If they go, they will either marry a man with good looks let me stay or bid me farewell in a polite manner Give them two children and with this intention they should not stay in the marriage should give them trouble and put pressure on them Commit excesses and the one who does this will be your own will cause harm and ridicule the deeds of Allah And make various games and whatever Allah has given you blessings have been bestowed upon you and the book and The sayings of Dana are Nazil from which he He advises you to remember them and Fear Allah and know that Allah is aware of everything and when you talk to women Divorce her and complete her Iddat So when they come to know about their cities, Agree to marry legally Do not stop this order, advise that person which goes within you towards Allah and the end I am sure it is great for you And she is very pure and Allah knows And you don’t know and mothers give their children This order is given to feed milk to that person for full 2 ​​years which is for breastfeeding for the entire period Whether and food for lactating mothers and According to tradition, clothes are the responsibility of the father A person will have more strength than he deserves If you are not given trouble then remember that neither The mother was harmed because of her child nor should a father go because of his children be harmed and in the same way nano nafc is the responsibility of the heir of the child and if both That is, parents should consult each other and If you want to wean your child, then you must do something about it It is not a crime if you feed your children milk If you want to drink then there is no crime on you Provided that you give milk to the lactating mother According to custom, what you give them their right give it and fear Allah and Know that whatever you do is the work of Allah is watching him and those of you who die if they go and the women leave then those women will be four month and 10 days I restrained myself and When you have completed this Iddat and in your favor If you do your favourite thing i.e. get married then it is up to you There is no sin and Allah blesses you with all your blessings I am aware of the works, if you give me a hint I should send a message of marriage to the women or Keep the desire of marriage in your heart If you keep your word to Allah there is no sin on you I know that you have mentioned marriage to her you will do it but in the iddat of this Say something other than what is customary Do not enter into any secret agreement with them and Until the Iddat of marriage is over Do not make a firm resolve and know that whatever There is something in your heart that Allah knows everything If you know, then be afraid of him and know that Allah is Forgiving and Merciful, If you allow women to go to them or to support them If you divorce before fixing Mehr then There is no fault of yours, yes it is their custom According to this, definitely spend some money i.e. Makhdu wala Give it according to your needs and take it in a tight spot This is a kind of punishment for noble people according to their status. and if you bring women to them Give me divorce before leaving but Mehr If you have decided then you will have to pay half the dowry Yes, if women or men give the dowry Those who have Ad Nikah in their hands have given up their rights and if he gives the full dowry, then he will have the right and if you men give up your rights two then this is a matter of abstinence and abuse and between each other There is no doubt that one should not forget to do good that Allah is watching all your deeds All Muslims have prayers, especially the middle prayer That means Asr namaz is offered with full respect Keep doing it and stand respectfully before Allah stay put if you’re in a state of fear So whether you are a pawn or a horseman, whatever be the condition, offer namaz Read it then when you are at peace, in the way Allah has taught you which you Earlier we did not know how to remember Allah and Those who die among you and leave behind women He should go and make a will in favour of his women. go and give them money for one year and Should not be thrown out of the house Yes, if she leaves

    the house on her own Go and do your favorite work. If you marry then there is no sin on you and Allah is Mighty, Wise and Almighty According to the custom women also have to do non-nafak One should give protection to the sinners, this is also a right This is how Allah does His work for you He explains it so that you may understand it well I did not see those who were in the count There were thousands of them and they had fled to their homes in fear of death. when they had fled from there Allah ordered them Told them to die and then brought them back to life There is no doubt that Allah is kind to the people but often people are not thankful And Muslims, do jihad in the way of Allah And know that Allah hears everything. Who knows that there is some debt to Allah Make him laugh so that he can give her many times more in return He will give more and Allah will trouble the livelihood He does it and He makes it happy and you are the one Will you return to Bani Israel? that I have not seen a single person who, after Moses, He said to his Prophet that you are a prophet for us Appoint a king so that we can worship Allah perform jihad in the path The Prophet said that if If you are ordered to do Jihad, then it No, instead of fighting you should do that, he says I wonder why we should not follow the path of Allah We will fight while we are rejected from our country and are childless were separated from the children, then when they When the order for Jihad was given, a few Ashas All except Him have turned away and Allah has punished the wrongdoers is aware and the Prophet also told him that Allah has made Lut king over you. He said that he has the right to rule over us. Why can the right to something be greater than that of a person? We are the worthy ones of the kingship and he has So there is not much wealth either, the Prophet said that Allah has given him superiority over you, and He has chosen for kingship He has been blessed with a lot of knowledge and a lot of satisfaction He has also bestowed great blessings and Allah He has the authority to grant kingship to whomever he wants He is a great Kusha Ishwar, a great man and a prophet told him that his, i.e. the kingship of the palate This is a sign that you have that box He will come who will be carried by angels Comfort from your Lord There will be something to spare and some other things too which Moses and Aaron had left behind if If you have faith then this is a It is a big sign When Lot set out with his army, he He said to them that Allah will make a canal for you The person who is going to try it out I imagined he would drink water will know that it is not mine and whoever does not drink it it will be understood that it is mine yes if someone with his hand If you take a handful of water then it’s good when those people When we reached the canal, except for a few people Everyone drank the water then when Talu and Momin When the people who were with him crossed the canal They started saying that today there is Jalud and his There is no strength to fight Lashkar People believed that they would have to face Allah I have to be present, he started saying that this is my status A small group did a great disobedience to the command of Allah We have achieved victory over the Jamaat and Allah has been proven steps are with the residents and when those people When we come face to face with Jalud and his army I prayed to Allah that O Lord, have patience with us open the mouths of the ark and prove us in the fight Step forward and conquer the army of infidels By the order of Allah, Tal’s army killed them defeated them and Dawood killed Jalud and Allah gave them kingdom and grain gave it to me and taught me whatever I wanted and if Allah makes people rise above one another and If he does not stop attacking then he will request It would have been destroyed but Allah is kind to the people of the world These are the verses of Allah, the most merciful which we read to you with truth and O Muhammad sallallahu alaihi waali Wasallam you are without doubt one of the prophets This prophet whom we keep sending from time to time Of these We have given the hawk superiority over the hawk There are eagles with whom Allah has spoken and the status of the eagle is high in the second generation And We made it clear to Isa son of Maryam Gave the signs and helped Ruhal Qudas And if Allah had willed, those before them after a clear sign has come to them, They would not fight but if they differed Some of them believed and some became disbelievers and if Allah had willed, these people we do not fight wars among ourselves but because of Allah whatever he wants, O believers We have given you some of it for that day Before coming, spend first in which there is no There should be a deal of deeds and not friendship and recommendation It is possible, and those who disbelieve are wrongdoers Allah is the most merciful God, that there is no one except Him Not worthy of worship, alive to hold everyone he neither gets any sleep nor any pain All that is in the skies and on the earth is the same Who is it that without his permission can recommend someone who can help some people coming face to face with whatever is behind them He already knows everything and people are to gain knowledge of something can’t do it yes the way he wants It makes us realise the value of his kingship and Knowledge is supreme over the heavens and the earth and it There is nothing difficult in protecting him, he is great Islam has high status and is the religion of respect There is no compulsion in this, instructions are clear But it has been separated from the obvious and the misleading So the person who is free from idols Takadina held such a strong rope in her hand which will never break and Allah will give everything Those who have faith, hear something and know everything Allah is their friend that darkness and which takes it out from the They are infidels, their friends are devils, that they Takes you out of the light and into the darkness these people are the people of hell that you will always remain in it, well you have told that person who did not see because of the pride that Allah had given him the kingdom of Ibrahim he began to argue with him about his Lord When Ibrahim said, “O my Lord,” he He who gives life and gives death He said that even I can give life and death Ibraahib said that Allah makes the sun You take it out from the east, from the west Throw it out, the infidel was stunned after hearing this remained and Allah did not guide the unjust would I have given it to you or not to that person in the same way I saw a colony whose people on their rooftops I was lying down, when I passed by he said that Allah blesses its inhabitants after death why would he keep you alive then Allah has given him The soul was captured and he was kept dead for 100 years then he raised him to life and asked you how long have you been dead he replied granted that in one day or even less Allah He said no but you will be dead for 100 years and Look at your food and drink, in due course Mutluluk When I came in his presence I said, I believe that Allah is responsible for everything he is Qadir and when Ibrahim asked Allah I prayed, O God, show me that you Why will Allah bring the dead back to life? said, did you not believe this did they said why not but I I want to see it because my heart One should attain complete peace of mind and he said that four take the birds then shake them with you and break them into pieces and then tear them apart Place the piece on each mountain and then If you call them, they will come running to you And know that Allah is mighty, Sahib It is wisdom that those who donate their wealth in the way of Allah The example of their goods that It is like a grain from which seven ears of corn grow and each There are 100 grains in one hair and Allah wants Azar and does more and Allah is the most grateful and all-knowing those who invest their wealth in the way of Allah Let’s surf and then there’s no point in spending money after that I am neither indebted to anyone nor to anyone else Their God gives them trouble as their reward and on the Day of Judgment they will not There will be no fear, nor will he be sad After giving alms, the receiver was given permission If you go, say something soft to him and request him It is better to do so and Allah is free from all desires It is time for believers to be grateful for their charity And don’t be ruined like that man by giving pain Give the goods to people for show and spends on Allah and the end of the day If he does not have faith then the example of his wealth is that It is like a heap of soil on which a little mud has fallen and rain down upon it with great force and clean it This is how these Rickards did their deeds will not be able to gain any reward for Allah does not guide such a destroyer And those who seek the pleasure of Allah and spend their wealth with sincere intention Their example is a garden which is high there is a need to speak at a place when there is a strong pressure on it Then bring double the fruit even if I don’t fall So whatever is fine is fine and Allah is with you Is anyone of you watching these works? wants his dates and grapes There should be a garden in which canals are flowing and in it Every type of dry fruits should be available for him and Old age overtook him and his little ones If there are children also then the snake will spread fire in that garden If the heron goes away then it may burn like this Allah I would explain to you My verses in clear detail. so that you think and understand, believers who You earn pure and fine goods and whatever We’ll dig things out of the ground for you Among them there are those who spend in the way of Allah and give evil and impure things don’t do that if those things are given to you So the reason is that you close your eyes while taking it never take them and know that Allah Niyaz is the devil who has many qualities for you instills fear of harassment and indulges in obscene acts and Allah tells you to do His promises forgiveness and mercy, and Allah He is the Kushaib, he knows everything He bestows food on whomsoever he wishes and Dana the barber met him, he was undoubtedly blessed And only those people accept advice who You are wise and you are the one who spend this kind of money or believe in some evil eye, Allah knows him and there is no helper of the oppressors It won’t happen if you give alms openly That too is great and if you give it hidden and also give it If you give it to the needy, it is better for you and this is the way to recompense your sins and will make Allah remove all your There is news of deeds, O Prophet (peace be upon him) Wali wasallam you are the one to guide these people you are not responsible but only Allah He wants to guide you and you believers Whatever goods you spend, it will only be beneficial And whatever you spend, it will be for the pleasure of Allah and the goods you spend you will be given in full and no harm will be done to you, and yes whatever you spend will be for those needy people for those who wait in the way of Allah And the country doesn’t have the strength to go anywhere they keep it and keep it away from asking even Because of not asking, a new person called him The taboo cares and what do you do to them Recognize clearly that you are weak and ashamed Not by breaking your face or hugging the people You can ask for it and you can spend some money on it There is no doubt that Allah knows those who your wealth night and day and hidden and visible keep on spending in the way of Allah Their reward is with their Lord and They have no fear of the Day of Judgment There will be no sorrow for those who take interest spirits will rise from the graves as if Jin made someone crazy by hugging him yes this is because they say sell the deal also it is the same with respect to Nephi as Taking interest although Allah has made the transaction lawful and has made interest haraam, then the person whose The advice of Allah reached him and he If you refrain from taking, then what has already happened His and his case on the Doomsday is with Allah handed over and if anyone tries to take it again then give such people We are destined to burn in hell forever Allah makes interest impossible, that is, impotent, and increases the blessings of charity and Allah He does not keep as a friend any deadly criminal People believed and performed good deeds and prayed Keep reading and give them Zakat for their work will get its reward with Allah and on the Doomsday On that day they will have neither fear nor grief you will be fools, fear Allah and if If you have faith then whatever interest is left Leave him and if you don’t do that then you A war from Allah and His prophet Listen and if you repent and give up interest If you give then you have the right to take your original amount In which neither others’ loss nor yours Loss and if the borrower has tight diarrhea So give him some time till he gets Kusha Ish And if you pardon me the debt, it will be yours it is much better for you provided you understand and Fear the day when you are in the presence of Allah You will return and every person will be responsible for his deeds One will get full revenge and others will get some There will be no loss, believers, when you unite with each other start taking loan for some fixed period So write it down and you are the one who will write it I do not harm anyone, but do justice The writer should write as Allah has given him I have taught you not to refuse to write and Write the document and the person who takes the loan get the text of the document written down and Allah that his master is afraid and he is in debt Do not get anything less written down and if you take a loan whether the person is less intelligent or has difficulty in getting the content written if he does not care about it then whoever is his guardian get the article written with justice and from his own Two men were made witnesses of such a case Do it and if two men are not there then one more man Two women you like as witnesses are enough that if one of them forgets, the other will remind him and when the witness testifies If you are summoned for this, do not refuse, and Whether the loan is small or big, its documentation is important do not be lazy in writing this This is a very fair thing in the eyes of Allah And this is a very good way to attain martyrdom. Does this give you any kind of doubt or suspicion? No need to pay, yes if the deal is successful whatever you give and take amongst yourselves, if such If you do not write the documents of the case then nothing will be done on you It is not a crime when you buy and sell For example, even if it is about property, he was made a witness and the scribe should file the documents and the witnesses should file the case do not cause any harm to others if If you do this then it is a crime for you And fear Allah and see that He what useful things it teaches you and Allah is aware of everything and if you travel But it happens and I can’t find someone to write the document So take a loan by keeping something in your possession And if any one of you considers the other to be an ameen That is, if a loan is given without any mortgage then it is called a trustee that the owner of the trust should pay the trust and fear Allah, his Lord, and See, don’t hide martyrdom, whoever hides it He will be a sinner of heart and Allah He is aware of all your deeds, all that is in the skies and on the earth You should tell your heart’s secrets only to Allah If you reveal it then Allah will tell you more if you hide it He will take revenge from you and then he will take it from whomsoever He can forgive whomever He wants and punish whomever He wants Allah is powerful over everything Rasulallah sallallahu alayhi wa wasallam on this book which was revealed to them from their Lord She has faith and the believers too are all worshippers of Allah and on His angels and on His books believe in Him and His prophets, and They say that we are not in any of His prophets They do not make any difference and they pray to Allah We say that we have heard your command and accepted it Oh God, we ask for your forgiveness And to you we will return, Allah beating a person beyond his strength does not make me responsible, then he does good work he will get benefit from them, if he does bad then he will O God, if any harm comes to them If I have made a mistake or error then don’t blame me O God, please don’t put such a burden on us As you inflicted on those before us, We have the strength to bear as much burden as God no don’t put that much burden on me and O Lord, forgive us from our sins and Please forgive us and have mercy on us He is our helper so we can prevail over the disbelievers Start by taking the name of Allah who is great The Most Merciful is Alif Lam Meem There is no one except Allah who is the most merciful God Not worthy of worship, alive to hold everyone O Prophet, He has revealed the true book to you that confirms the first heavenly books and it is He who revealed the Torah and the Gospel He had revealed these two books earlier for the guidance of the people and then the Quran which It separates right and wrong those who revealed the verses of Allah those who deny it will have a severe punishment, and Allah is Mighty and He is Avenger Allah is so omniscient that nothing can be predicted from Him It is not hidden, neither in the ground nor in the sky He is the one who desires what is in the mother’s womb That Ghalib creates your faces No one is worthy of worship except the wise No, O Prophet, it is He who has revealed this to you The book revealed, most of whose verses are captivating And that is the original book and there are some other books If there are Shabe then there is anger in the hearts of those people He follows the urine of the night so that Create havoc and find out the real Murad Although the real intention is none other than Allah I do not know and those who look deeply into knowledge They say that we have faith in them All these verses have been brought by our Lord And only the wise accept advice O Lord, when You have guided us then After that don’t create any anguish in our hearts Please bless us with your blessings You are going to do a great job O Lord, on that day when nothing comes There is no doubt that everyone will be gathered in his presence He will do it, surely Allah does not make a promise against you Those who disbelieved, on that day their wealth would be destroyed only he can save them from the punishment of Allah and neither their children will be of any use and these people Hope will be the fuel for hell, then their condition will also be like this like the people of the Niyya and those before them those who considered Our verses Allah punished them for their sins I was caught and Allah gave me a severe punishment O Prophet, tell the disbelievers that you are almost lost in this world too You will go and gather towards Hell in the end you will be done and that is a bad place for you between the two groups who clashed with each other on the day of the battle of Badr Nature clashed with God’s great sign There was a group of Muslims, they were followers of Allah I was fighting on the way and the other knot was with the infidels he had told them through his eyes, He was doing double mushahid and Allah was showing his Whoever wants to get help from Nusrat, Ahle Basarakodu the objects of their desires, i.e. women and sons and large piles of gold and silver and marked horses and cattle and farming She seems very beautiful but all this The world itself is like life and There is a very good abode with Allah Prophet tell them that how can I tell you such a thing Let me tell you something that is better than these things. Listen. For those who fear Allah, There are gardens here beneath which canals flow. He will always be there and pure Bayaa is the most important and most pleasing of Allah And Allah is watching all His servants who we pray to Allah that O Lord We have accepted faith, so our sins are forgiven Please bless us and protect us from the punishment of hell. They are the people who are patient in difficult times and speak the truth and remain engaged in prayer, and spend money in goodness and keep your status in the city Allah asks for forgiveness for our sins testifies that no one other than him There is no God in such a condition that he can defend justice There is a ruler and angels and those with knowledge We bear witness that the one with wisdom and mighty There is no one worthy of worship except the three Gods is only Islam and the People of the Book Whoever disagrees with this religion will gain knowledge after that it was done out of mutual insistence and whatever If a person does not believe in the verses of Allah Allah is going to take your revenge soon, O Prophet So if these people start quarreling with you, tell them that I and my feet belong to Allah have become obedient and the People of the Book and the illiterate Ask the people whether you too are followers of Allah If you become obedient and accept Islam then If these people accept Islam, they will surely be guided And if you don’t listen to me then it’s yours The only work is to convey the message of Allah And Allah is watching His servants who People do not believe in the verses of Allah and They have been killing Ambiya without any reason and those who He also orders them to do justice They kill those who hurt them with a punishment Give me the good news; these are the people whose Deeds are ruined in this world and the hereafter And no one will help them, even you I have not seen those people who have no idea what the book means portion was given from the Torah and he is in this book are called towards Ullah i.e. Quran so that it can resolve their conflicts among them then a group of them turns away and He turns his face away because he is I am convinced that the fire of hell will last for a few days and whatever this religion is he has been tying the knot about If they have been deceived then what about at that time? The situation will be when we collect them i.e. whose arrival is beyond doubt every day and every Nafs will get full reward for its deeds And they will not be oppressed; say: O O Allah, the Lord of the kingdom, you can do whatever you want He can grant the kingship and snatch it from anyone he wants take it and give respect to whomever you want and whomever you want Let me humiliate you, every kind of goodness is in your hands And undoubtedly you are capable of everything, you are the night I enter into the day and you are the one who makes the day You are the one who enters the night from the lifeless You create living beings and you are the ones who create living beings You create lifeless things and you are the one who wants There is an innumerable sustenance bestowed upon the believers The infidels should have friends other than the believers He should not make it and whoever does this will be cursed by Allah There is no limit, yes, if you do this to them If you create a face that protects you from evil, then it will be fun No, and Allah warns you with His wrath And to Allah you will return O Prophet, tell the people that something is Do you keep the fly in your heart or show it? do it, Allah knows it, and whatever whatever is in the heavens and whatever is in the earth He is aware of everything and He is capable of everything, On this day, every person gets the reward of his good deeds. If he takes it and sees his evil too He would wish that if only that evil in him and that I would have travelled a long distance and Allah He frightens you with his wonder, and Allah You are most merciful to your servants Tell the Prophet that if you believe in Allah If you have friends then advocate for me may Allah bless you with friendship and and Allah will forgive your sins The One who will forgive is kind, tell me that Obey the command of Allah and His Messenger, if If he does not believe then even Allah makes the infidels a friend Allah does not protect Adam, Noah and their family Ibrahim and the family of Imran are known throughout the world He selected from among the people, one of them Ba was the son of an eagle and Allah was the listener I know that it’s time to remember It is worth it when Imran’s wife said that hey O God, the child in my womb, I look at it like you, it’s for the world You will keep it free from work by my side Confess, you are the one who listens and the one who knows then when a child is born to them She started saying that O God, I have a girl whereas Allah knew very well what was there had been born and the boy would not have been born like this to the girl and she said I named it I have kept Mary and I will keep her and her children I seek refuge in you from the evil man His Lord blessed him with his favorite gift accepted him and raised him well And made Zakaria his guarantor, when Zakaria If ever I went to him in a place of worship, One day seeing this condition of getting food nearby He began to ask Mary whether she should eat this food Where do you get it from she said It comes from Allah, surely Allah He gives unlimited sustenance to whomsoever He wishes At that time Zakaria called out to his Lord I prayed that God should keep me by his side Please bless me with a son, and I will surely listen to your prayers He is going to be in the place of worship right now He was standing and praying when the angels He called out, Zakaria, may Allah protect you gives the good news which is the message of Kalemullah i.e. Jesus will confirm and will be the leader and will be with the women One who has no attachment and is a prophet i.e. a good person Zakaria said, O God, you will be in Ukar Why will I be born a boy? I am old and my wife is She is barren, so is what Allah wants Zakaria said that the Lord does Please set a sign for me He said, your sign is that you Do not talk to people except through gestures for three days If you can, then in those days, take care of your family Memorizing Him regularly and reciting His Tabloid in the morning and evening And when the angels said to Mary that Mary Allah has blessed you and I have made you pure and the best in the world I have chosen you from among the women Maryam should obey her Lord And prostrating and bowing with those who O Prophet, stop and these things are in the newspaper of the unseen from what we send to you and When they were casting their pens as a curse Who will be Mary’s guardian? Then you should go to him. were not there and neither were they with him at the time when I remember the time when they were fighting among themselves when the angels asked Mary He said that Maryam Allah keeps you by his side gives the good news of the pen whose name is Christ and Isa ibn Maryam will be famous and the world And in the end from among the honourable and the renegade and in the lap of the mother and of an older age Being in both the situations you get the same results from people will chat and Neku will be in cars Maryam said that God is here with me why would a child be born if a person He didn’t even touch me so that This is how Allah creates whatever He wants When he wants to do some work then Irshad He commands it to happen, and it happens And he gives him the Book of Wisdom, the Torah, and the Gospel and Jesus became the protector of Israel go towards him as a prophet and say that I near you to your lord I have brought a sign from you and that is that for you I make the shape of a bird out of clay in front of me Then I blow into it and it becomes a symbol of Allah’s By the order the bird really becomes a bird and He cures those who are born blind and deranged and by Allah’s order the dead I will make you alive and whatever you eat you come and keep them stored in your homes yes I will tell you everything if you are gentleman If you have faith then I am here for you It is a sign and those who were revealed before me I also confirm that it happened and I I have come also because there are many things which you They were haram, should I make them halal for you and I am from your Lord’s side I have come with a sign, so fear Allah and Believe me there is no doubt that Allah is the only If there is a God of mine and yours then it is His pray, this is the straight path then when Jesus saw only denial and disobedience from their side Then they said, is there anyone who is on the side of Allah And my helper Hawari said that we We are on the side of Allah and your helpers Believe in Allah and be a witness that we We are obedient, O God, to the book which you have given us It has been revealed that we have faith in Him and your prophet’s mutablist And Allah is the best planner At that time Allah said, “Isa Your time in this world is over I will lift you up to me and you I will purify you from the company of infidels and who People will follow you, they will call them infidels But I will keep Faiq Ghalib till the doomsday then you all If you come back to me then in those matters That day you kept arguing with each other Now I will judge those who are infidels Severe punishment in both this world and the hereafter I will give you something and they will not have any helper and who People believed and kept doing good to them Allah will reward you fully and Allah O Prophet, we do not keep friends with the oppressors Verses of Allah and wise advice to you Allah narrates the condition of Jesus by reading it is like Adam in that he first He created them from clay and then said, If you become a human being then they will become like that If you have the right from your Lord then Don’t ever be among those who doubt If these people argue with you about Jesus, Do it only after you know the truth If it is done then tell them that come let us our sons and call your sons and daughters call your daughters and we will come ourselves too and you Come yourself also, then both sides pray to Allah And pray to Allah in this way on the liars Curse them all, these statements are true and There is no god except Allah, and surely Allah is Ghalib (the master of wisdom) if If these people go back then Allah will forgive them he knows very well, tell him that O people of the book who The thing between you and me It has been confessed that come towards it, We should not worship anyone except Allah and do not associate anything with Him, and None of us considers anyone as his own except Allah If the artisans do not understand this then If he doesn’t agree then tell him that you are losing it We are obedient to Allah, O People of the Book Why do you quarrel about Abraham? Although the Torah and the Gospel were revealed after them And if that has happened before, then don’t you have sense? Look, you keep fighting in such a matter You did it, of which you had some idea But why do you fight over a matter which You do not know anything and Allah knows and you don’t know Abraham was neither a Jew nor a Christian but Being unattached to everything and becoming one with Allah and were obedient to him and among the polytheists There was no one closer than Ibrahim So they are the people who have been advocating for him and This is the last prophet, sallallahu alaihi waali wasallam and those who believe and Allah is the creator of the believers, O people of Islam Some people of the book wish for this that I am misleading you in some way Though this will mislead you You are being misled and you don’t know O People of the Book, you are aware of the verses of Allah Why do you deny it and yet believe in the Torah? So you are the people of the book, you mix truth with lies why do you create mischief and why do you ignore the truth you hide it even though you know it and the people A gang from the book tells its men that the book which has been revealed to the believers But at the beginning of the day, have faith and deny it at the end so that he Depart from Islam and leave your religion don’t trust anyone’s words except the time of Do it, O Prophet, tell me the guidance It is Allah’s guidance, they also say Do not believe that what you have got Someone else can get it too, otherwise he You need to argue before your Lord Oh Prophet, tell him that the old man will do it It is in the hands of Allah whomsoever he wishes And Allah is the one who gives knowledge He is going to bless whomever he wants with His mercy He does it especially and Allah is very kind he is lord and there is no one from the people of the book who is that if you have a pile of denarii with him If you keep a trust, he will return it to you immediately and someone is such that if he has a Even if you keep a dinar as a trust, as long as it is on his head don’t stand there all the time, i won’t give you anything This is because they say that regarding Umm I won’t be able to do anything for you, it’s just up to Allah They lie and they know it too yes why not the person who keeps his promise If one fulfils all wishes and remains pious, then Allah Those who keep abstinent people as their friends Selling the confession of Allah and your oaths and pay a small price for it they get some share in the end No, Allah will neither speak to them nor On the Day of Judgment he will neither look at them nor at them He will purify them and give them painful punishment And among the People of the Book there are some who The book i.e. Torah is twisted in the tongue read so that you understand what is do read it from the book though he is not from the book and says that he it has been revealed from Allah, although it It is not from Allah and it is not based on Allah They lie and they know it too No man cares that Allah will punish him Then grant me the book, rule and prophethood He should tell the people that except Allah there is no one else except me go away but he should say that O people of the book, become masters of the Lord, because You also teach the book and because You keep on studying and teaching and he doesn’t even notice it You should say that you are the angels and the prophets Whom should you make your god when you are a Muslim? So will he force you to become an infidel? and when Allah made a covenant with the Prophets I took it that when I gave you the book and grains Then some prophet may come to you who If I confirm your book then you You must certainly have faith in him and you must respect him I will have to help and after taking the oath I asked that Well you agreed and I accept this agreement He took the responsibility, that is, he made me the guarantor He said yes, we agreed that you be a witness to this agreement and I I am also a witness with you now those who If we go back later, they are the same bad characters Then is he a kafir other than the religion of Allah? Although all the people are seekers of some other religion The skies and the earth are blessed or displeased by Allah and to Him we return We are going to leave, say that we have faith in Allah and the book which was revealed to us and which right fe Ibrahim and Ishmael and Isaac and the books which were revealed to Jacob and his progeny, God bless Moses, Jesus and the other prophets We have faith in everything that we receive from these There is no difference between any of the prophets and we are obedient to the same Allah And whoever follows any religion other than Islam He would have sought help from him but he never accepted it and such a person will suffer loss in the end Why would Allah sacrifice such people among them? Guide those who become disbelievers after having faith and have previously testified that This prophet is Barhak and brokers also come to him went away and Allah did not guide the unjust The punishment for these people is that they of Allah and the angels and the humans Everyone’s damned forever caught in this damnation if they stay then the punishment will not be lightened and neither will they be given death, yes, those who Thereafter he repented and improved his condition then Allah is Forgiving and Merciful who People became unbelievers after having faith Such people who are increasing in disbelief will surely repent it will not be accepted and these are the people who are misguided People became infidels and died in a state of disbelief. If he wants to be saved and change Even if you give me an earth full of gold, I will never accept it will be done to hurt these people There will be punishment and no one will help them Momino, until you are one of those things which Spending in the way of Allah is dear to you If you do not do this, you will never be able to achieve goodness, and Allah knows what you spend The revelation of the Torah to the children of Israel Before 1999 all food items were halal of those things which Yaqub himself made forbidden Say, “Bring the Torah if you are truthful, and Read it, that is, present the argument now which is If you still believe falsely in Allah then such People are unjust, tell them that Allah has You have told the truth so follow the religion of Ibrahim Do whatever is free from all attachments and is dedicated to one Allah were happening and were not among the mushrik The first house that was built for people to worship It was decided that it is the same as in Mecca There is blessing and joy for the people of this world Guidance: in this are clear signs One of them is of Ibrahim standing There is a place for the person who enters this blessed house It happened that he found peace and Allah bestowed His blessings on the people it is the right or the duty of whoever goes to this house He who keeps the work away from it should perform its Hajj and whoever If he does not follow the order then even Allah You are independent of the people of the world, tell me, O people Book: Why do you disbelieve in the verses of Allah? when you do this while Allah rewards you with all your deeds It is right to say to the believers, O people of the book Why do you block the path of Allah and Even though you are aware of it, there is something wrong with it. you take it out and Allah is responsible for your deeds Believers are not unaware if you are of the People of the Book If you listen to a fanatic, he will listen to you After you have believed, they will make you into infidels and Why would you disbelieve when you have faith in Allah? The verses are recited and you in Him his Prophet is present and whoever has He held the rope tight he straight away The path has started, O believers, fear Allah that one has the right to fear him and a Muslim has the right to die die and all of them together advised to Allah Hold the rope tight and spin around Do not become that and do not take the blame of Allah upon yourself Remember kindness when you’re with each other If you were an enemy, he would have put it in your heart He created a ruckus and you became a brother because of his kindness We became brothers and you were on the edge of the fire when you had reached there he saved you from him This is how Allah reveals His verses to you He tells you in detail so that you can stay on the right path stay and there should be a group among you who Invite people to virtue and good deeds command them to do good deeds and forbid them from doing evil deeds These are the people who are successful and Don’t be like the people who passed away And after getting a clear answer from each other These are the people who started to differ There will be a great punishment on the Day of Judgment when there will be a lot of Many faces will be white and many will be black from those whose faces are black May Allah tell you, are you a Kafir (infidel) after having faith You went away and now you will have to suffer the punishment in return for that disbelief. Taste it, and those whose mouths will turn white will be in the gardens of Allah’s mercy and We will remain in them forever, this is the verse of Allah which we read to you clearly and Allah does not want to oppress the world and whatever is in the heavens and whatever is in the earth Everything belongs to Allah and all the works The end is with Allah only, you believers You are the best Ummah who needs guidance for the people You have been brought to the field to do noble work You tell me to do things and forbid me from doing bad things and you have faith in Allah and if If the People of the Book had believed in them then for them It would have been nice if there were some believers among them There are but few and often it is disobedient You will suffer no loss except some discomfort I won’t be able to reach you and if I fight with you Then they will turn their back and run away, then they will also get help You won’t get it from anywhere else, where you’ll see it You will see that humiliation is sticking to them, Bajaj That he is under the protection of Allah or a Muslim seek refuge among the people and these people seek refuge in Allah are arrested in a strange manner and Nadi is not It is clinging to this because according to the verses of Allah and rejected His prophets They used to kill without any reason because this were disobedient and crossed the limits Not all of these people of the book are the same There are some good people too who are proud of their night I would recite the verses of Allah and pray to Him He prostrates himself before Allah every day and at the end of the day But he tells us to have faith and do good deeds And forbidding evil things and encouraging good deeds they leap and these are the people who are righteous and this The kind of goodness you do, it will not matter to you and Allah will give plenty to the pious He knows the wealth and property of those who are disbelievers Children are always against Allah they will not be of any use and these people are the people of hell that These people will always remain in that which is good spend it in the life of the world The example is like a storm in which there is severe cold And he focuses on the cultivation of those people who are self-reliant They used to commit atrocities, let’s go and destroy him and Allah did not do any injustice to them But they are committing atrocities on themselves Do believers accept a man of a different religion as their own? Don’t make these people your confidants, these are your fault I do not commit any negligence and I want you to suffer the way I do If it reaches their tongue, the enmity becomes evident it has already happened and whatever has happened has put a fly in their heart there is much more if you have some sense So We have made Our verses clear to you, I have told you that you are such pure hearted people that you are friends with these people although it I am not friends with you and you are all about books But you have faith and this is your book I don’t believe it and when I meet you I say We have brought faith and when we are alone If so, I would cut my fingers out of anger at you They bite you, tell them to control their anger die in the Allah of your hearts I am well aware of these things, if you have any hope If something is achieved then they feel bad and if If you are hurt then you become happy and If you tolerate the troubles and disobedience If you keep on criticizing them then you will be exposed for their deceit nothing can harm you May Allah reward whatever you do and remember the time when you wake up in the morning Departing from his home, he told the believers occasional appearance on the battle fronts And Allah hears and knows everything It is at that time that two of you gave up your life wanted to give it but Allah was his helper and Believers must trust only in Allah and Allah also provided it in the battle of Badr I helped you even when you They were worthless due to disobedience of Allah save yourself so you can be thankful when you By saying this to the believers, they were increasing their hearts is it not enough for you that your God sent down 3000 angels I’ll help you yes why not if you Keep your heart strong and avoid disobedience And the infidels will attack you with zeal and enthusiasm. if your lord gives 5000 angels who will bear your mark He will send help and Allah will send that help For you, the source is Bisharatganj get peace from him or else help It is from Allah who is the greatest It is wise; Allah did this because Destroy a group of infidels or Make them feel humiliated and go back unsuccessful O Prophet, you have no say in this work I have no choice now, there are two options, O Allah Be kind to them or punish them these are wrongdoers and whatever is in the heavens in me and whatever is in the earth is all Allah He can forgive whomever he wants and whomever he wants Whether he punishes or Allah is forgiving O believers, He is kind and gives double interest Do not eat and fear Allah so that you may be successful Go and save yourself from the fire of hell which is the fire of the disbelievers and has been prepared for Allah and His Follow the Rasool so that you may be shown mercy And seek forgiveness from your Lord and that Paradise Rush towards the one whose request is between the sky and the earth is equal and ready for the abstinence which has been done in times of comfort and hardship spend their wealth in the way of Allah and Stopping anger and making people’s mistakes free and Allah makes us friends and that when any open crime or If someone else does evil in your favor then Remembering Allah and repenting for your sins They ask for forgiveness and commit sins like Allah Who can spare anyone and deliberately ignore his failures? But we don’t stick to the reward of such people There is mercy and protection from their Lord beneath which canals flow and he is in them will always stay put and do good work The revenge of the people is very good on you people So many things have already happened You can take a walk on the land and see that lies What is the end of those who are suffering from this Quran? People A clear message for the people of piety and for the people of piety There is guidance and advice and do not be evil hearted and Do not grieve if you are a true believer You will remain victorious if you are defeated by wounds If it has happened then these people have also been hurt like this and it is the time when we will people keep changing and this also makes The purpose was that Allah separates the believers and make an eagle amongst you a martyr and Allah does not like injustice and this The purpose was also that Allah purifies the believers Make it clear and destroy the infidels Do you think that heaven is without trial I will enter it although Allah has already It is good for those amongst you who do Jihad I did not even know it and this is also the intention So that he may make known to those who follow the right path And you will kill him before death and martyrdom come. I used to desire her so you looked at her with your eyes I saw it from above and Muhammad Sallallahu Wasallam was one He is a prophet, there have been many before him He has become a prophet, what good would it be if he dies or If you are killed, you will turn back and Whoever turns back will not be spared by Allah It cannot harm you and thank God It will give great reward to the one who passes away and in any person I don’t have the strength to die without Allah’s order He should decide the time of death and write it down and the person who keeps his deeds in the world Whoever wants revenge, we will take it back here And whoever seeks reward in the Hereafter, he will We will grant thanks and we will be grateful I will give you very good stitching and many more There have been prophets with whom the people often If Ullah fought with the enemies then who Troubles befell them in the way of Allah Because of them he neither lost courage nor Neither was he cowardly nor was he subdued by the infidels, Allah is a friend to those who have independence keeps it and in this condition no one can say anything from their mouth The point that comes out is this: O our Lord The sins and excesses that we commit through our actions I have been forgiving you and proving me Step forward and bestow blessings upon the disbelievers Allah rewarded them in this world as well And in the end he will give a very good reward, and may allah bless good cars Momino, if you listen to the disbelievers Then he will turn you around and make you stand on your back You will give it then you will be in big trouble It is not he who helps you, but Allah He is your helper and he is the best We are helpful to those close to the hearts of infidels I will establish my authority because it is Allah’s they commit shirk with that which he has not given any The evidence was not revealed and their abode is Hell It is a very evil abode for the oppressors and Allah has kept his promise to you That is, at that time when you send the disbelievers to his were killing on orders, even those who You wanted it, God showed it to you After that you lost courage and the Prophet started quarreling in execution of the order of and If you disobeyed him then whoever amongst you were seekers of the world and the hawks of the hereafter Talib, at that time Allah presented you before them removed from so that I can try you and He forgave you your sin, and Allah is very kind to the believers It is also worth remembering the time when you People would run away and someone would turn back They did not look at taxes and Rasulullah sallallahu alayhi wasallam to you I was standing behind you and calling out to Allah brought you sorrow after sorrow so that whatever or the trouble that kept slipping out of your hands Don’t be sad because of what happened to you And Allah is aware of all your deeds Then Allah revealed to you after that trouble I sent down consolation that is, I put sleep into you Due to this a group got attracted and some people Those who were in danger of losing their lives due to Allah How can one have any unnecessary belief in disbelief about a prophet? They used to do it and say that it is our right there is something you say that of course everything These people are in the power of Allah the things that you keep in your heart But we did not reveal it, we used to say that our If it were just a matter of time we wouldn’t have committed murder here Go and tell them that even if you go to your homes If they were, then it was their fate to be killed He was surely going to kill himself The need was that Allah who will try the things in your heart and There’s something in your heart, clear it out And Allah is well aware of the matters of the heart Those of you who on the Day of Udya, when the believers and Two groups of infidels got entangled with each other If they ran away from the war, their hawks would be fruitless The devil had made them slip, and surely Surely Allah has forgiven his sin Allah is forgiving, forgive me, believers Don’t be like those who disbelieve And their Muslim brothers when in the way of Allah travel and die or go out for jihad and if they are killed then their relation is said to be If he had stayed with us then he wouldn’t have died nor would he have killed They go because Allah is the protector of those people Create regret in hearts and life and Only Allah gives death and Allah is watching all your actions and if You either die in the way of Allah or Go and buy the stuff that people collect The forgiveness and mercy of Allah is better and If you die or are killed then you will be saved for the sake of Allah You will surely be gathered in the presence of the Lord then By the grace of Allah, you will be able to save those people you have become soft-natured for and if you If you were evil and hard hearted then you would have had this If they would have run away from me then forgive them and Ask Allah for forgiveness for them and for your Take help from them in your work and when someone If you make a firm intention to do the work then rely on Allah Have faith, surely Allah is the believer if allah keeps you a friend If you are helpful then no one can dominate you and if she leaves you then who is there to help you after that and Believers should trust only in Allah And there can never be a prophet betray and doom for those who betray The thing that is betrayed on that day will face Allah then every person will have to be presented with his full reward of one’s deeds will be given, and There will be no injustice done to those who A person who is subject to the pleasure of Allah, One can be like a person who is the follower of Allah be arrested in unhappiness and whose whereabouts There is a hell and it is an evil abode for all people There are different grades with Allah and Allah is watching all their deeds He has certainly done a favor to the believers that in them send a prophet from among them who would reciting the verses of Allah and purifying them and giving them the Book of wisdom They give training and first of all these people are open were in error, what is it that when On the day of Uhud, trouble came upon you from the hands of the infidels Although the number of casualties in the battle of Badr was double that of the previous one Trouble has fallen on them because of you So you started saying that how did this trouble come upon us Tell them that this is your doomsday that you went against the Prophet’s command Surely, Allah is capable of everything and The trouble which befalls you is greater than both the worlds It happened on that day, so it happened by the order of Allah It happened and its purpose was that Allah Momin know it well and the hypocrite also find out and when they were told to come Fight in the way of Allah or fight against the infidels to stop the attacks, then they started saying that if we If there was news of a fight, I would definitely be yours Those days when they lived together, it was disbelief rather than faith Were closer than they say those words with their mouths which is not in their hearts and whatever they They hide it, Allah is well aware of it He himself was sitting safe from the war but who sacrificed their lives in the path of Allah I did tell you about those brothers of mine too that if you had listened to us then you wouldn’t have been killed tell me that if you are truthful then you should take care of yourself to postpone death from those who follow the path of Allah I killed him, don’t think of him as dead, he died but is not dead but alive in the sight of Allah and they are getting sustenance whatever Allah has protected them with His grace are happy with it and those who are left behind And could not join them by becoming martyrs They are celebrating because doomsday is coming On that day they will have no fear, nor will they There will be sorrow and the name and blessings of Allah will be recited are being pleased with it and that Allah The glory of a believer never goes waste who In spite of being wounded, Allah and His prophet Those who accepted the order were the good among them And for those who are pious, there is a great reward. When people came to him and stated that he was a Kufr I have created Lashkar Kaseer to fight you if you have accumulated it then fear them, then their faith and It became too much and they started saying to themselves Allah is sufficient and He is the best creator Then it is Allah’s blessings and His grace Khus Khurram came back with them somehow No fear reached him and he was the source of Allah’s pleasure remain submissive to him and Allah is the possessor of great grace It is the devil who is scaring you scares your friends so if you If you are a believer then do not fear them and only me Be fearful and those who hurry in disbelief don’t be sad because of them They cannot do any harm to Allah Allah wants that in the end they should get something Do not give them a share and a great punishment is ready for them those who bought disbelief in exchange for faith They cannot do any harm to Allah and There will be a torment that will be painful for them, and the unbelievers People should not think that we are giving them time if given then it is good for them No, but we give them time that he may commit more crimes to finally humiliate them There will be punishment for the people until Allah denies evil will not separate the believers from Pakistan the situation in which you are I will never stay and Allah will also protect you from the things of the unseen He will not retaliate except Allah with His Choose whichever of the prophets you want So you take it upon Allah and His messengers But have faith and if you remain steadfast in your faith and If you refrain from abusing, you will suffer great punishment those who are blessed with wealth which Allah has given to them By Fazal he has bestowed them with the blessings of the one who does bukh Is he not taking this fever as good for himself? Understand that it is not good but bad for them This is the stuff where they bugle about doom the day he made a yoke of it and put it around his neck and Allah will inherit the heavens and the earth and whatever deeds you do, you are for Allah You know, Allah has heard their call who say that Allah is a faqir and We are rich, this is what we call it and we will write to the prophets who committed this needless murder I have been doing this, I will keep it under control as well And on the Day of Resurrection they will say, Keep enjoying the punishment of the fire, these are the deeds this is the punishment for keeping your hands moving forward And Allah is dependent on His servants He sent that until a prophet comes to us such If someone does not bring offering, then fire comes and consumes him Till then we will not believe in him, O Prophet Tell them that before me there were many prophets of yours He brought open signs near him and he I also brought socks if you say so If you are right, then why did you kill them? Then if these people are lying to you, Many prophets have been revealed before you with signs and true faith and illuminating books It has come to pass that they too were denied by every The person has to taste death and you On the Day of Judgment the full value of your deeds When the reward is given, whoever is far away from Hell He was kept and entered into Paradise Murad got achieved and the life of the world So this is a matter of deception, O people of faith I definitely tested you in life and wealth and you will go from the People of the Book and those people to those who are polytheists, many things are said by me If you would listen then you would show patience and abstinence if you stay then this is an act of great courage and when Allah has given the Book to those to whom He has given the Book It was agreed that whatever was written in it He has to keep telling it clearly to people and do not hide anything about him They threw the book at him and I got a little price in return for this It is bad for those who achieve something are happy with the work done and that work For those who don’t do it, I wish that their Don’t worry about being praised that he would be saved from the punishment and they There will be a painful torment, and the heavens and The sovereignty of the earth belongs to Allah and Allah is capable of everything, certainly the heavens and the creation of the earth and of night and day For those who have the wisdom to take turns in coming and going There are signs that every person standing, sitting and lying down In the morning I remember Allah and look at the sky and They look into the production of the land and say that O God you have created this universe You were not created for any benefit, you are pure, you are doomsday Save us from the punishment of hell on that day O Lord, the one whom you have put into hell Disgraced and the oppressors have no helper Oh God, we have found a caller I heard that he was calling out in the name of faith that his Have faith in God and we will have faith So O Lord, forgive our sins and remove our evils from us and Raise me from this world with the noble people O Lord, whatever things you have given us, made promises to their prophets May He grant us and on the Day of Resurrection we Do not embarrass me, there is no doubt that you are against me if he does not make the promise then his God will He accepted his prayer and said, The action of someone who does something is a man or woman you don’t go away from each other If there is any commodity then those people who left their country for me and were driven from their homes and persecuted and Fought and murdered, I take away their sins and I will admit them into Paradise Beneath which rivers flow, this is Allah’s There is a reward from here and it is better with Allah O Prophet, the revenge of the infidels is in the cities Don’t let your style of walking deceive you There is a little benefit in this world, then the hereafter Their abode is Hell and that evil there is place but those who are For those who remain afraid, there are gardens beneath them The canals are flowing and he is always in them These will remain their guests from Allah’s place And whatever is with Allah is righteous. it is very good for you and for other people There are books which are based on Allah and Him on the book which was revealed to you and on that which They believe in what has been revealed to them and Allah and they bow down before the verses of Allah These are the people who don’t take even a small price in return whose reward is with their Lord God is ready and quick to judge O people of faith, you are proven against disbelief Stay tuned and Istkameshwari By producing men and women through exercise, spread it and fear Allah for whom you demand rights from one another and beware of mercy, there is no doubt that Allah is watching you and the property of the orphan hand over to them those who are under your control Give them to me, and their pure and fine goods Do not exchange with evil and bad things, nor with them Mix the goods with your goods and eat it because it is big It is a serious crime and if you are aware of this, then your There should be fear about orphan girls If you cannot do justice then except those women Do you like two or three? Marry them four by four and if this thing There is a fear that justice may not be done to many women If you can, marry only one woman or slave relate to the one you own like this You will be saved from injustice and women will be saved give him his dowry happily yes if he I will happily leave some of

    it to you So eat it with pleasure and less unknowing their goods which Allah has made a blessing for you people I have made it, don’t give it to them, but feed them from it And keep making them wear it and keep saying nice things to them And the orphan is required to work until he attains adulthood Keep yourself busy and stay under scrutiny, then you will become an adult But if they had some sense You will become Bakhtgarh i.e. you will grow up to be like you take your stuff back Don’t waste it and waste it in a hurry and give it to the person who is in a distressed state goods should be strictly avoided and If he is needy, he should be given food in a proper manner i.e. without any respect take some service and when their goods become theirs When you start handing over, take witnesses and In reality, Allah is the only witness and accountant There is enough taker who can give the goods to parents and whether the relative dies leaving behind a little or a lot in it This is a part of men as well as women the portions are determined by Allah, and When at the time of division of inheritance the non-heir If relatives, orphans and other people come Give them some of it too and make them understand Speak up and people who are afraid should be afraid You are in such a condition that after you small kids Leave the children and let them fear for themselves that after our death those thoughts What will happen then these people should Be afraid and say the right thing Those who consume orphans’ property illegally He fills his belly with fire and surely Allah will throw you into hell He gives you instructions regarding your children that one boy’s share belongs to two girls the share is equal and if the child dies only Only girls means two or more than two then they have two thirds of the total and if If there is only one girl then she has half of her and of the deceased’s parents, i.e. either of the two One has a sixth share in the fortune provided that the death of having children and if there are no children and only If the parents are his heirs, then one third of the mother and if the deceased has brothers also then The mother will have one sixth share and this division will be done in the following manner: after the execution of the will of the deceased which he made or after the debt is paid, whichever is due to him You are responsible, you don’t know, it will be implemented that your fathers and sons and grandsons Who is more beneficial to you than me? This part is closer to Allah are determined and Allah is everything He is the knower of knowledge, he is the wise one, and whatever is If your wives die leaving behind their children If not, then half of it is yours. If they have children then yours will progress The share is one fourth but this division is as per the will after service of the debt which they have incurred or after the payment of which is their responsibility and the goods you men leave behind if you die If you don’t have children, then your wives has a fourth part of it then if your If there are children then this is one eighth of them the share which after the execution of your will You have done it and after paying the loan, the division will be done and if such man or woman who has neither father nor son but has an inheritance if he has brothers or sisters, each of them one-sixth and if there is more than one Everyone will share in one third, this share too Debts payable after due payment of the inheritance, provided that the death is due to has not caused any harm to anyone, It is Allah’s order and Allah He is extremely knowledgeable, all these are bad things Aqam are the limits of Allah and the person who The obedience of Allah and His Prophet Allah will admit him into Paradise Those in which canals are flowing will always be there will stay and this is a big success and the disobeys Allah and His Prophet, and He who crosses his limits will be sent to hell by Allah where he will always be and keep him from Muslims, you will be punished for your humiliation Those women who have the habit of committing adultery But four of our people were martyred So if they testify about their misdeeds then Keep women confined to their homes, even to death May Allah finish their work for them Someone else should create a source and the two men you if someone does something wrong then punish them then if If he repents and becomes a righteous man, then his Stop pursuing me, surely Allah will accept my repentance is gonna be kind Allah accepts the repentance of only those people He says, whoever does a bad deed out of ignorance They sit down and then quickly repent. Allah pays attention to such people and He He is the all-knowing, the all-wise, and The repentance of such people is not accepted who kept doing bad things even when If death is near to any one of them then Time started saying that now I repent and Nor is the repentance of those who disbelieve accepted for the people who died in such condition we have Momino, I have prepared something painful and surprising for you It is not fair to forcibly become the heir of women Go and see with the intention that whatever take some of what you gave them do not keep them confined to their homes, yes if they openly badka’s It is not Murtaza that you dislike anything Do it and may Allah bestow a lot of good in him. And if you leave one woman and marry another woman you want to do it and give a lot of care to the first woman if you are then don’t take anything from it by flowing in water and by committing open crime, one’s wealth will you take it back from him and why did you give the goods You can take back your taxes while you’re at each other’s You have been friends with him and he is stronger than you have also taken an oath and the women with whom Your forefathers married her Do not marry but what has happened to the ignorant So this utter shamelessness and insult to Allah has happened It was a matter of unhappiness and a very bad custom On you, your mothers and daughters and sisters and aunts and uncles and nephews and the niece who breastfed you And the quilts and the breaths have been made forbidden and the women you have had sexual relations with the girls you raise It is also forbidden for you, if you have sex with them If you have not done any mischief then do it with their girls Is there any sin on you in getting married? No, and the wives of your Sulbi sons too And it is also forbidden for two sisters to come together But what has happened has happened, surely Allah He is the most forgiving and kind and the husband Women are also forbidden for you except those who Captured and tied up like yours May this order come under your control, Allah has given you It has been written and there is no other seal except this Women are lawful for you as goods like this Spend money and marry them, provided that The purpose of marriage should be to maintain the respect and not If you want to have sex with women then you can enjoy it Estimated amount of dowry which has been determined pay it and if after deciding the amount, if you increase or decrease the dowry with the consent of the There is no sin on you, surely Allah is everything The one who knows is wise and the person who The believers amongst you marry free women If you do not keep the intention of doing this away then you will be bound by faith from that which has come into your possession, Nikaah Do it and Allah will strengthen your faith the way you know each other be it jeans or else with those girls Get married after getting permission from the owners And according to the custom, pay their dowry as well Provided that it is pure and not such that Talk openly and without any fear Then if she wishes to do so after coming into the marriage, If they do this then they will face the punishment that is given to free women for this, half of it should be given to them, this is tied That person is allowed to marry who is likely to commit a crime and this be patient with the talk, it is better for you and Allah is Forgiving, Allah is Merciful He wants to reveal His verses to you clearly Give a statement and tell you the ways of others Tell me and may Allah bless you He is the Knower, He is the Wise, and Allah is wants to be kind to you and who People follow their desires I want you to stray from the right path Go away, Allah wants that from you Lighten the burden and make man weak It has happened, believers, to take each other’s property for nothing Eat yes if the mutual pleasure is due to recession then trade there should be a transaction of Rs. and financial benefit should be obtained from it If you go, it is permissible and do not destroy yourself do nothing because god is kind to you And whoever does this by committing excesses and oppression, If he does, we will send him to hell and it is easy for Allah if You are forbidden from committing big sins It is done, if you refrain, we will be yours will forgive you small sins and we will enter the houses of respect and In this thing Allah has made a hawk amongst you But don’t desire the honour given to you, men have reward for the deeds that they did And women have reward for those deeds which He did it and Allah blesses him with His blessings Keep praying, there is no doubt that Allah will give you everything and the goods which are available to parents and If a relative dies and leaves behind, divide it among the rightful owners two, that we have determined the rights of each one and the people with whom you have made an agreement Give them their share too, surely Allah has given Men keep an eye on things and are rulers over women Because Allah has made the hawk better than the eagle and also because men want to sell their goods If they spend, then the noble wives They are obedient and behind their backs Wealth and honour are under the protection of Allah and those women who are cautious You know that being rebellious and mischievous If they are feeling bad then first explain it to them verbally, if not If you understand then argue with them don’t bother about that either So do it hard, then if you are obeyed If yes then do not make any excuse to trouble them Search for it; surely Allah is High and Great And if you guys knew that Mian If there is a rift between a man and his wife, then a just man From the family and the family of a munsif woman Decide among them if she can make peace If Allah wishes, He can create forgiveness in them. There is no doubt that Allah knows everything He knows everything and Allah is aware of it Worship Him alone and do not worship anything along with Him. Do not make partners with parents, children, and orphans And Nadir and relatives, neighbors and strangers neighbors and those sitting nearby and passengers and with all those who are in your custody Behave well and surely you will obey Allah He does not keep as friends those who brag One who feels hungry himself and also makes others feel hungry and whatever wealth Allah has bestowed upon them as a blessing I have told you to keep it hidden And We have prepared for the unbelievers the punishment of humiliation It is ready and whatever you spend, Not for Allah but for the people to see and have faith in Allah every day at the end And if someone’s companion is Satan then there is no doubt that he is a bad companion and if these people are But they believe in the Day of Judgment, and whatever Allah had given them some money to spend If they did then what trouble would they get into and Allah knows them very well. Allah knows about everyone. I do not seek my rights at all and if any If someone has done a good deed, he will return it many times over and bestow great reward on him with your yes What will be the day when we from every Ummah We will call the person who will give the report and you will be called The Prophet (peace be upon him) We will call you to tell you about the condition of the people That day the infidels and the disobedient to the Prophet I wish I could bury them flat on the ground and he does not hide anything from Allah You won’t be able to become a believer when you are inebriated until those alphas who speak their mouths tell me not to understand and do not go near namaz and Don’t go near the prayer even in a bad condition You can even take a bath, yes, if the condition is such You are going on a journey and you will find water if you are unable to take bath due to any reason then decide to do so Pray namaz and if you are sick or traveling Are you me or any one of you from Baitul Khala have you come from somewhere or did you meet women and if you do not get water then pure soil Take it and massage it with your mouth and hands. Do it, surely Allah is forgiving Who will forgive those people? I did not see those who were given parts from the book that he bought misguidedness and wanted that you too may stray from the path and Allah is well aware of your enemies And Allah is sufficient and Allah alone is very helpful and these are the Jews among There are some people who believe that the book of Allah removes the Kalema from its Maqama and They say we listened and did not listen and they say listen or make others listen and to your tongue By twisting and by the path of tension in religion from you During the conversation Raina says and if You can say that we have heard it and accepted it and Only instead of this Ma and Rhina, Ungerbock Curse them the way you cursed those who were on weekdays It was on the book revealed by us, which Iman also confirms your book Bring it and do what Allah has commanded Understand that Allah has forgiven this sin He did not spare anyone who was made a partner with him and other than this any other sin can be forgiven to whomsoever he wishes and whoever has assigned partners to Allah did he tie a big knot did you see them I have not seen people who call themselves ‘Paa’ There is no one but whomever Allah desires purifies them and even a thread-like mark is left on them There will be no injustice, see how it is on Allah Lies create storms and this is open crime It’s enough, you haven’t seen them who have been given portions from the book that They believe in idols and devils and are infidels It is said about them that these people are the believers These are the people who are truly on the right path those whom Allah has cursed and those on whom If Allah curses you then you can curse anyone Will you not find any helper, do they have the kingship If there is some part in that case then it will make people we won’t give even a bit or whatever Allah has He has given people his love by his grace If we do, then we will protect the family of Ibrahim He gave us books and grains and ruled over the Sultanate Azim was also spared, then one of the people someone accepted that book and someone stopped from it All that remains is hell for those who do not believe The fire burning is enough for those who have They disbelieved in the verses and we brought them closer to the Fire Whenever their throats are empty I’ll enter If they go, we will replace them with more empty ones So that the fun of punishment can always be felt, of course Allah is mighty and wise and those who We believed in them and kept doing good deeds They will enter Paradise beneath which there are rivers They are flowing in them, they will always be there There are pure wives for them and we will give them Muslims will enter in dense shade Allah commands you to trust hand over the trust of the people to them and When you try to judge people, do so with justice decide may god bless you He gives advice, surely Allah hears and sees O believer of Allah and His prophet Be obedient and whoever amongst you is gentle they also have authority then if in any matter If there is a dispute amongst you then if Allah and If you believe in the end, then Allah is in it And turn to the command of His Messenger, It is a very good thing and the end result is good too Have you not seen the people who They claim that the book which is written on you and the books which were revealed before you I have faith in all of them and I want this that I present my case as a rebel against Allah took him near them and got the decision made although they were ordered It was given to him that he should not be obeyed and the devil He wants to mislead them and lead them astray put it away and when it is said to them that Allah sent down the command towards him Turn and come to the Prophet, then you Do you see a hypocrite avoiding you? and then we stop and then what is the point of not talking that when some person falls upon them due to the misfortune of their deeds If trouble happens I run to you We come and swear that Vallah is ours The aim of these people was to do good and to enjoy Whatever is in the hearts, Allah blesses it. He knows you don’t care about what they say and admonish them and tell them to do so Say things that will touch their hearts And We have sent every Prophet for this very reason has been sent according to the command of Allah His orders should be obeyed and when these people if I was oppressing you They would come and ask Allah for forgiveness and the Prophet If you had asked for forgiveness for them, then Allah The one who forgives is very merciful By your God, until these people Don’t make me a judge in my tension And whatever decision you make in your heart, Don’t get upset, but accept it happily until then we will not be believers and if we believe in them you would have done the duty to kill yourself Or if you leave your house, then one of these Very few people do this and if it is not in accordance with that advice But there are carbons which are done to them, then their Better in truth and more proven in religion There would have been a mojib of Kadmi and in that case we He also bestows great blessings on them with his blessings and also shows them the straight path and those who They worship Allah and His prophet On the Day of Judgment he will be with those who But Allah did a great favour i.e. the prophets And the Siddiq and the martyrs and the Saliheen and those This blessing of Allah is very great It is a blessing and Allah knows enough Mominos, take up arms for Jihad Then either you go out in groups or everyone Do something together and there will be no one among you It also delays unnecessarily and stays behind then if some trouble befalls you When he goes he says that Allah has blessed me with a great Thankfully, I was not among them and If Allah showers His favour on you then It was as if there was no friendship between you and him I regret and say that I wish I was also like them If we were together then our great aim would have been achieved now People buy the hereafter and in exchange for it the world that those who want to sell their life should that they should fight in the way of Allah and whoever Fight in the way of Allah and then become a martyr Or should we go closer to him? He is bigger than us will give and what has happened to you that Allah’s on the road and those helpless men and women and Those who pray don’t fight for the sake of their children we pray to God to take us out of this city Whose residents are cruel, drive them out somewhere And take someone from your side to our side Agree and send someone from your side to us Appoint a helper; he who is a believer is those who fight in the way of Allah and those who disbelieve He fights in the way of the devil so you Fight with the help of the devil and do not be afraid Because the devil’s claim is weak You haven’t seen the people you saw before It was ordered that one’s hands Abstain from war and pray and pay zakat Keep giving when jihad is made compulsory for them If it happened then some people would say this to them They started to fear as if they were afraid of Allah but more than that he began to say that Allah, why did you make jihad so early upon us? You gave us some time and why did you give us any more time No, O Prophet, tell them that the world’s The benefit is very little and too much of a good thing For the pious there is salvation in the hereafter and upon you You won’t be subjected to even a thread’s worth of oppression Those who are afraid of Jihad, you may die somewhere You will always have something to eat, stay strong in your lives And if these people get any benefit So they say it is from Allah and If any calamity befalls you then O Prophet I am telling you that it is because of you that we It has arrived, tell them that Allah is the only thing that can provide relief from pain what has happened to these people that I cannot even understand you, O human being Whatever benefit comes is from Allah And any harm that occurs is your own misfortune. and O Prophet we have made you the reason for sent as a prophet for the guidance of Allah is sufficient witness that the person If he obeys the Rasool then surely he has those who obey Allah and those who disobey So O Prophet we have given you their He was not sent as a guard and these people But I say that I am your obedient heart I agree but when I go away from you then most of these people are yours at night who advise against things and who They contemplate this, Allah records it Is So don’t worry about them and rely on Allah Have faith and Allah is sufficient Why don’t you pay attention to this in the Quran if This would have been the words of someone other than Allah So he would find a lot of disagreement in this and when No news of peace or terror reached them. if it is then it makes it famous although if present him to the Prophet and his superiors if he had brought it then the investigators would have investigated it you would have done it and if the grace of Allah was upon you and If it were not for his kindness, a few men would have All of you would have fallen prey to the devil except me Fight in the way of the Prophet of Allah You are not responsible to anyone except the believers Also give order to those who are closer to Allah stop the fighting and may Allah bless Tareen is going to fight and punish The person who is very strict in terms of good things if he recommends it, he will get some of its reward You will get your share and recommend any bad thing Do that, he will get a share of his punishment And Allah has power over everything and when If someone prays for you, you answer him Pray to him with a better pen or with those Pray with words, surely Allah is for everything Allah is the one who takes account, He is the most merciful God that there is no one worthy of worship except Him He will surely gather you all on the Day of Judgment And who can be more truthful than Allah? Now what is the reason that you Muslims are hypocrites? Although two gangs have formed about Allah punished them for their deeds do you want that the person Allah has allowed him to remain astray Bring to the right path and the person whom Allah Never let him mislead you you will not find the way, he wants that Just as he himself is a Kafir, you too are be a kaafir and become equal to all then until they Do not leave your country in the path of Allah Don’t make anyone friends if the reason is in the country if they do not confess then catch them and where Get it, kill it and make one of them your own Do not make friends and helpers but those who are You have met people in whom and in you be it the promise of sleep or in such a state that their hearts than fighting with you or your community You are waiting for me to come to you, then it’ll be another matter and if Allah had willed, he would have defeated you If you overpower them then they will definitely fight with you If he kisses you, that means you Let me not fight and I will send you a message of peace So Allah has sent them for you There is no provision for coercion that you will find some other people also who I want you to live in peace as well He lived in peace with his own community, but when Fina If English is called upon, then one turns upside down If such people fail to fight with you Kanara should not puff and neither should I look towards you Send the message of peace and do not hold back your hands So catch them and kill them wherever you find them And in comparison with these people, we You have been given a free hand and no believer It is not a pity that he should kill another believer But I did it by mistake and even if it was by mistake If he kills a Momin then he becomes a Muslim slave Set them free and shed the blood of the heirs of the deceased also give this but that he should forgive then if The dead from the group of your enemies and if he himself is a believer then there is only one Muslim slaves should be freed and if You are among the dead people in whom and you If there is a pact of reconciliation then the heirs of the deceased will be shed blood and set a Muslim slave free should be done and those who cannot afford it, Mut Vatir should keep fasts for two months, this Kaffara Acceptance from Allah is for repentance and Allah is all-knowing, He is all-wise and whoever insults a Muslim if he throws it in, then his punishment is hell, in which he will always be jealous and Allah will shower His wrath on him and will curse him and such a person’s He has prepared a severe punishment for them Momino, when you are out in the way of Allah If you go out then do it with investigation and whatever If a person greets you, do not tell him that You are not a believer that you need him May it be that one gains the benefit of the life of the world Do it, Allah has many blessings You too were like this before, then Allah I did you a favor so investigate further Certainly, accept whatever you do, O Allah Everyone knows about the Muslims sitting in their homes They live and avoid fighting, and no one else Those who do not take rewards and those who are in the way of Allah Both those who perform jihad with their wealth and life Jihad with wealth and life cannot be equal Allah blesses those who do it and those who sit has bestowed excellence in status and is excellent Allah has promised the end to everyone and In terms of Azar Azam, Allah has instructed us to do Jihad Those who stay have some superiority over those who sit It is a gift, that is, a rank from Allah And in forgiveness and in mercy, and Allah is greatest The One who forgives is most merciful to those who When angels put their lives at stake When their life starts becoming a chokehold, then they When they ask how you were, they say We were fed up and helpless in our country The angels say is this the country of Allah There was no opportunity for you to migrate to it So the abode of such people is Hell and they It is a bad place to return to, yes the man and Women and children are helpless because neither any I can make arrangements but I don’t know the way If they are there then it is near that Allah will forgive such people Give and Allah is the most forgiving He is the most forgiving and whoever follows the path of Allah I leave my home and she lives in a lot of land will get a place to live and comfort and the person who Migrating towards Allah and His Messenger if he comes out from there and then death catches him then his The reward has been assigned to Allah and Allah He is the Most Forgiving, the Most Merciful, and When you go on a journey, you will be rewarded with something It is not necessary to reduce the number of prayers but You are afraid that the infidels will persecute you Surely the disbelievers are your open enemies and Prophet, when you are in this army of Mujahideen And if you start teaching them namaz then it should be that A group of them are with you in prayer When he has finished prostrating, stand up go back and the other group which offered namaz did not study, in their place came more intelligent and mature If a kaafir prays with you then All I want is for you to get a little more stock in your weapons and Be careless of the stuff that will fall on you all at once attack me and if you are in trouble because of the rain If you are in the hospital or are ill, then there is no sin on you Not that you should take off your weapons but defend yourself Allah must do this for the disbelievers The punishment of humiliation is ready for when If you have completed this namaz then stand up and Remember Allah in every condition whether you sit or lie down do it then when you are satisfied then complete it Pray with respect, of course, pray It is duty for believers to perform their duties within their limits And there is no letup in chasing these infidels If you are uncomfortable then do it as You are restless, similarly he is also restless There is comfort and you are blessed with such blessings from Allah you have expectations that they don’t have and Allah is all-knowing and all-wise O Prophet, we have revealed the true book to you so that according to the guidance of Allah Decide people’s cases and see Never argue in support of a traitor and Keep asking Allah for forgiveness, surely Allah The Most Forgiving is the Most Merciful and those who We take care of our things Do not argue with anyone because Allah is a traitor And these people do not keep criminals as friends We hide from them but we cannot hide from Allah Though when it comes to such things at nights He gives advice to those who don’t like him If he does then it is with them and Allah is grateful for all their deeds Well you people in this world are their If you argue on one side then on the Day of Judgment Who will argue with Allah on their behalf? And who will be their lawyer and who is the person Do a bad deed or commit injustice against yourself Do it and then ask Allah for forgiveness, so Allah The one who forgives greatly will find the most merciful And whoever commits a sin, the consequences for it will be upon him and Allah is all-knowing is wise and whoever commits any mistake or One commits the crime himself but someone else is blamed for it If you put it on an innocent it would flow and open up You placed the burden of sin on your head and O Prophet, if May Allah’s grace and mercy be upon you If it were so, then one of these groups would have misled you I had already done my duty and this was not for anyone except me I can’t mislead you and neither can you do anything can spoil it and Allah has blessed you with The Book and wisdom have been revealed and to you taught you things you didn’t know And Allah has bestowed great favor upon you Many of the whispers of these people are not good yes that person’s whispering might be good which is charity or a good deed or peace among people and whoever does such work is for the sake of Allah to achieve happiness we will do it He will be given a great reward and the person who is straight After knowing the way the Prophet to oppose others and to go beyond the path of the believers If you walk on some other path, that is where he goes We will drive him there and on the Day of Judgment We will admit her into Hell and she will be cursed with evil May Allah not forgive this sin Someone should be made a partner with him and other than that And He will forgive the sins of whomsoever He wishes, and whoever associates with Allah, then certainly he These people have gone away from the path of Allah except those who worship some goddesses and if we call out to the devil, then it is the rebel The one whom Allah has cursed and he is I started saying to you, I am stranger to your servants by getting a Niyaz of Rs. a fixed amount of goods I will take part and mislead them I will continue to do so and give them hope and I will continue to teach that animals have ears And if I keep explaining to them then they will believe in Allah you will keep ruining the conditions that have been created and The man left Allah and made Satan his friend he made them he was clearly at a loss makes promises and gives hope and who Some devils give them promises but they are deceitful This is deception, the abode of such people is hell and He won’t be able to find any way out from there And those who believed and did good deeds We will admit into Paradise those who The canals flow down below, he is always in them This is the true promise of Allah and Who is more truthful than Allah? Muslims, otherwise you may be saved It is based on desires and not on the desires of the people of the book Whoever does evil will be repaid in the same way will be given and it will be given to none except Allah who will find neither supporter nor helper nor the righteous whether he is a man or a woman he will do the work while the Sahib If they have faith, such people will enter heaven and they would never even ask for a single penny’s worth of rights will go and whose religion is better than that person who has bowed his head before Allah And he is a righteous man and the follower of the religion of Ibrahim. who is the foot of Yaku i.e. one Allah and Allah made Ibrahim his I had made friends and in the sky and on the earth Everything belongs to Allah and Allah is everything O Prophet, you are surrounding yourself with a thing I ask you to issue a fatwa regarding orphan women Say to them that Allah will support you with them gives permission for marriage and The command which is given earlier in this book it’s about those orphan women whom you You don’t give them their rights and still have desires that you marry them and also the poor about bekas children and also gives that you should uphold justice towards the orphan and Whatever good you do, Allah will surely reward you with it and if any woman knows the need of her own If there is a fear of excess or indifference from the other side There is no fault of husband and wife for having sex with each other settle for some agreement and the reconciliation will be good It is a thing and my health itself is inclined towards anger It does happen and if you do good deeds and abstain from evil If you abuse me then Allah will punish you for all your deeds and no matter how much you wish to eat If you will never be able to exchange your wives Do not do such a thing that you get inclined towards one thing and Leave the other one in such a condition that it seems is hanging in the balance and if there is a fight between us stop and abstain from abuse, then Allah The Forgiving is the Most Merciful and if If husband and wife get separated from each other Allah will make everyone blessed by His grace And Allah is Glorious and Wise. and whatever is in the sky and whatever is in the earth everything belongs to Allah and those who The book was given to them also before you and Prophet, We have also given you our command that you should fear Allah and if you If you disbelieve then understand that whatever is in the heavens Whatever is in me and in the earth is all Allah Who is it and Allah is selfless, worthy of Hamd Sana and then listen to whatever is in the heavens And whatever is in the earth belongs to Allah And Allah is enough for the people if If he wishes he can destroy you and your Create a place and people and Allah will make this The person who is completely capable of talking is the world If he is seeking the reward of that, then he should know that with Allah both this world and the hereafter The reward is present and Allah listens He sees, O you who believe, stay steadfast to justice And give true testimony for the sake of Allah against yourself or your parents And if someone is against the relatives If one is rich or poor then Allah is for both of them You are eating too much good because of your self desires don’t leave justice by following someone if you Will you say something vague or the truth If you do the same then know that Allah will bless you The believers are aware of the deeds of Allah and on his messenger and the book which he has sent in his and the books which have been revealed to the Prophet It was revealed earlier, have faith in everyone and whoever The person is the protector of Allah and His angels and His From the books and its prophets and the daily doomsday He disbelieved and strayed away from the path Those who believed and then became unbelievers and then believed again They brought it, then became infidels and then increased in disbelief may Allah neither forgive them nor O Prophet, you will show them the right path No good news to the hypocrites, i.e. two rude people Give me a painful punishment prepared for them He who abandons the believers and gives up the unbelievers Do you make friends? Is this an honor for them? If you want to achieve respect then everyone It is Allah’s and Allah has given you, believers But he revealed this order in his book that when you hear somewhere that Allah’s The verses are being denied and they are being laughed at it is being blown away so as long as those people and things don’t sit near them or else you will also There is no doubt that you will be counted among them Allah sends all the hypocrites and infidels to hell There is a collector who keeps watching you Then if you get victory from Allah When we meet they say, are I not with you? And if victory was destined for the infidels, then they say were we not lib on you and did not save you from the hands of the Muslims Now Allah will judge between all of you on the Day of Judgment and Allah will turn the infidels upon the believers The hypocrite will never prevail with these tricks In their view, they deceive Allah Why would they betray him, he would betray them and when this person is standing for namaz If they are, they just become lazy and lethargic Just to show off to people and remember Allah I don’t do it but there is very little shaking are they neither on their side nor on this one and If someone is led astray by Allah then you can never do anything for him You will not find the way, O people of faith and believers Do not make friends except infidels? Do you want the blessings of Allah upon you? Take the blame, there is no doubt that the hypocrites will be in the lowest level of Hell and You won’t find anyone to help them, yes those who repented and accepted their condition I fixed it and tied the rope of Allah I held on strongly and I followed the orders of pure Allah If such people become friends then they will not be with the believers And Allah will make the believer greater You will get reward if you are thankful to Allah If you survive and have faith in Him, then Allah what will Allah do by punishing you and Allah is aware of this fact I don’t like it when someone tries to bribe someone Only the one who is oppressed can say bad things and Allah is the best Hear something, know if you guys are good Will you do it openly or secretly or do evil If you request him then even Allah will forgive you Those who are the masters of nature, are blessed by Allah and disbelieve in His prophets, and Differentiating between Allah and His Prophets want and say that we believe in the eagle and do not believe in the hawk and have faith and I want to find a way out amidst disbelief Yes, they are certainly infidels, and for the infidels We have prepared the punishment of humiliation and those who believe in Allah and his prophets and made no distinction between any of them That is, everyone is considered to be close to such people May Allah reward us for our good deeds and The One who is Forgiving is the Most Merciful, O Prophet The People of the Book request you that You can write a book on them from the sky If you bring it down from Moses, it is even more I have made big requests to them We were face to face with Allah Show them the reason for their crime Lightning caught me and then there were clear signs If after leaving, you start making the calf your god We also made requests to him, and We made Moses We had given them an open charter and we had taken an oath from them He raised Kohe Tur over them and ordered to enter the city gate If it is to be done then one must enter while prostrating and this He also ordered that fish should be eaten on weekdays Resentment in catching means not going against the order We took a strong oath from them but If they broke their covenant then Breaking the rules and disbelief from the verses of Allah and killing the prophets without any reason and this There is a reason to say that our hearts are veiled Allah has made them men and There are no veils on their hearts, but their Allah has sealed them because of their disbelief If it is so, then it has little faith and their The cause of disbelief and a great blessing on Maryam for the sake of binding and for the sake of saying that we have to Jesus Christ, the son of Mary, who was He was called a prophet, Allah has murdered him made him angry though he Jesus was neither murdered nor crucified but those people were not able to climb on it The form became known and those who knew about it He disagrees with them out of suspicion lying down and walking on the strength of pride To them its Mutlu Isa was certainly not murdered but Allah raised him to His side and Allah is free, He is wise and His people No one will be in the book but his death he will believe in them before the Doomsday and he There will be witnesses against them on the Day of Judgment, so we have made the Jews many pure things were lost because of the atrocities of that which was lawful for them, they made it forbidden for them, and this also because he often goes in the way of Allah they used to stop people from doing this and also because Inspite of being prohibited they used to take interest and this also because they used to usurp people’s wealth without any reason And for those who disbelieve among them We have A painful punishment has been prepared But those who among them are firm in their knowledge And he who believes in this Book, which is beyond you and the books which were revealed before you We have faith in everything and offer our prayers and give zakat and worship Allah and daily If we believe in the end then we will bring them closer O Muhammad Sallallahu I will give you great reward Alaihi Wali Wasallam we have turned towards you in that in the same way as Noah and those after him. it was sent to the prophets and Ibrahim And Ismail and Iq and Yakub and the children of Yakub And Isa and Ayub and Yunus and Haroon and We had also sent the same to Suleiman, and To Dawood We also bestowed the Zabur and many who are prophets whose condition we know from you have already made the statement and many more There are prophets whose circumstances we have narrated to you They did not do so and Allah Himself told Moses Allah said this to all the prophets By making those who bring good news and those who scare so that after the coming of the prophets People have no argument against Allah I met you and Allah is mighty and wise But the Book which Allah has revealed to you Allah testifies regarding him that He has sent down from His knowledge and the angels They also give testimony and the witness is only Allah Enough is enough for those who disbelieved and for the people he stopped him from the path of Allah Those who went astray and became disbelievers, They kept committing atrocities, may Allah forgive them No, and I will not show them the way, yes except the path of hell in which he will always We will always be here and this is easy for Allah People this prophet is with you I have brought the truth from God So have faith in them, it is in your favor It is better and if you disbelieve then know it that all that is in the heavens and on the earth It belongs to Allah and Allah knows everything He is the one who has wisdom, O people of the book Do not exceed the limits in matters of religion and Allah Say nothing about Christ except what is true That is, Jesus, son of Mary, is the messenger of Allah and these were his special orders which he gave to Mary had sent it towards and there was a spirit by his side So have faith in Allah and His messengers and Do not say that there are three Gods in Takadina and whatever is in the ground is all that and Allah is sufficient for the creator Christ does not mind that God’s There are no human beings and no fixed angels And whoever is ready to be a servant of Allah If one understands the power and rebels then Allah will save everything He will gather the people around him now whoever believed and kept doing good deeds and they He will give full revenge and some from his grace he will bestow even more blessings and those who and refused to be and asked him, painful punishment And he has no other supporter besides Allah You will not find any help from your people You have a great blessing from the Almighty. The argument has arrived and we have rejected disbelief and disgrace. Illuminate your path to dispel darkness He has sent down the light of enlightenment for those who Believe in Allah and the rope of His religion He keeps holding them strong with His mercy and will enter him into the Paradise of Fazal and his will show you the direct route to the O Prophet, tell me about Kalala They ask for orders, say that Allah Regarding Kalala it commands that If a man dies without any children And if he has no parents and a sister, then he will get half of brother’s profit and If the sister dies and she has no children then his brother will be the heir to all his property and if If the dying brother has two sisters, then both of them two-thirds of the brother’s share and if the brother and Sister means men and women are mixed heirs If yes, then the man’s share is divided into two women’s shares This act is equal to that of Allah from you The statement says that do not wander about and Allah is well aware of everything In the name of Allah, the most merciful He is Most Merciful, O our believers Complete the Mahids who graze for you The cattle have been slaughtered except those who they are read out to you, but the condition Allah does not consider hunting in Ihram as halal A Momino commands as he wishes Do not disrespect things named after Allah do not do it any more in the month of respect of sacrificial animals and not those animals that which has been bestowed upon the eyes of Allah those who have leashes around their necks and not those of the people who are in the house of sanctity, i.e. Baitullah where are you going due to the grace of your God and I remained in need of his happiness and when a If you take off the ihram then you have the choice Hunt and some people have enmity because of this that they stopped you from going to the Haram Masjid I would not make you insist on the fact that You start committing excesses and see the goodness and Helping one another in the tasks of abstinence and do it in matters of crime and oppression Do not argue with anyone and fear Allah Have no doubt that Allah’s punishment is severe Dead animals and flowing blood and pigs on you the meat of and that which is worshipped by other than Allah Someone else’s name is called and the animal One who dies by suffocation and one who dies by getting injured And one who dies by falling and one who dies by getting bitten by horns All this is haram and so is the animal which The beasts may tear you apart but you can’t stop the one from dying First kill them and also the animal which The sacrifice should be made at the shrine of Gairullah and Also know your fate through dice Today your religion is full of sins, infidels If you have lost hope from them then do not be afraid of them and Be afraid of me, today I have made a wish for you I have made your religion perfect and my I have bestowed my blessings upon you and for you yes I have chosen Islam as my religion A person may become helpless due to hunger provided that If you are not inclined towards sin, then may Allah forgive you The Lord is very kind to you, O Prophet They ask what things are important for them Tell them that all pure things are halal It is halal for you and that prey is also halal which Those hunters caught the animals for you whom you have kept steady and the way in which God has taught you how to hunt If you have taught them in the way that They will catch the prey for you and eat it take it and leave it to the hunter animals Take the name of Allah at all times and Allah Beware of Him, surely Allah will soon take the punishment Today I am going to bring you all the pure things It was made halal and so was the food of the People of the Book It is halal for you and your food is halal for them And pure are the believer women and pure are the The women of Ahl-e-Kitab are also lawful when their Give them the dowry and the marriage remains intact the intention should be to keep it and not to make open bad remarks nor To make secret friendship and the person who is faithful He denied it and his deeds became futile, and he In the end, he will be among the losers Momino, when you tried to pray If you do, wash your face and hands up to your elbows. take it and massage your head and Wash your feet upto the ankles and if the gentleman’s If you are able to, take a bath and purify yourself. If you are sick or traveling or someone did you come from Baitul Khala or did you If you have met women then you will get water If you cannot get it then take pure soil and cover your mouth with it. And the masa of the hands means decide me Allah I don’t want to put any kind of strain on you Rather, it wants to purify you and May He bestow His blessings upon you so that you Be thankful and grateful for what Allah has bestowed upon you Remember what he did and his promise too whose vow was taken from you i.e. when you It was said that we have heard the command of Allah And confess and fear Allah if there is any doubt It is not that Allah knows anything about the matters of the heart For Allah is aware, O you who believe stood up to testify for justice Do this and the hostility of some people prevents you from doing this But don’t be so determined not to do justice Do justice, this is a matter of shame And fear Allah, there is no doubt that Allah is aware of all your deeds People believed in him and kept doing good deeds Allah has promised that for them There is forgiveness and great reward and those who disbelieve And they denied Our verses and that is Hell O you who believe, Allah has blessed you with Remember the favor you have done for me when some people if he intended to attack you then He has restrained their hands from you and from Allah Be afraid and the believers have to depend only on Allah One must have faith and Allah has given protection to the Bani Israel We had taken an agreement with them and we included 12 Sardars in them had been determined and Allah said that I am with you if you pray And you will continue to give zakat and on my prophets you will have faith and keep helping them and If you give Allah your debt then I will forgive you I will remove your sins and I will enter the paradise beneath which there are rivers are flowing then after which one of you When he disbelieved, he strayed from the right path So because they broke their covenant, we cursed them and hardened their hearts These people gave the Kalma Kitab from their Maqama and the things about which they are given advice A part of it too was forgotten except for a few men sitting and you always You keep getting news of one or the other of their misdeeds. So forgive them and request them Allah blesses those who do good And those who say that we are addicts, we I had taken a vow from them also but if they too part of the advice that was given to them If they forgot, then we will destroy them till the Doomsday and whatever They kept bringing Allah closer to them He will warn you, O people of the book Our prophets have finally come to power that whatever You used to hide them from the book of Allah I will tell you a lot of it openly and forgives many of your sins Surely, they make it available to you the blessings of Allah A book of light and light has come from this side, which May Allah grant safety to those who follow His will shows the way and by his command taking them out of the darkness into the light and guides them on the right path Those who say that Allah is the same as Christ He is the Ibn Maryam, he is surely a disbeliever, tell him give that if Allah gave Isa ibn Maryam and to his mother and all those in the earth If he wants to kill everyone then who can stand before him? and the sky and the earth and whatever There is something between them, Allah is above all It is his rule, he creates whatever he wants and Allah is all-powerful over everything, Neither Jews nor Sarah say that we are followers of Allah son and his beloved say that then he you will be punished for your sins Why doesn’t he give it to you but you are his creation I am a person like others, the one who He can forgive and punish whomever He wants, and the sky and the earth and whatever is between them It is Allah’s rule over all and everyone is dependent on Him We have to return to the side, O people of the book The series of arrival of prophets which lasted for a long time If you keep waiting then now you have our The Prophet has come who will tell you our truth so that you don’t say that we have No one came to bring good news or fear So now I have good news and warnings to bring to you. The ones have come and Allah is powerful over everything yes and when Moses said to his people that The favours that Allah has bestowed upon you, brothers Remember Him who created a Prophet among you and made you a king and you He bestowed so much blessings that out of the people of the world O brothers, you did not give your request to anyone Muqaddas means the country in Sham which Allah has written it for you come in And make sure you don’t turn your back during the fight Otherwise you will be in loss, he started saying Moses, there live very powerful people there And until that head comes out of the ground we can’t go there yes if he is from there If we leave then we will enter whoever There were two men among them who feared Allah But it was Allah’s grace that these attack people through doorways Then when you entered the door, you achieved victory It’s yours and trust in Allah If you are truly faithful he said that Moses, as long as they are there we will never be there If you must fight without going, then you And your lord both of you go and we will fight We will sit here, Moses asked Allah I prayed that O God, I am for myself and my I have no authority over anyone except my brother You keep it between us and these disobedient people Allah said that he The country is forbidden to them for 40 years. It was told that you will not be able to go there, this is In the area where now heads are roaming around If we stay then we will be at the mercy of these disrespectful people Do not regret and O Prophet give them to Adam The condition of sons Habib and Qabil which is absolutely are you true, read it out loud that when both of them when he offered his offering one by one at the court of Allah One’s prayer was accepted and the other’s When she did not accept it, Qabil started saying to Habil that I will kill you he said Allah accepts the prayers of only those who pious If you are going to kill me, If you lay a hand on me, I will kill you I will not lay my hand on you to do this So I am afraid of Allah Rabbul Alameen I want you to take away my sins as well And you will confess your sins in the people of hell Let it happen and this is the punishment for the oppressors after all His self, i.e. Qabil’s self, called him his brother when he gave the order to kill him, he killed him I did it and now I am among the recipients Allah sent a crow which dug in the ground so that he could show him his brother’s corpse How to hide it, he started saying oh less luck I couldn’t even be like this crow I would have hidden my brother’s body then He felt remorseful for the murder we committed It was written upon the children of Israel that whoever A person will kill someone without reason, that is, without whether we should avenge our lives or our country if he is punished for doing wrong, he as if all the people were murdered and the one who If one person saves a person’s life, it is as if he has saved all gave life to humans and for these people Our Prophet has already brought clear arguments to us Even after that, many of these people are still in the country Those who commit injustice are Allah and fight against His Messenger, and in the country This is their punishment for running around to create mischief should be brutally murdered or crucified be offered or their hands on each side and The legs on each side should be cut off or If they are made to disappear then this is their only hope in the world There is disgrace for them, and a great punishment for them in the end A great punishment is ready for those who have done this The thing is that you can control it if you repent Know that Allah is Forgiving and Merciful O you who believe, fear Allah and Keep looking for his proximity and his path I must do Jihad so that those who are successful they are infidels if they have there should be rueda and with it there should be more of the same So that on the Day of Judgment the revenge for being saved from punishment if they give it, it will not be accepted from them and they It would be a painful punishment, he would want that You can get out of the fire but you can’t get out of it And for them is everlasting punishment, and theft The man who steals and the woman who steals Cut off each of their hands, this is proof of their misdeeds As a punishment and a lesson from Allah and Allah is mighty and wise, then A person who repents after committing a sin and becomes a virtuous person If he does something then Allah will forgive him There is no doubt that Allah is the most forgiving He is very kind, don’t you know that there is only Allah in the heavens and the earth It is a kingdom and it can punish anyone it wants If only he could forgive me and Allah is full of everything O Prophet, those who are in disbelief are brave. Let’s hurry up and do something among those people are those who say with their mouth that they are believers But their hearts are not believers and nothing else Going because of those among them who are Jews These people shouldn’t be there to create lies They go around spying on other people have become spies for the one who is with you now Things did not come to be proved in their place after being taken away from the people They say that if you receive this order then Accept it and if you don’t get it then Avoid this and whomever Allah wishes to make disappear So you will get guidance from Allah for that. These people do not have any authority over whose hearts Allah has purified I did not want any humiliation for them in this world And in the end there is a great punishment for these lies spies and bribes to make are going to eat the haram stuff if this do you have any case to decide If you come then you decide between these or not Do Gardani and if you get angry with them If you do it, it won’t harm you in any way and if you want to decide then you can do justice to decide that Allah is the judge of those who are just and it keeps you as its friend Why should we file a case and get it decided when we ourselves are They have the Torah in which Allah’s The order is written, then you know it After that they turn away from it and these people They do not believe, surely We have revealed the Torah He said that it belongs to him in whom there is guidance and light. According to the prophets who were obedient to Allah have been ordering the Jews and Appointed guardians of the book of Mushaira had gone there and there were witnesses to it i.e. divine order So don’t be afraid of people And fear Me and be faithful to My verses Do not take a small price in return and whatever Allah Order according to the revealed sayings of the Prophet If they don’t give, then such people are infidels And We have revealed to them in the Torah this The order was written that life in exchange for life and eye for eye and nose for nose and ear for ear and tooth for tooth and The person who has now avenged all the wounds in this manner If he forgives the revenge, it will be atonement for him and which are the revelations of Allah If you do not give orders as per the need then such people will be There is justice and after those prophets only We sent Isa ibn Maryam in the footsteps of which confirms the Torah which came before it. and I gave them the Gospel in which There is guidance and light, and of the Torah which precedes it. The book confirms and cautions against She guides and advises the people and The Gospel requires that According to Ekambadeswarar he will not give orders So such people are disobedient and O Prophet we have The true book has been revealed to you, which confirms the first books and There is a watch over everything, so whatever Allah commands According to what has been revealed You have the right to decide between Leaving him behind, he has come to fulfill their desires Do not plead, we have chosen each one of you A tradition and a way for the community has been determined And if Allah had willed, you would have been given the same I would have done it according to the Shariat but whatever order he gave you I have given them to you to try He wants you to move ahead in noble deeds Everybody has to return to Allah The things that you had disagreements about, you he will tell and we reiterate that whoever Allah has revealed the commandment of decide according to them and Do not follow desires and be attached to them to stay together as per some order given by Allah It has been revealed to you somewhere Don’t mislead me, if he doesn’t agree then know it that Allah wants that they should forgive all their sins cause trouble to fall upon them and often People are disobedient anyway, so what is this era The desire to make a decision like that of an ignorant person is weak and from Allah for those who believe Whose decision will be better, O believing Jews? And don’t make Sara your friend, they are not friends with each other and the person amongst you who is their friend He will make friends and will also be counted among them Surely Allah does not guide the unjust If it gives, then those who have the fear of retribution in their hearts It is a disease, you will see them running in it we meet running they say that we I am afraid that the wrath of the world may fall upon us It is near if it comes or Allah sends a blessing Let some other immortal being descend from

    here then These people hide their innermost thoughts were professions and will remain as such at that time Muslims will wonder if this is the same who has taken strict oaths in the name of Allah We used to say that we are with you, their actions You have lost your face and fallen into loss, O faith People, if anyone amongst you turns away from his religion, If he goes, Allah will create such people Whom he keeps as his friend and whom he keeps as his friend And those who are soft on the believers and You are the one who is strict with the infidels. Do jihad on the path and do not blame anyone Do not be afraid of the blame of others, this is Allah’s blessing He gives to whomever he wishes and Allah He is a great warrior, he knows everything Muslims, your friends are Allah and His Prophet and the believer are the ones who offer namaz Read and give zakat and pray before Allah bow down and whoever is If he makes friendship with the Prophet and the believers then he He will be from the group of Allah and will be a part of Allah’s group. It is the Jamaat that will achieve victory, O believers Those who were given books before you to them and to the infidels who have My friend, you have made poverty a joke and a game Make them and if you are a believer then fear Allah Stay and when you give the adhan for namaz If yes, then it makes it a joke and a game Because you do not understand, say: O people Book, what evil do you see in us? except that we believe in Allah and the Book on that which was revealed to us and on the books which were revealed earlier we have believed in all that was revealed and that You often have bad characters, tell me should I Let me tell you that even with this, Allah has Who are the people who get the worst justice? those whom Allah has cursed and those on whom He has cursed The nose became amazing and those who saw monkeys and and those who worshiped the devil Such people worship others in a bad way and he is far from the right path and When these people come to you they say It is true that we have accepted faith even though we have disbelief they come and take away the same and those who They hide things, Allah blesses them a lot knows and you will see that often in these Quick to commit sins, excesses and eat haram food Of course whatever they do is bad Their musketeers and scholars do them good Forbidden from saying sinful things and eating haram Why don’t you do it without any reason that is also bad and the Jews say that Allah’s Hands are tied, which means Allah is blessed Their hands should be tied and they should be made to say this Shame on all of them, the fact is that his Both hands are open in whatever way and as much He wants to spend it and O Prophet this book which is bestowed upon you from your Lord This resulted in most of these mischiefs And the denial and the increase and We have made a difference between them Enmity and hostility have been postponed till the Day of Judgment When ever they lit the fire of war Allah extinguished it and it became extinct in the country They run around to cause mischief and Allah I do not keep friends who create trouble, and If the People of the Book had faith and avoided evil had they done so, We would have relieved them of their sins and admit them into gardens of blessings, If he had given up the Torah and the Gospel and other books revealed to them from their Lord If you had kept them, then they would have been like sustenance It rains from above and beneath your feet Some of them are Miyana Rou and many So are those whose deeds are evil, O Prophet The message which has been revealed to you from Allah deliver it to all the people and if this happens If you do not do this then you will not be able to convey Allah’s message I will remain silent and Allah will protect you from the people Surely Allah will protect and guide the munkar does not Say: O People of the Book, until you the Bible and the other books you have Delivered upon you from the Almighty You won’t keep them on any path and this Quran which is yours It has been revealed to you from God This made most of them rebellious and disbelieving, and If it grows then don’t feel sorry for the community of Kufa those who believe in Allah and the Last Day And perform righteous deeds, whether one is a Muslim or a Jew Or star worshippers or Christians, they are doomed There will be no fear or sadness on this day We must have taken a covenant from the children of Israel and He also sent prophets towards them but when someone The Prophet would come to them with such things that Her heart did not want it so she went to Ambiya’s You would lie to one group and to another group They used to kill and thought that This will not cause any harm to them, so they They became blind and deaf, then Allah blessed them He said kindly but then many of them they became blind and deaf and Allah saved all their lives Those people are watching the deeds of shameless infidels there are those who say that Allah is the Messiah It is Mary, though Christ is from Judaism They used to say, O children of Israel, Worship the one who is my Lord and yours also and know that the person who is Allah Whoever shirks with someone, Allah will grant him Paradise He will make it forbidden and his abode is Hell And the wrongdoers will have no helper People are also infidels who are convinced that Allah is the third of three although He No one is worthy of worship except the One God No, if these people stop such activities If they do not come then those who are infidels among them If the one who causes trouble will get punishment then why is this they do not repent before Allah and We do not ask for forgiveness for our sins and Allah The Messiah is forgiving and merciful Maryam was a prophet even before that Many apostles had passed away and their mothers Maryam is a faithful and obedient woman of Allah Both were humans and ate food Look at what We reveal to these people in Our verses. you explain it openly like this then see this tell me where are these going reverse that you Why do you need anything other than Allah? You worship the one whom you worship for your benefits and There is no power to cause harm, and Allah He hears and knows everything, say that the people The book is not unnecessarily mum in the matters of your religion Do it and don’t follow the desires of such people Come on, those who have themselves been misled earlier and often also misled and strayed from the right path On those who disbelieved among the children of Israel Curse from the tongue of Dawood and Isa Ibn Maryam This was done because they were disobedient and crossed the limits and were shunned from evil deeds They used to do it, they didn’t stop each other Without a doubt he used to do bad things, you were one of them You will see many people making friendship with infidels we keep what they have sent forward The bad thing is that Allah is displeased with them And they will forever abide in torment, and If he relies on Allah and the Prophet and on the They believed in what the Book was revealed to them then don’t make these people friends but They are mostly bad characters, O Prophet You will see that most of all with Momin The enemies are Jews and polytheists and In terms of friendship, he is closer to Momin than You will find people who say we are addicts This is because among them there are scholars as well as drinkers and that this Takbbal listen to the book which this prophet When it was revealed to Muhammad (peace be upon him) then you You can see tears flowing from their eyes They go because they have recognized the truth I took this and I prayed to Allah Yes, O God, we have believed in you, so you Write it down among those who believe in us and what do we care it happened that on Allah and on the truth It has come to us but we don’t believe it and we are hopeful that our God keeps us virtuous He will enter Paradise along with his servants Allah rewarded him with the title of Paradise for saying this. Please grant me gardens beneath which canals flow it will always be in them and neku cars This is the reward for those who have disbelieved and rejected Our verses, or he Hell is for the believers who are pure in their ways have made them halal for you, not haram for them Do it and do not exceed the limits because Allah will not exceed the limits He does not keep friends who grow up and who Allah has provided you with halal and worthy livelihood Eat of it, and believe in Allah Be afraid of Allah, your unintentional oaths But from you Mukhajjiya So his Kaffara is mediocre to 10 Nader You have to feed your family Do you feed them or give them clothes or a slave? to set free and he who does not have this Keep three fasts, this is the expiation of your oath is when you make an oath and break it and Protect your oaths like this Allah open up Your verses for you to understand He explains it openly so that you may be grateful O you who believe, wine and gambling and idols and dice All these evil deeds are from the devil Avoid them so you can be successful The devil wants that people should indulge in alcohol and gambling. The reason is enmity and hatred among you and keep you away from the remembrance of Allah and If he stops you from praying then will you do these things? You will refrain from this and be obedient to Allah and keep obeying the Rasool and keep fearing him now if If you turn your face away then know that our Prophet It was his responsibility to just deliver the message It is to be given to those who have faith and do good deeds There is no blame on them for the things that they ate while they abstained and Believed and did good deeds, then abstained And they believed, then they abstained from sin and did good deeds And Allah keeps good cars as friends Believers are not the prey of any person whom you You can attain Allah with your hands and arms He will test you i.e. your state of ihraam I am hunting with the intention of finding out that who is afraid of him so that after that If he commits excesses then it will be painful for him O believers, the punishment is ready when you enter Ihram Do not kill any animal if you are capable of doing so And whoever of you kills him intentionally, or So give him recompense and that is that in the same way quadruped which two of you die decide, make a sacrifice and this Should the sacrifice be taken to the Kaaba or should it be offered as Kaffara and Is he going to feed the poor or Keep regular fasts so that you can get retribution for your deeds enjoy it and whatever has happened before has been taken by Allah has been forgiven and whoever does such a thing again Allah will take revenge from him and Allah is Ghalib He is going to take revenge for you Hunting and eating river animals it has been made halal, that means between you and For the benefit of travelers and for the protection of the forest prey on things as long as you are in the state of ihraam It is forbidden for you and whoever has been forbidden by Allah You will all be gathered near you, fear Allah opened the house of honor i.e. Kaaba for the people They have made the stay a tough one and the month of respect and the sacrificial animal and those animals those who have leashes tied around their necks, this is because You must know that whatever is in the heavens and whatever some is in the earth, Allah knows everything, and That Allah has knowledge of everything Remember that Allah is severe in punishment, and That Allah is Forgiving and Merciful The Prophet is only responsible for the message and whatever you express and whatever you do you despise Allah I know everything, tell me about the impure things and the pure Things are not equal even if they are impure If you like exercise then wise people fear Allah so that you may succeed Momino don’t ask questions about such things that if their reality was revealed to you if you go then you will feel bad and if you You will ask such questions in the dimension of being revealed Then it will be made clear to you now Allah has forbidden us from asking such things. He has said and Allah is Forgiving There have been many such conversations between people before you had also asked but when it was told then he Allah turned away from them, nor did any one give It has been decided and there is no other There is no way and no supporter but a kaafir They attribute lies to Allah and this often leads to intellect they don’t use it and when told to these people It is said that the book which Allah has revealed He has said to turn towards him and the Prophet if you do then they say that the way we have followed our We have found BapDada and that is enough for us If their fathers and grandfathers don’t know anything, Even if you are not on the right path, O believers Be careful when you are on instructions If someone is misguided then do something to harm you I cannot return you all to Allah At that time you have to go, he will give you all your He will warn you about the deeds you have done in the world And the believers will repay them when one of you If someone’s death is near then the rule of martyrdom This is that at the time of the will you are among the Muslims two men, Adil i.e. Sahib-e-Tabar, should be witnesses Or if you cannot find any Muslim and you are travelling And at that time the danger of death may arise upon you. If yes, then two persons of other religion should be called as witnesses Do it if you have any concern about those witnesses If there is any doubt then they should stand after Asr prayer Do it and both of you swear in the name of Allah that we We will not take any revenge for our martyrdom We are relatives and not the martyrdom of Allah If you do this, you are guilty then if it is known that both of them If someone commits a crime by telling a lie then He wanted to usurp the rights of the people In their place stood two more men who were dead You keep your distance from Allah and then Let us swear by our martyrdom on their martyrdom It is very true and we have not done any exaggeration that if this has been done then we are unjust very close to the way these guys are right Give up your life or fear the fact that our The oaths were also cancelled after they were taken and fear Allah and His deeds Listen carefully and obey Allah He does not instruct me to remember that day The day when Allah gathers the prophets is worthy and then he will ask them what do you I got the reply that he will request us to do something I don’t know that you are aware of the things of the unseen is when Allah says to Isa that O Isa son of Mary, remember my favors I did this to you and your mother When I asked Ruhal Qudsai Jibraeel about your You helped me in my lap and even though I was young I was the same used to chat with people on the phone and when I have given you the Book and the grain and the Torah, and I taught you the Bible and when you obey my command make the shape of a bird out of clay and then If they used to blow, they would do it on my orders would have become a real bird and born To the blind and to the one suffering from my disease They used to cure diseases and make the dead alive by giving orders They would bring him out of his grave alive and make him stand When I touched the hands of Bani Israel to you Stopped when you got them open scars When they brought it, those who were infidels amongst them began to say, that it was open and when I saw it he sent an order to me and my Have faith in the Prophet, they started saying that O God, we believe in you, remain a witness that We are obedient, remember that incident too when Hawar said: O Isa ibn Maryam Can your God do this so that we But send down the food from the sky He said, if you have faith then fear Allah He said that it is our wish that we eat of it and find satisfaction in our hearts, We know that you have told us the truth and we On the arrival of that Khan, Isa Ibn Maryam prayed: O our Lord, But please send down the king from the sky that our For that day became Eid i.e. our next day And for the rest, and that is a sign from you and give us sustenance and You are the best sustenance Allah is the giver, He said I am upon you Certainly the food will be revealed but whosoever Then whoever disbelieves amongst you will be punished with such a punishment I will give such punishment to someone in the world I will not give it and also remember that time when May Allah say: O Isa ibn Maryam what You told the people that there is no one except Allah Make me and my mother your God He will say that you are pure, when did I ever know that that I would say something to which I have no right no, if I said that you would You will know because what is in my heart You know him and what is in your heart I do not know, of course you are Alam-ul-Guyu I did not say anything to him except the one whose You commanded me that you are Allah pray to that which is mine and yours is God and as long as I am in them I kept you informed about the situation when you If you take them away from this world, then you are their caretaker and you are aware of everything if you tell them If you punish them then these are your servants and if If you spare them, it will be your kindness because You are the most powerful and wise, Allah Say that today is the day when the truth will be revealed Only truth will benefit them, there is a garden for them beneath which canals flow forever They will continue to live there. Allah is pleased with them. And they are happy with Allah, that is the biggest Success is the sky and the earth and whatever In both, Allah has sovereignty over all and He is capable of everything, O Allah In the name of the most kind and merciful All praise is for Allah who created the heavens and the earth, and Created darkness and light but still the infidel is the second Considering celebrities as equal to their God They say that it is He who has turned you into dust Created from a then fixed a time to die I did it and a period of time was fixed for him to say yes and Yet you infidels have doubts about this and in the sky and on the earth there is only one Allah So it is yours, hidden and manifest. knows things and the work you do The most aware and of the signs of Allah No sign comes to these people from But they turn their back on it when their When the right came to him, he denied it as well So they love those things that make them laugh Are you close? Will you know the outcome? They did not see that we had done this before them How many communities were destroyed whose He had established his feet in the country in such a way that your feet should not be planted like this and on them It rained continuously from the sky and created canals which was flowing beneath their houses then They were destroyed for their sins, and After him you created another Ummah and O Prophet If we write something on you on paper He would send down the writing and he would give it to her with his own hands Even if we probe, the infidels will say the same they tell him that this is clearly magic and say Why did the angels descend upon these prophets nothing happened that would confirm this and if we Had an angel descended, the work would have been decided If it goes then they would not even be given a price If We had sent an angel, he would have been send it in the same condition and whatever doubt this has now let’s do that and put them in the sub There would have been laughter with the prophets even before you Then there are those people who used to laugh at them The punishment for laughing has surrounded them Walk around the country and see what happens What happened to those who are saying that the sky and Tell me Allah whose is everything on this earth That he has bestowed mercy upon his pure race He has taken you all on the Day of Judgment in which There is no doubt that those who he has put himself at a disadvantage they do not believe and those creatures who I live in everything, it’s all his and he listens Do you know what I can say except Allah help someone else that he is the one the Creator of the heavens and the earth, and He gives food to everyone and himself takes food from someone he does not take food also tell me that this is for me I have been ordered to be the first to obey and that O Prophet you are not among the polytheists Happen Also tell me that if I pray to my God If I disobey, I will have to face the punishment of a big day The person from whom there is fear of the punishment will be averted on that day Allah bestowed great favour upon him said and this is open success and if If Allah brings you any hardship then There is no one to remove it except him and if If someone bestows blessings and relief, then there is no one to stop him He is not the one who is capable of everything and he He is the master of his subjects and he is the taunter Beware, ask them who is the best among all Whose martyrdom is justice, tell me it is Allah There is witness in me and in you and in this Quran has been sent down upon me, that through this to you and to anyone it can reach Should I warn you all about this? Will you be martyred? you say that there are other gods along with Allah O Prophet, tell him that I will not be martyred in this way Say that He is the only God and I associate with those whom you associate I am tired of the people to whom I gave the book He describes him, our Prophet, in this way You recognize me the way you recognize your sons Those who put themselves at a loss they do not believe and that person Who is more unjust than the one who has committed a crime against Allah lied or rejected His verses or something There is no doubt that the cruel people will not succeed And the day when we will gather all the people then You will ask the Mushrik whether he is your partner today Where are those whom you claimed No profit will be made and some money will be left behind I will have no choice but to swear by Allah that He is our Lord; we did not associate partners with Him Look at the lies they told about themselves and Whatever they used to do, they all used to do it with them It kept going and among them the eagles are such that pays heed to what you say and We have drawn veils over their hearts So that they cannot be understood and it becomes a burden on the ears I have given it to you that I cannot hear it and if all this Even if you see the signs, still don’t believe in them Even when you have an argument with me When they come to do it, those who are infidels say This is nothing but Quran and only the first people There are stories that they prevent others from doing this too and they themselves stay away but these things they destroy themselves with this and this thing I wish you could see them at that time When they will be made to stand at the edge of Hell and They would say, oh I wish I could return to this world again be given so that the verses of our Lord may be followed Do not argue and become a believer, yes this is Some things used to be hidden earlier but now they are revealed and even if it is returned to the world then they were forbidden to do those things He started doing the same thing again, there is no doubt that he is a liar and they say that our world’s this is life, this is life and we don’t believe in it later you will not be brought back to life and I wish you Look at them when they are facing their God will be made to stand in front of him, what should he say If this being alive again isn’t a good thing then I’ll say Why not swear by our God? It is absolutely right, may Allah say that now there is no disbelief in return for the tortures that they used to inflict in the world Taste the joys of those who have faced Allah Those who thought that attending was a lie incurred a loss Even when the serpent of doom is present upon them If it happens, we will exclaim, woe to that negligence regret what we said about doomsday and He carries the burden of his deeds on his back Look at the burden they are bearing it is very bad and the life of this world is a There is a game and a very good house in the end It is the home of Allah, that is for those who fear Allah Don’t you understand that I know it Prophet that the words of these infidels will not tell you anything It delivers but it is not your expectation But the wrongdoers do it according to the verses of Allah They deny it and the Prophets before you too If lies keep coming and going then he remains patient with the pain and suffering We kept doing this even to the point where they had our help and no one could understand the words of Allah is not going to change and you have to follow the prophets The news of the report has reached you too Be patient and if their behavior becomes If you are going through a tragedy then if you have the strength Find a tunnel in the ground or the sky look for a ladder in the house, then they have no Bring a miracle and if Allah wills, everyone I would have submitted to your instruction, so you are absolutely naive The thing is that only the one who doesn’t want to be in it accepts the truth those who listen and the dead So Allah will raise up the Doomsday itself and then will go back to that side and say that on them a sign from their Lord Why did it not appear, tell me Allah He is capable of taking down the signs, but often People do not know and those who walk on the ground a beast or a flyer They are birds too, they are collected like you people We have kept it in the book i.e. Loh Mahfooz I did not neglect to write the thing and then everything will be submitted to their Lord, and Those who rejected Our verses or They are deaf and dumb and also in the dark Whoever Allah wishes is lying astray let it be and guide whomever you want to the right path Tell me you infidels, if you look at me May Allah’s wrath come or may the doomsday arrive So in such a situation do you worship anyone other than Allah? Will you call someone else if you are honest then tell me No, but in times of trouble you rely on him When you call out, you call out to him for the pain for which he is Yes, if he wanted he could have removed it and whomever you make partners at that time You forget them and we have done it before you Then he sent a message to many Ummahs Due to their disobedience we treat them strictly And keep holding on to the problems so that I can comfort myself So when Our punishment kept coming upon them, why I did not keep bothering him, but his heart They had become strict and the work they did was like devils in their eyes Arasco which was done to them was forgotten So we opened the doors to everything for them. Even when what they were given was enough for them When he became happy, we caught the snake and He was left dejected at that time, People’s roots were cut off and all the praise Allah Rabbul Alameen is only for these Tell the disbelievers that look well, if Allah take away your ears and eyes and your If you put a seal on the hearts, then there is no one except Allah Which god is it that gives you these blessings? Look at the ways in which we explain our verses still these people do it and make noise they go and say that tell me well if it is on you Allah’s punishment comes without any knowledge or with the news If later anyone comes, except the cruel people There will be more destruction and we who believe in the Prophets They keep sending it to give good news and scare Then whoever has faith and is a righteous man If we go then such people will have no fear and nor will those who have forgiven us be sad The verses believed that they were lying due to their disobedience They will be punished, tell them that I will tell you He does not say that I have the blessings of Allah There are treasures and I do not know anything about them And I don’t tell you that I am an angel I only follow the orders that Tell me it is coming from Allah Well if the blind and the sighted are equal then Then why don’t you pay attention and those who We fear that we will face our Lord will be produced before him and know that his He will have no friend except The one who intercedes for them through this Quran advise him so that he becomes pious and who People pray to their God in the morning and evening and they crave his attention Do not take out from yourself the account of their deeds The responsibility is nothing but on you and your They have no responsibility for accounting Don’t do this, if you throw them out then you will be cruel You will become like this and in the same way we have made people I have tested the hawk that those who are rich Are these the people who say this about the poor are those on whom Allah has bestowed His favour among us Is Allah aware of those who are thankful? No, and when such people come to you from those who believe in Our verses Say Salamun Aleikum your Lord has given you his It has been made obligatory to bestow mercy upon the pure race that Whoever of you does any evil out of ignorance, Do something and then repent after that and If a righteous act is done, He is the most forgiving We are Merciful and thus do We reveal Our verses they explain it openly so that you may comment on them act and so that the path of the sinners Let it become clear, O Prophet, tell the unbelievers that Whom do you call besides Allah? It is also said that their worship is forbidden Let me follow your wishes I will not do this, if I do this I will get misled And tell me not to be among the guided people that I am based on the bright evidence of my Lord I am and you are demanding that thing which means You are in a hurry to punish me, Only Allah does not have such an order He is in the power to state the truth and he is the best judge Tell me what you are in a hurry for yes if it were in my power I would The decision would have been made between you and me and Allah is well aware of the wrongdoer and his he has the keys to the unknown which no one else but him can know Nobody knows and he is kept in the forests and rivers that I have knowledge of everything and no leaf but he knows it and the ground In the darkness, some grains and some green or dry There is no thing but the books are written in light and that is the condition which makes you sleep at night I capture your soul and who keeps track of everything you do during the day then it lifts you up so that this Continuing the series, I am going to live the life Let it be completed then all of you will move towards Him You have to go back, then he will punish you for your deeds I will tell you one by one what you keep doing and He is powerful over his servants and over you He keeps a watchman posted, even when one of you dies Our angels take possession of his soul and then don’t do any negligence On the Day of Judgement all people will be without their Lord You will be called back to Allah, listen Behold, the order is His and He will do so very soon He is going to take account, tell me good things about you in the jungles and who brings us out from the darkness of the rivers while you are harassing her and secretly You call out and say if Allah grants us this If He frees us from hardship, we will be very grateful to Him I am going through this crisis, I will tell you that only Allah can help you in that crisis and yet there is salvation from every difficulty You commit shirk with him say that he On top of this, nature also maintains that you have the power of the higher authority. Punishment from the side or from beneath your feet send it or divide you into two groups and one by pitting one against another and fighting among themselves Let us give you a taste of our verses and see who we are explain it in such a way so that these people understand and Although your community rejected the Quran It is my absolute right to say that I am yours I am not a police inspector, there is a time for every news It is fixed and you may know it closely and when you see people who Talking nonsense about Our verses if you are then separate yourself from them, even if they get busy with other things and if this thing If the devil forgets you then when he remembers you Don’t sit with cruel people and stay away from them There was nothing on the garos according to those people. no accountability yes advice so that he too be pious and those who have They have made it a game and a spectacle and are trying to make the world Life has deceived them Don’t do any work, yes through this Quran Keep advising so that on the Day of Judgment no one I was not thrown into hell as a punishment for my deeds On that day, no one will be with him except Allah There will be no friend and no recommender, If everything that If he wants to give Rueda then he may not accept it These are the people who are confused about their deeds They were thrown into the hell so there was something for them to drink There is boiling water and a painful torment Because we used to disbelieve, tell me what we Call upon anything other than Allah which is not can do us neither good nor bad and when we So what if Allah has shown you the right path? If we turn back then our life will become like this It should be an example like someone was kidnapped by Jinns in the jungle I may have forgotten and he is surprised And he should have some friends who can show him the way Call him over to me and tell him that The path is the one shown by Allah And we have been commanded that we became obedient to Rabbul Alameen and also that you should keep praying and fear Him, and He is the one to whom you will be deposited, He is the one who created the skies and the earth has created from and the day when He will say that If you do, then the end will befall you, his wish it is true and the day the trumpet will be blown Only he will be the king, the hidden and the visible He knows everything and he is the one who is the source, beware and that time is also worth remembering when Ibrahim said to his father Azar, Do you make idols into gods? I am watching I believe that you and your community are openly misguided and in this manner we will send Ibrahim to the skies and began to show the unknown things about the earth so that he Be among those who believe strongly, that is, when The night covered them with darkness A star was seen in Dhapana and started saying this my lord when he disappeared They started saying that if I was going to disappear I don’t like it when I see the moon shining So he said, this is my God But when he too hid himself then he said that if My god doesn’t show me the straight path then I’ll be among those who I am wandering and then when I saw the sun shining He said, this is my Lord This is the greatest but when that too is a curse When I went there people started saying that the things which you You make partners with Allah, I am fed up with them I have united myself with everyone and dedicated myself to that on the caste side Mutjens And when his community started arguing with him He said, “You are asking me about Allah. what are you arguing about, he told me straight and the things you You make him a partner, I am not afraid of them yes whatever my god wants God protects everything with His knowledge don’t you care what have you done I am free from those things which you associate with Allah. Why should I be scared when you are afraid of this We are not afraid of associating partners with Allah be for which he has not sent any certificate now Which of the two factions is peaceful and fearless? deserves more if you understand Tell me those who believed and have protecting faith from the oppression of shirk I want to raise the standards, of course Your Lord is wise and aware, We bestowed upon them Isaac and Jacob, and He gave instructions and had also given instructions to Noah earlier And from their descendants were Dawood and Solomon and Ayub and Yusuf and Musa and Haroon and Thus do We reward the righteous And Zakaria and Yaya and Isa and Ilyas all these were of Neku and Ismail and Ali and Yunus and Lut too and all these people were blessed with the world where he had bestowed blessings on the people and The eagle is loved by his forefathers, children and brothers of me and I had also blessed them and This was Allah’s straight path There is guidance on this, whomever among His servants whether they drive it or not and if they commit shirk then who The deeds he used to do all go to waste, this is him There were people to whom we gave the Book and the rulings of the Shari’ah And he had given the prophethood if these disbelievers If they deny things then we have faith in them Such people have been appointed to bring that he is never going to deny it They are the people whom Allah has guided So you should follow their instructions Tell me that I don’t want anything from you I ask this for the people of the whole world It is merely an advice and these people have When I didn’t know the value the way I should have He said that Allah has bestowed upon a human being And I did not reveal any book or anything else Say: The book which Moses brought with him Who had sent down the light for the people And there was guidance and that which you gave separately some parts of it are copied on the rocks you reveal some and often hide some yes and you were taught those things which you should not know You knew it, nor did your forefathers know it. 2 This book was revealed by Allah Then leave them to their nonsense I kept playing and so did this book, which We have nailed Babcock and who can be more cruel than him who blame Allah or say that it is against me The same thing has come, although nothing has come on it and who says that the kind of book Allah has sent me down in the same way I will make it and I wish you would save these cruel people i.e. Look at the polytheists when the time of death You are engrossed in friends and their angels Are you extending your hand towards me to take out your life? Today you will be punished with the punishment of humiliation Because you used to lie about Allah And they used to rebel against His verses, and We created you for the first time Just like this you came to us today all alone and the wealth We had bestowed upon you He left it all behind and we I want your recommendations with me too you don’t see those for whom you care He was your intercessor and our partner Today all your relationships are ruined and all the claims you made Surely it is Allah who keeps on taking away the grain and the kernel He is the one who tears them up and grows trees etc. brings out the living from the lifeless and that is This is the one that will bring life out of the lifeless So Allah exists then where are you wandering The one who tears the morning light from the darkness of the night and it is he who gives rest to the moose at night. and the sun and the moon as a means of calculation made it the prerogative of Allah The style is Ghalib’s, knowledgeable and He is the one who made the stars for you so that in the darkness of the forests and rivers Learn from them the path for the wise We have explained Our verses clearly and it is He who has united you with a person I then created a place for you to stay place and a delivery to those who understand for We have explained Our verses clearly and it is that which comes from the sky It rains and then it is we who make it rain All kinds of vegetables are grown from it Then they take out all the vegetable plants from it and those plants that are connected to each other they extract grains and from the dates’ core hanging bunches and vineyards and Olives and pomegranates which resemble each other These things are there and they are not there when they come to fruition on their fruits and when they ripen Look at them ripening, among them there are those people for those who believe in the power of Allah There are many signs and these people have He associated the Jinns with Allah, although He created them too and they don’t understand the lie His sons and daughters stood waiting for him that he is concerned with those things which are stated in relation to him He is pure and we glorify him with these things Exalted is He, the Creator of the skies and the earth Where will his child come from when Not only his wife but he also gave birth to everything he has done it and he is safe from everything, this is the ausaaf Allah is your protector There is no god except Him, He is everything If there is a creator then worship him And He is the overseer of everything; he is such that Eyes cannot recognize him, while he He understands the glances and he differentiates The one who knows is aware, O Prophet tell them Give that you have the blessings of your Lord If illuminating arguments have reached from the side Whoever saw them with open eyes, did good for himself and the one who remained blind, did it in his favor You did wrong and I am not your guardian and in this manner We repeat Our verses they explain it so that the infidels may not say that You have learned these things from the book And so that we can be present for those who understand And do whatever your Lord commands His advocacy comes to you from the other side Have no god except the Almighty And turn your back on the polytheists, and if Allah Had they wanted, these people would not have committed shirk and Prophet, We have appointed you as guardian over them. I did not do it and neither are you their inspector and Those who believe in this Mushrik other than Allah do not say bad things to them that this too Don’t misunderstand Allah by being disrespectful Saying this, we have recorded the deeds of every Ummah then you have done well in their eyes Let them return to their Lord Then he will tell them what he is They used to do this and these people were under the influence of Allah They swear strictly that if they have any If a sign comes we will surely believe in it Give me because all the signs are with Allah only and momin what do you know about this So such unfortunate ones are they that they have signs Even if they come, they still do not have faith and we If we turn our hearts and eyes upside down then it will seem like I did not believe in this Quran for the first time We won’t bring them again and we’ll leave them be we keep on getting carried away in our arrogance and if we Even angels and dead people could be brought down by them. They would start chatting and we would share all the things with them. Even if you were to bring it in front of me, still this faith We were not going to bring it but Allah wanted it The thing is, it’s often naive and Like the devil we have created humans and jinns That deception had made every prophet an enemy to give each other the love in our hearts I used to keep posting things that I had said and if you If god wanted he wouldn’t have done this Leave them and whatever they desire two and he used to do such things also so that People do not have faith in the afterlife, their hearts Be trustful of their words and they like them and started doing the same work he used to do Say: Am I any other judge besides Allah? I should look for you though she has clearly pointed you towards me I have sent a fun book and those who to whom We have given the Book, the Torah, and to whom We know that this is from your Lord It has been revealed so you should never doubt it Do not be among the people and your Lord that the words are full of truth and justice No one is going to change his words and he he listens, he knows, and often the people who live on the ground But they are happy, they are misguided if you follow their words If you believe then he will show you the path of Allah we will forget this just by following pride and Your arrows are just speculation The Almighty knows best those who have strayed from his path and from him too Those who are walking on the path are well aware the thing on which the name of Allah is mentioned at the time of Jabaah if you had faith in His verses if yes then eat it and what is the reason Whatever the name of Allah is invoked on, Do not eat it, although it contains many things They have declared each one of them haram for you of course they shouldn’t be eaten but in that condition that they have enough food You become ignorant and many people misunderstand Understanding people from the desires of your self There is no doubt that such people are being misled which is beyond the limits set by Allah Your God goes away very quickly and knows every kind of visible and hidden Give an argument about crime to those who commit crime He will almost certainly be punished for his deeds and Anything on which Allah’s name is not taken Do not eat it because eating it is a sin and Satan People keep this thing in their Rafi’s hearts to pick a fight with you and if you If people follow their word then of course you will too Whoever was dead first became a polytheist, then We brought him to life and gave him light through which he could move among the people roams around somewhere, he could be like that person who Lying in the dark and having to get out of it Similarly, the infidels who are practicing it cannot He seems good to them and hence Like this we have arrested the biggest criminals in every locality gave him a chance to keep doing deceit in it and Those dishonest people who do this, their loss is who has it and are unaware of it and when they have When a verse comes, they say that the kind of Risalah was given to the Prophets of Allah when Until we get the same kind of blessing Never will we believe in this, only Allah I know very well what is the chance for a prophet And to whom should He bestow His prophethood who People commit crimes against them in the eyes of Allah You will be subjected to humiliation and the punishment will be severe, therefore that if someone used to be dishonest then Allah wants his chest to give instructions He opens the door to Islam and gives freedom to whomever he wants to mislead him, his chest is tight and suffocated It seems as if he is climbing to the sky This is how Allah is to those who have faith you do not bring it, he sends punishment and this is your There is a straight path to God for those who are careful We are going to reveal Our verses for them I have openly stated it for them In the reward of good deeds, there is safety in the hands of God is his house and he is his friend and the day He will gather all the jinns and say Oh planet Jinnat you have done much better than humans If you gain benefits then what is in humans If there are friends they will say that God we are one kept gaining benefits from others and ultimately You arrived on time for us I had decided, may Allah bless you now The place is hell, you will burn in it forever But whatever Allah wishes is surely yours The Almighty is wise and aware, and so is We punish the wrongdoers for their deeds, which they we used to do it, we will make each other closer Is the tribe of jinns and humans yours? No prophet from amongst you has come near I would recite my verses to you and by your presence on this day They used to scare us by saying that God I confess my crimes and those people The worldly life had deceived me And now he himself has given testimony on himself that O Prophet, these prophets kept coming, they used to disbelieve And the books kept getting revealed so that Your Lord is not such that destroy them with oppression and make them live there people should not know anything and everyone Balha deeds are fixed and the work which is done in this People do this, Allah is not unaware of them and Your Lord is independent, Sahib There is a mercy, if it wishes, then O my servant, I can destroy you Do it, and after you whoever you want Make me your successor just like you Something created from other people’s races There is no doubt that the promise made to you will It is about to be completed and you are grateful to Allah You can’t tell people that you are in your place be implemented i would be implemented in my place I am close to you, you will get to know that There is some doubt whose home will be heaven in the end not that the mushriks will not succeed and this People are the things created by Allah Allah has a special place in agriculture and cattle decide your share and take care of yourself They say to the false that this part is from Allah and this is about our Shari i.e. idols which the part that belongs to their bodies is cannot go towards Allah and the part which It belongs to Allah towards their bodies can it be possible that these people give bad orders Similarly, many mushriks have their own body i.e. The devils killed their children has done well to put so that they Throw them into hell and punish them with their religion let them do evil and if Allah wills he If you don’t do that then leave them to find out And their lies and their thoughts also say this it is forbidden to breed cattle and farm it is No one should eat except the person whom We love, and The hawks are such that it is easy to climb on their backs It is forbidden and the cattle are so on whom the name of Allah is not mentioned while answering All this is a lie to Allah and they are close to him he will avenge their lies and also says that the child which is in the womb of these cattle It’s only for our men and our It is forbidden for women to eat it, and if she If a child is dead, everybody is a part of it That means both men and women can eat it and eat it close by. Allah will punish them for their suggestion Surely, He is wise; beware of Jin People foolishly mislead their children and boasting in Allah, he killed him He declared the given livelihood as haraam He who has fallen into loss is misguided without any good deed, and There is no guidance and only Allah is there who created gardens topped with umbrellas and also those which are not mounted on umbrellas and date palms and crops that bear various kinds of fruits and the olive and the pomegranate which are one in every respect resemble each other and many other things I don’t even get to see them when these things flourish Eat their fruits and the day you pluck the fruits and start farming If you cut it, pay its dues from that as well do not fly in vain because Allah will make you fly in vain He does not keep friends with the people and is fond of cattle Those who carry the burden, that is, big ones are also born and attached to the ground, that is even small ones So eat of the sustenance provided by Allah, and destroy the devil don’t follow in the footsteps of yours it is open These big and small cattle are enemies of eight types of animals There are two sheep and two goats Out of these, one is male and one is female Prophet, ask them what has Allah done for both of them? Have you declared the males as haraam or the females of both? or the child in the womb of the female If you are true, then tell me with proof and Out of two camels and two cows Ask them about them also that Allah has Have you declared the males of both haraam or both that to the females or the child in the womb of the females It is good for him when Allah gave you I ordered this, you were present at that time Now who is more cruel than the person who Lies are attributed to Allah so that the ignorant There is no doubt that people will be misled Allah Salim does not guide people Say that whatever deeds have been revealed to me, I Any thing among them which the eater can eat is haraam I cannot understand that it is a dead animal or the flowing blood or the pork meat that all this is impure or some sinful thing that on it took the name of someone other than Allah

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Drop Shipping Success Recipe – Study Notes

    Drop Shipping Success Recipe – Study Notes

    This text is a guide to starting a dropshipping business. It emphasizes finding a profitable product through market research and using tools like Shopify to create and market an online store. The guide covers branding, marketing strategies (including paid advertising and email marketing), and building a strong online presence. Success is framed as a combination of choosing the right product, using the right tools, and having a clear marketing plan. Finally, the text encourages viewers to take action and pursue their entrepreneurial goals.

    Drop Shipping Mastery: A Comprehensive Study Guide

    Short Answer Quiz

    1. What is the core concept behind drop shipping, and what is a key benefit for entrepreneurs?
    2. According to the source, why is Shopify considered a strong platform for drop shipping businesses?
    3. What are three qualities of a “winning product,” according to the source material?
    4. What is the “social media burner method,” and what is its purpose?
    5. What are two key elements to consider when validating a potential product?
    6. What are the three main types of online stores you can build according to the text?
    7. What is the “irresistible offer” formula mentioned, and how can it benefit a business?
    8. What are the three main streams of marketing that can be used for drop shipping?
    9. How does TikTok Shop function as a marketing tool for dropshippers?
    10. What is a “lead magnet,” and why is it important for email marketing?

    Answer Key

    1. Drop shipping is an e-commerce model where a seller doesn’t hold inventory; instead, they partner with suppliers who handle manufacturing and shipping directly to the customer. A key benefit is the low start-up cost, often only $50-$100.
    2. Shopify is considered beginner-friendly and low cost and offers numerous plug-and-play apps that simplify the process of setting up and running a drop shipping business. It also offers tools to optimize SEO.
    3. A winning product should have high demand, solve a problem or be evergreen, have a high perceived value, and provide a 3-5 times profit margin.
    4. The “social media burner method” involves creating a new TikTok account and engaging with drop shipping-related content to get inspiration and product ideas for your own store from the algorithm.
    5. Two key elements to validate a potential product are to check the product’s order volume to gauge demand and to review existing ratings and reviews to ensure it has good customer satisfaction.
    6. According to the text, there are three main types of online stores: niche stores, general stores, and one-product stores.
    7. The “irresistible offer” formula includes urgency and scarcity, selling the customers’ dreams/desires, and highlighting how the product solves a problem.
    8. The three main streams for marketing a product online are organic marketing, paid ads and email marketing.
    9. TikTok Shop allows drop shippers to partner with content creators who promote their products, and they are only paid a commission when they generate sales.
    10. A “lead magnet” is an incentive offered to potential customers in exchange for their email addresses, such as a product discount or free shipping. Lead magnets help businesses grow their email lists for future promotions.

    Essay Questions

    1. Analyze the key factors that contribute to success in drop shipping, as described in the source material. Consider product selection, branding, marketing, and business management.
    2. Compare and contrast organic marketing, paid advertising, and email marketing as strategies for drop shipping businesses. Discuss the benefits and drawbacks of each.
    3. Evaluate the role of Shopify and its various apps in facilitating the drop shipping business model. How do these tools help overcome potential hurdles?
    4. Discuss the importance of establishing a strong brand in the context of a drop shipping business. What are some specific strategies to develop brand awareness and customer loyalty?
    5. How does the source material suggest that dropshippers adapt to the trends and cultural shifts that may impact product demand? What strategies can businesses employ to remain competitive over time?

    Glossary of Key Terms

    Drop Shipping: An e-commerce model where the seller does not keep inventory but instead relies on a third-party supplier to ship products directly to the customer.

    Shopify: An e-commerce platform that allows businesses to create online stores and manage sales, designed to be user-friendly for drop shipping.

    Winning Product: A product that has high demand, solves a problem, has a high perceived value, and offers good profit margins.

    Social Media Burner Method: A technique for using social media platforms, like TikTok, to find product ideas by actively engaging with drop shipping-related content.

    Product Validation: The process of verifying a potential product’s demand and quality through methods like checking order volume and reviews.

    Niche Store: An online store that focuses on a specific category of products catering to a particular audience.

    General Store: An online store that sells a variety of products across different categories.

    One-Product Store: An online store that focuses on selling just one specific product.

    Branding: The process of creating a unique identity for a business, including its name, logo, and values, to connect with its target audience.

    Irresistible Offer: A sales technique that utilizes urgency, scarcity, and a focus on solving customers’ problems or fulfilling their desires to incentivize purchasing.

    Organic Marketing: Marketing efforts that do not involve direct payment, such as social media posts, content creation, and SEO.

    Paid Ads: Marketing campaigns where businesses pay to advertise their products or services, often through platforms like TikTok, Facebook, or Google.

    Email Marketing: The use of email to send promotional messages and newsletters to a list of subscribers, a strategy to engage with an audience for repeat sales.

    TikTok Shop: An e-commerce feature within TikTok where creators can sell products and partner with businesses to promote items and earn commissions.

    Lead Magnet: An incentive offered to potential customers, such as discounts or free content, in exchange for their email address and other contact information.

    Dropshipping Business Guide

    Okay, here’s a detailed briefing document summarizing the key themes and ideas from the provided text, along with relevant quotes:

    Briefing Document: Dropshipping Business Guide

    Executive Summary:

    This document analyzes a source offering a comprehensive guide to starting and scaling a successful dropshipping business. The source emphasizes the low-cost entry, potential for high-profit margins, and crucial steps involved, including product selection, branding, marketing, and leveraging the right tools. The core message is that with the right mindset, knowledge, and execution, success in dropshipping is achievable for anyone willing to put in the effort.

    Key Themes & Ideas:

    1. Dropshipping as a Viable E-Commerce Model:
    • Low Barrier to Entry: Dropshipping is presented as a cost-effective way to start an e-commerce business, contrasting sharply with traditional startup costs: “the average startup cost for a new business is $40,000 but you can get started with drw shipping right now for only $50 to $100.”
    • Simplified Logistics: The dropshipping model eliminates the need for inventory management and shipping: “you can sell ready-made products without holding any inventory or handling shipping…you just have to Market it and set up a channel to sell it.”
    • Market Size & Growth: Despite competition, the market is substantial and growing: “the global Drop Shipping Market is valued at $350 billion the industry is not oversaturated it is growing.”
    1. The Importance of Product Selection:
    • Winning Product Criteria: The source outlines key characteristics of a profitable dropshipping product: “there needs to be a market for the product you’re selling…is it in demand and will it be profitable…solve a problem…can be sold year round, have a high perceived value have a wow factor and make 3 to five times profit margins.”
    • Product Examples: The source provides examples of potentially successful products, like posture correctors, resistance bands, and pet grooming kits, and advises avoiding fragile or easily malfunctioning items.
    • Product Research Methods:Social Media Method: Using social media to identify trending products through targeted searches and engagement. “create a new Tik Tok account and search for keywords such as # Tik Tock made me buy it # 50% off or # Tik Tock shop like follow and comment on videos about Drop Shipping for 30 minutes straight then your feed will be full of Drop Shipping products.”
    • Shopify App Analysis: Using apps like Zendrop to filter products by criteria like price and location.
    • Competitive Analysis: Using platforms like dropship.io to identify successful dropshipping companies and validate product choices.
    • Validation Checklist: The source stresses the importance of validating a chosen product: “check the product’s order volume…check Shopify and other reviews to make sure the product has at least a 3.5 star rating…Source your product from a reliable seller.”
    1. Leveraging Shopify for Business Operations:
    • Platform Recommendation: Shopify is presented as the ideal platform due to its user-friendliness and cost-effectiveness: “there is no better platform more more equipped for Drop Shipping than Shopify it is super beginner friendly and lowcost.”
    • Shopify’s Tools and Resources: Shopify’s suite of apps, SEO optimization, and free trial are highlighted as beneficial for dropshippers.
    • Store Types: The guide explains the options for store structure: niche, general, or one-product stores, recommending one-product stores as very simple to start and scale.
    • Website Enhancements: Adding content to your website, such as lifestyle photos, UGC, and testimonials, will make the website feel more authentic, and tools like Instafeed, Vitals, Reviews and Bundles, as well as Shopify Collabs are recommended for optimizing customer experience.
    1. Branding and Customer Engagement:
    • Importance of Branding: Clear branding is essential for long-term success, involving clarifying the problem the product solves, creating emotional connection and identifying your brand tone.
    • Branding Tools: The guide recommends using brand archetype quizzes, Mystory Brand.com, and Shopify’s free logo builder (Hatchful).
    • Content Marketing: Creating authentic content like lifestyle photos, UGC, and testimonials to create connection with potential buyers.
    1. Sales and Marketing Strategies:
    • The “Hot Dog Stand” Analogy: This example illustrates the importance of demand and a compelling offer: “if people are hungry they will buy whatever food is around…he won’t need to convince people to buy his product if he is surrounded by people who need what he has and he has an irresistible offer.”
    • Irresistible Offer Formula: Using urgency, scarcity, selling the dream and desire, selling the solution and not just the product are key elements to an offer.
    • Marketing Channels: Organic content, paid ads, and email marketing are presented as the main marketing avenues for a dropshipping business.
    • Social Media Strategy: Utilizing platforms like TikTok, Instagram, and TikTok shop to reach your target demographic.
    • Paid Advertising Tactics: Utilizing TikTok Creator Center and Meta to research successful ads, and recommending scaling what works.
    • Email Marketing: Building and engaging an email list through lead magnets and regular newsletters is highlighted as an important element of marketing.
    1. Mindset and Continuous Learning:
    • Growth Mindset: The source emphasizes the importance of a positive and proactive mindset: “anything is possible you will get out of life what you believe you will…if you decide today that you are going to make this happen and you take the first step towards building your Drop Shipping Store you will make it happen and you will succeed.”
    • Continuous Improvement: The source emphasizes continuous learning and adapting: “in order to succeed in this industry you need to keep investing into your skills and knowledge.”

    Key Quotes:

    • “the global Drop Shipping Market is valued at $350 billion the industry is not oversaturated it is growing”
    • “the average startup cost for a new business is $40,000 but you can get started with drw shipping right now for only $50 to $100.”
    • “you can sell ready-made products without holding any inventory or handling shipping…you just have to Market it and set up a channel to sell it.”
    • “there is no better platform more more equipped for Drop Shipping than Shopify it is super beginner friendly and lowcost.”
    • “there needs to be a market for the product you’re selling…is it in demand and will it be profitable…solve a problem…can be sold year round, have a high perceived value have a wow factor and make 3 to five times profit margins.”
    • “create a new Tik Tok account and search for keywords such as # Tik Tock made me buy it # 50% off or # Tik Tock shop like follow and comment on videos about Drop Shipping for 30 minutes straight then your feed will be full of Drop Shipping products.”
    • “check the product’s order volume…check Shopify and other reviews to make sure the product has at least a 3.5 star rating…Source your product from a reliable seller.”
    • “if people are hungry they will buy whatever food is around…he won’t need to convince people to buy his product if he is surrounded by people who need what he has and he has an irresistible offer.”
    • “anything is possible you will get out of life what you believe you will…if you decide today that you are going to make this happen and you take the first step towards building your Drop Shipping Store you will make it happen and you will succeed.”
    • “in order to succeed in this industry you need to keep investing into your skills and knowledge.”

    Conclusion:

    The source provides a comprehensive and encouraging guide to navigating the world of dropshipping. The key takeaways are the accessibility of the model, the importance of strategic product selection, the necessity of a clear brand and a solid marketing plan, and the vital role of continuous learning and a positive mindset in achieving success. The source promotes a proactive approach, empowering individuals to take control of their business journey with readily available tools and resources.

    Dropshipping Success Guide

    Frequently Asked Questions About Drop Shipping

    1. What is drop shipping and why is it considered a low-cost e-commerce model?
    2. Drop shipping is an e-commerce model where you sell products without holding any inventory. You partner with suppliers who handle the manufacturing, packaging, and shipping directly to your customers. It’s low-cost because you don’t need to invest in large amounts of inventory upfront, reducing the initial financial risk compared to traditional retail businesses. Startup costs can be as low as $50-$100 compared to the average $40,000 for a new business.
    3. What are some key factors in finding a winning product to dropship?
    4. A winning product should have strong market demand, solve a problem or be an evergreen product, have a high perceived value, a “wow” factor, and high-profit margins (aim for 3-5 times cost). Avoid easily breakable or malfunctioning items like glass or electronics. It’s also important to validate your product through Shopify reviews and order volumes.
    5. How can I find trending or potentially successful products for dropshipping?
    6. Several methods can help you find good dropshipping products. The “social media burner method” involves creating a new social media account (e.g., TikTok) and engaging with content related to dropshipping. Social media algorithms will then show you trending products. You can also use Shopify apps like Zendrop to filter for winning products or use platforms like dropship.io to see which companies are currently making sales.
    7. Why is Shopify recommended as a platform for dropshipping?
    8. Shopify is recommended due to its beginner-friendly interface and cost-effectiveness. It offers numerous plug-and-play apps that simplify setting up and managing a dropshipping store. Shopify also has built-in SEO tools to optimize your product pages so they are seen by potential customers. Additionally, it provides tools for domain registration, currency, location, and language setups, payment gateways and shipping rates.
    9. What are the different types of online stores you can build for dropshipping and which performs best?
    10. You can build a niche store, a general store, or a one-product store. One-product stores are highlighted as performing very well because they focus on marketing and selling a single killer product, which can simplify operations and scaling.
    11. What are some important branding aspects to consider for a dropshipping business?
    12. Branding should clarify the problem your products solve, create an emotional connection with your target audience, and establish a consistent tone. You can use brand archetypes (like the lover, adventurer, or caregiver) to inform your branding and use free tools like my storybrand.com and Shopify’s Hatchful for logo creation. Filling your website with content, lifestyle photos, testimonials and user-generated content (UGC) is also very important.
    13. How do I create an irresistible offer and increase my sales?
    14. To create an irresistible offer, use urgency and scarcity tactics and sell the dreams and desires of your customers by framing your product as a solution to a problem rather than just selling a product. Offer incentives like package rates or buy-one-get-one promotions to encourage more purchases. The number one thing is to make sure that there is a market, a hungry crowd, who need the product you are selling.
    15. What are the key marketing strategies for dropshipping, and how do I use them effectively?
    16. The main marketing strategies are organic content, paid ads, and email marketing. For organic content, research viral videos and replicate their formula. Create hooks in the first three seconds of any video. For paid ads, use resources like the TikTok Creator Center and Meta ad library to identify top-performing ads. For email marketing, use lead magnets (like discounts or giveaways) to build your email list and send regular newsletters and promotions. Finally, don’t sleep on TikTok shop because it is a great way to partner with creators and pay them a percentage when they make sales.

    The Ultimate Drop Shipping Guide

    Okay, here is a timeline and cast of characters based on the provided text:

    Timeline of Main Events in Drop Shipping Guide

    • Present Day: The global drop shipping market is valued at $350 billion. The industry is described as growing, not oversaturated, but competitive.
    • Start of the Video/Guide: The video begins by highlighting the low cost to start a drop shipping business ($50-$100) compared to a traditional startup ($40,000).
    • Introduction of Drop Shipping: The guide defines drop shipping as an e-commerce model where the seller does not hold inventory or handle shipping, partnering with suppliers instead.
    • Emphasis on Shopify: Shopify is presented as the best platform for drop shipping due to its user-friendliness, low cost, and numerous apps.
    • Finding Winning Products: The guide emphasizes that the most crucial aspect is finding a winning product, which should be:
    • In demand and profitable.
    • Solve a problem or be evergreen.
    • Have a high perceived value and a “wow factor.”
    • Generate a 3-5 times profit margin.
    • Product Sourcing Methods: Several methods are suggested for finding winning products:
    • Social Media Burner Method: Using a new TikTok account to find trending drop shipping products.
    • Shopify Apps: Using apps like Zendrop to filter products.
    • Competitive Analysis: Using tools like dropship.io to see what is selling.
    • Product Validation Checklist: A checklist for validating a product is presented:
    • High order volume.
    • At least 3.5 star reviews on Shopify or other sites.
    • Sourcing from a reliable supplier.
    • Example Product Reveal: A cat grooming glove is revealed as an example of a good drop shipping product due to its affordability, profit potential, and customer satisfaction.
    • Importance of Tools and Systems: Having the right tools, mainly Shopify, to run the business smoothly is considered equally important as finding a good product.
    • Shopify Store Setup: The guide provides steps to set up a Shopify store, including buying a domain, setting currency, shipping rates, payment gateways, and policies.
    • Types of Stores: Three store types are discussed:
    • Niche store.
    • General Store.
    • One product store (recommended)
    • Branding: The guide emphasizes the need for a clear brand, focusing on the problem the product solves, emotional connection with the audience, and finding the right tone. Tools for branding are mentioned, such as:
    • Brand archetype quizzes.
    • mystorybrand.com
    • Shopify’s Hatchful logo builder.
    • Website Content: Filling the website with lifestyle photos, UGC, and testimonials to make it more authentic is considered important.
    • Website Apps: The guide suggests adding apps like Instafeed, Vitals, Reviews, Bundles, and Shopify Collabs.
    • AI Store Builder: The use of AI tools, such as Ecom King, to automate store creation is discussed.
    • Pop Quiz: A pop quiz is given to test the viewer’s knowledge on validating product demand.
    • Sales Advice: A “hot dog stand” scenario is used to explain that a good offer and demand are needed to make sales. The irresistible offer formula is then detailed:
    • Urgency and scarcity
    • Selling dreams and desires
    • Focusing on the problem the product solves.
    • Offering incentives.
    • Marketing Plan: Three main streams for marketing are covered:
    • Organic marketing (e.g., copying viral TikTok/IG Reels videos).
    • Paid ads (using TikTok Creator Center and Meta).
    • Email marketing (using tools like MailChimp and offering lead magnets).
    • Recap: The recipe for drop shipping success is recapped:
    • Finding a winning product
    • Utilizing Shopify’s tools
    • Establishing a clear brand
    • Creating an irresistible offer
    • Choosing a killer marketing strategy
    • Execution of the plan
    • Encouragement: The guide concludes with motivational messaging encouraging viewers to take the first step towards building their drop shipping store, emphasizing that success is possible.
    • End of Video: Chrisma Collins thanks the audience, encourages engagement, and mentions additional free resources on their YouTube channel and blog.

    Cast of Characters

    • Chrisma Collins: The host and presenter of the drop shipping guide. She provides expert advice and encouragement to viewers looking to start a drop shipping business. She also has a YouTube channel and blog with additional free resources.
    • Rachel: (Mentioned briefly) Rachel appears to be a content creator who has produced a video about the “top 10 products to drop ship,” likely within the same online space or network as Chrisma. Her video is recommended as a source for inspiration on product selection.
    • Unnamed Hot Dog Stand Owner: This character is used in an analogy to explain how to think about sales for a dropshipping store by highlighting the need for demand and a good offer.

    Let me know if you have any more questions or would like me to elaborate on any particular aspect of this!

    Dropshipping Success Guide

    Dropshipping is an e-commerce model where you sell products without holding any inventory or handling shipping [1]. You partner with suppliers who handle the design, manufacturing, packing, and shipping of products directly to your customers [1]. Your role is to market the products and set up a channel to sell them [1].

    Here are some key elements to consider when starting a dropshipping business:

    • Low Startup Costs: Dropshipping has low startup costs, potentially as low as $50 to $100, compared to the average startup cost of $40,000 for a new business [1].
    • Finding a Winning Product: It is crucial to find a product that is in demand, solves a problem, can be sold year-round, has a high perceived value, and can yield profit margins of 3 to 5 times [1].
    • Product Research: You can find product inspiration through social media, like TikTok, by searching for keywords such as #TikTokmademebuyit [2]. You can also use Shopify apps like Zendrop to filter winning products by price range and location [2]. Another method is to use platforms like drop ship.io to see what products other dropshipping companies are selling [2].
    • Product Validation: To validate a product, check the order volume, Shopify reviews (at least 3.5 stars), and source the product from a reliable seller [2]. Demand for a product may change over time based on trends or culture [2].
    • Shopify: Shopify is a beginner-friendly platform with numerous apps that simplify setting up a dropshipping business [1]. Shopify also helps optimize SEO [3].
    • Store Types: There are three main types of stores that can be built: niche, general, and one-product stores [3]. One-product stores can be simple to start and scale by focusing on one killer product [3].
    • Branding: Creating clear branding is important, which includes clarifying the problem your products solve, creating an emotional connection with your audience, and finding your tone [3]. Tools such as brand archetype quizzes, mystorybrand.com, and Shopify’s Hatchful logo builder can be helpful for building a solid brand [3].
    • Content: Fill your website with content including ready-made photos and videos as well as lifestyle photos, user-generated content (UGC), and testimonials [3].
    • Marketing: There are three main marketing streams: organic marketing, paid ads, and email marketing [4].
    • For organic content, research successful viral videos and use a hook in the first 3 seconds [4].
    • For paid ads, use the TikTok Creator Center and Meta to see top-performing ads in your niche [5].
    • For email marketing, use tools like MailChimp and offer incentives for people to sign up for your email list [5].
    • Irresistible Offers: To make your offer irresistible, use urgency and scarcity, sell the dreams and desires of customers, sell the problem that you solve for them, and provide incentives for buying more [4].
    • Tools and Apps: Use Shopify apps and tools like Instafeed, Vitals, Reviews, Bundles, and Shopify Collabs to find creators to work with [4]. You can also use AI tools like Ecom King store to automate store creation [4].

    To succeed in dropshipping, you need to invest in your skills and knowledge and take the first step towards building your store [5].

    Dropshipping Product Selection Strategies

    Product selection is a key element to succeeding in dropshipping [1, 2]. Here are some important considerations and strategies for selecting products, based on the sources:

    Finding a Winning Product:

    • It is essential to find a product that is in demand and will be profitable [1].
    • The product should solve a problem, be an evergreen product that can be sold year-round, have a high perceived value, and have a “wow” factor [1].
    • The product should have the potential for high profit margins, ideally 3 to 5 times the cost [1].
    • It is best to avoid products that are easily breakable, like glass, or prone to malfunctions, such as electronics [1].
    • Examples of good options include posture correctors, resistance bands, or pet grooming kits [1].

    Methods for Finding Products:

    • Social Media Burner Method: Create a new TikTok account and search for keywords like #TikTokmademebuyit, #50%off, or #TikTokshop. Engage with dropshipping videos by liking, following, and commenting. This will help you find product inspiration [2].
    • Shopify Apps: Use apps like Zendrop to filter winning products by criteria such as price range and location [2].
    • Spying on Competitors: Use platforms like dropship.io to identify successful dropshipping companies and the products they are selling [2].

    Validating Products:

    • Order Volume: High order volume indicates demand for the product [2].
    • Reviews: Check reviews on Shopify and other platforms to ensure the product has at least a 3.5-star rating [2].
    • Reliable Sellers: Source your product from a reliable seller such as Zendrop, AutoDS, or Spocket [2].
    • Trend Monitoring: Keep in mind that demand for a product may change based on trends or culture [2].

    Examples of Good Dropshipping Products:

    • The sources mention a grooming glove for cats as a good product because it is affordable, has high profit potential, and has high customer satisfaction [2].

    In summary, the key to successful product selection is identifying a product that meets a specific demand, is profitable, and can be sourced from a reliable supplier [1, 2].

    Shopify for Dropshipping

    Shopify is a key platform for dropshipping businesses, offering a variety of tools and features that can help you to set up and manage your online store [1, 2]. Here’s an overview of the platform, drawing from the sources:

    • Beginner-Friendly and Low-Cost: Shopify is designed to be super beginner-friendly and low-cost, making it accessible for those just starting out in dropshipping [1]. It is equipped with numerous plug-and-play apps that simplify the process of setting up a dropshipping store [1, 2].
    • Essential for Dropshipping: The sources state that Shopify is the best platform for dropshipping [1]. It is a platform that can be leveraged to get business operations running affordably [2].
    • Shopify Apps: Shopify has thousands of apps that make setting up a business easier [2]. Apps like Zendrop can help filter out winning products by price and location [2]. Other useful apps include Instafeed, Vitals, Reviews, and Bundles [3, 4]. Shopify Collabs can help to find creators to work with [4].
    • SEO Optimization: Shopify assists in optimizing SEO directly on your product pages, which helps improve visibility in search results [3]. This is important for getting your pages seen by potential customers [3].
    • Setting Up a Shopify Store: When setting up your store, you will need to buy a relevant domain through Shopify and use an extension like .shop [3]. You will also need to set your currency, location, language, shipping rates, payment gateways, and policies [3].
    • Free Trial: Shopify offers a free trial, which allows you to test out the platform [3].
    • Types of Stores: There are three main types of stores that can be built on Shopify: niche, general, and one-product stores [3]. One-product stores are simple to start and scale by focusing on one “killer” product [3].
    • Branding Tools: Shopify provides tools to help with branding, such as a free logo builder called Hatchful [3].
    • AI Tools: AI tools like the Ecom King store can help to automate store creation, including choosing a brand name, logo, and importing winning products [4]. However, adjustments should still be made as needed [4].

    In summary, Shopify is a comprehensive platform that provides essential tools and resources to help build, manage, and optimize a dropshipping store [1, 3].

    Dropshipping Branding Strategies

    Branding is a key component of a successful dropshipping business. Here’s a breakdown of branding strategies based on the sources:

    • Clarify the problem you are solving: Your brand should clearly communicate the problem your products are solving for your target audience [1]. This helps customers understand the value you offer.
    • Create an emotional connection: Build an emotional connection with your target audience to foster loyalty and engagement [1]. This can be achieved by understanding the needs, desires, and values of your customers.
    • Find your tone: Develop a unique tone for your brand that resonates with your audience [1]. Your tone can be playful, serious, informative, or any other style that fits your brand and products.
    • Consistency: Once you’ve established your brand, it’s crucial to stay consistent [1]. This helps people know what to expect from your store and builds brand recognition.
    • Adaptability: You may need to adapt and change your branding until you find the right fit [1]. Be open to refining your branding as you learn more about your target audience.

    Tools for Building Solid Branding

    • Brand Archetypes: Use a brand archetype quiz to determine what type of archetype your brand fits into, such as the lover, the adventurer, the caregiver, the jester, or the sage [1]. This helps to guide your brand’s overall message and personality. There are many free quizzes available online.
    • mystorybrand.com: This is an online template for building a solid brand [1]. It may provide a step-by-step process or helpful guidelines.
    • Shopify’s Hatchful: Use Shopify’s free logo builder, Hatchful, to create a clean and memorable logo [1]. A good logo is essential for brand recognition.

    Content for Your Website:

    • Ready-made photos and videos: Use ready-made photos and videos for your dropshipping products [1]. These can be provided by your suppliers.
    • Lifestyle photos: Add lifestyle photos of people using your product [1]. This helps customers see themselves using the product.
    • User-generated content (UGC): Include user-generated content such as testimonials and photos [1]. UGC adds authenticity to your brand.
    • Testimonials: Include testimonials from satisfied customers to build trust and credibility [1].

    By implementing these strategies, you can build a strong brand that resonates with your target audience and helps to differentiate you from competitors.

    Dropshipping Marketing Strategies

    Here’s an overview of key marketing strategies, based on the sources:

    • Three Main Marketing Streams: The sources identify three primary channels for marketing your dropshipping products: organic marketing, paid ads, and email marketing [1]. Depending on your product, target audience, and skills, you can use one or all of these methods [1].
    • Organic Marketing:
    • Content Creation: Research viral videos on platforms like TikTok and Instagram Reels, and replicate their formulas [1].
    • Hooks: Use a hook within the first 3 seconds of your videos to capture attention [1]. Keep viewers curious about your product to hold their attention [1].
    • Types of Content: Create videos yourself or hire creators to produce user-generated content (UGC) [1].
    • Influencer Partnerships: Partner with influencers to promote your products and build brand awareness [1].
    • Paid Ads:
    • TikTok Creator Center: Explore the TikTok Creator Center to view top-performing ads in your niche, including their conversion rates [1].
    • Meta Ads: Use the same strategy on Meta to find what works for your niche [1].
    • Campaign Scaling: When you find successful ad campaigns, repeat and scale them [1].
    • Outsourcing: If you have the budget, outsource ad management to agencies [1].
    • Email Marketing:
    • Tools: Use email marketing platforms such as MailChimp, Omnisend, or Yotpo to manage your email list [2].
    • Lead Magnets: Promote your email list by offering lead magnets such as product discounts, giveaways, contests, or free shipping [2].
    • Regular Communication: Send out regular newsletters and promotions to keep your list active [2].
    • TikTok Shop: The sources emphasize that TikTok Shop is a perfect marketing tool for dropshipping [2]. You can partner with creators and pay them a percentage of sales they generate [2].
    • Irresistible Offer Formula: To create an offer that entices customers [1]:
    • Urgency and Scarcity: Use limited-time offers or limited quantities to encourage immediate purchases [1].
    • Sell the Dream: Sell the desires and aspirations of your customers rather than just the product [1].
    • Problem Solving: Highlight how your product solves a specific problem [1].
    • Incentives: Provide incentives for buying more, such as package rates or buy-one-get-one-free offers [1].
    • The Hot Dog Stand Analogy: The sources use the analogy of a hot dog stand to illustrate two key factors in sales [1]:
    • Demand: A hungry crowd (demand) is the first requirement for sales [1].
    • Good Offer: The second requirement is a good offer [1]. If there is sufficient demand, you won’t have to convince people to buy your product, but an irresistible offer will enhance sales [1].

    By implementing a comprehensive marketing strategy that utilizes these various streams, you can increase your chances of success in the dropshipping industry.

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • 12 Inspiring Traits You’ll Only See in Exceptionally Humble People

    12 Inspiring Traits You’ll Only See in Exceptionally Humble People

    True humility is rare, and it’s often the quality that distinguishes remarkable individuals. In a world where boasting and self-promotion are prevalent, the truly humble stand out, not because they seek attention, but because they embody quiet strength and grounded wisdom. These are people who, while capable of impressive achievements, remain modest, compassionate, and empathetic in their interactions. They don’t chase accolades but instead cultivate values that uplift those around them, showing us that humility isn’t about thinking less of oneself, but rather about thinking of oneself less.

    Humble individuals are notable for their unwavering authenticity. They are comfortable with vulnerability, patient in the face of adversity, and able to find calm amidst chaos. These qualities make them exceptional in ways that are easy to overlook yet deeply impactful. Their humility often manifests in actions and choices that prioritize the well-being of others over their own egos. In doing so, they teach us invaluable lessons about resilience, acceptance, and compassion in ways that resonate far beyond words.

    The world could use more of their influence. With a blend of quiet confidence and unassuming grace, humble individuals remind us of the strength that lies in kindness and self-awareness. They make an indelible impression on those they encounter, inviting us to recognize that humility isn’t a limitation but a profound strength. Through understanding and embracing these traits, we can better appreciate the quiet impact of humility in our own lives and the lives of those around us.

    Keywords: true humility, grounded wisdom, quiet strength, compassionate, authentic individuals, resilient, unassuming grace, self-awareness

    Hashtags: #HumblePeople #InspiringTraits #TrueHumility #CompassionateLiving #SelfAwareness

    1 – They know how to let their guard down and get vulnerable.

    Humble people understand that vulnerability is a pathway to genuine connection. They aren’t afraid to express their feelings and acknowledge their struggles, recognizing that doing so opens doors to deeper and more meaningful relationships. This openness is a reflection of their security within themselves; they are not preoccupied with appearing perfect or invulnerable. Instead, they embrace their flaws and let others see their true selves. Such transparency fosters trust and allows others to feel safe and accepted, cultivating an environment of mutual support and understanding.

    Embracing vulnerability also enables humble individuals to grow. They are willing to share their journeys, including setbacks and personal growth, because they see these experiences as part of what makes them human. According to researcher and author Brené Brown, “Vulnerability is the birthplace of connection and the path to a meaningful life.” By being open, humble people not only enrich their own lives but also inspire others to live authentically, breaking down barriers of isolation and building bridges of compassion.

    Keywords: vulnerability, genuine connection, mutual support, authentic relationships, personal growth, self-acceptance

    Hashtags: #EmbraceVulnerability #AuthenticLiving #TrueConnection #SelfAcceptance #BuildingTrust

    2 – They’ve mastered the art of patience.

    Patience is a rare virtue in today’s fast-paced world, yet humble individuals excel at it. They understand that many things worth having require time and persistence, so they don’t rush outcomes or push others. By taking the time to listen and wait, they exhibit a calm resilience that stands out. This patience is often rooted in a broader perspective—they see beyond immediate desires and are willing to delay gratification for lasting rewards. Their steadfastness enables them to achieve their goals thoughtfully and deliberately, a trait that brings stability to their lives and those around them.

    Moreover, patience fosters a deep sense of appreciation for life’s journey. Humble people find joy not only in reaching milestones but also in each step that brings them closer to their goals. As author Joyce Meyer states, “Patience is not simply the ability to wait—it’s how we behave while we’re waiting.” This approach allows them to turn waiting into a time of reflection and learning, cultivating gratitude and peace within themselves and inspiring others to adopt a more mindful and patient outlook.

    Keywords: patience, calm resilience, broader perspective, delay gratification, thoughtful goals, mindful outlook

    Hashtags: #MasteringPatience #DelayedGratification #CalmResilience #LifeJourney #MindfulLiving

    3 – They manage to find inner peace in a hectic world.

    Amid the world’s chaos, humble people possess a unique ability to maintain inner calm. They are not easily swayed by external stresses, for they have developed practices that anchor them. This inner peace allows them to handle life’s challenges with grace, staying centered even when situations are far from ideal. They understand that peace comes from within and do not rely on outside validation to feel secure. As a result, they radiate a calm presence that others find reassuring, a quiet influence that subtly uplifts those around them.

    Their inner tranquility often reflects a deep acceptance of life as it is. Humble individuals know that some things are beyond their control, and they choose to focus on what they can influence. Philosopher Lao Tzu wrote, “He who knows that enough is enough will always have enough.” This wisdom is evident in how humble people live—they let go of unnecessary worries and embrace the present moment, finding contentment and strength in a fast-paced world. Their peace isn’t just personal; it becomes a source of inspiration for others to cultivate inner balance.

    Keywords: inner peace, grace under pressure, self-acceptance, tranquility, contentment, present moment

    Hashtags: #InnerPeace #GraceUnderPressure #Tranquility #PresentMoment #InspiredLiving

    Conclusion

    These first three traits exemplify the inner strengths that define humble individuals: vulnerability, patience, and inner peace. Each of these qualities allows them to connect deeply with others, stay resilient amidst challenges, and maintain a balanced perspective on life. Vulnerability fosters genuine bonds, patience nurtures growth, and inner peace enables them to remain steady in a world that rarely slows down.

    Humble people show us that by cultivating these strengths, we can bring more compassion, stability, and inspiration to our lives and the lives of those around us. Their qualities are reminders that true influence comes not from force or grandeur, but from quiet wisdom, resilience, and a commitment to living authentically.

    4 – They’re all about radical self-love.

    Humble people understand that true self-love isn’t about pride but about radical self-acceptance. They embrace every facet of themselves, knowing that acknowledging their flaws is just as important as recognizing their strengths. This self-acceptance is more than just superficial positivity—it’s a profound commitment to honoring themselves as they are. By practicing this form of self-love, they cultivate a sense of peace and inner stability that isn’t easily shaken. Their journey of radical self-love inspires others to look beyond the surface and nurture their self-worth from within.

    This genuine self-acceptance radiates outward, allowing them to empower others. When humble people practice radical self-love, they become role models, demonstrating that self-worth isn’t dependent on external validation. Their presence encourages those around them to drop their insecurities and embrace their own identities fully. As author and activist Audre Lorde once wrote, “Caring for myself is not self-indulgence, it is self-preservation.” Humble individuals live this truth, spreading positivity and fostering environments where everyone feels empowered to be themselves.

    Keywords: radical self-love, self-acceptance, inner stability, empowerment, self-worth, personal growth

    Hashtags: #RadicalSelfLove #SelfAcceptance #InnerStrength #Empowerment #BeYourself

    5 – They embrace diversity and go out of their way to encourage inclusivity.

    Humble people thrive in diversity, finding joy in learning from others’ unique experiences and backgrounds. Their curiosity and appreciation for different perspectives allow them to see the world through a wider lens, enhancing their empathy and understanding. This approach isn’t just about tolerating diversity—it’s about celebrating it. They recognize that embracing diverse viewpoints enriches their lives, opening doors to meaningful connections and deepening their sense of community.

    Inclusivity is a natural extension of this mindset. Humble people actively work to create spaces where everyone feels valued and heard. They go out of their way to ensure that all voices are welcomed, fostering environments of respect and collaboration. This commitment to inclusivity makes a lasting impact; others are encouraged to follow suit, creating a ripple effect of acceptance and unity. As Maya Angelou said, “We all should know that diversity makes for a rich tapestry, and we must understand that all the threads of the tapestry are equal in value.” For the humble, this belief is a guiding principle in all they do.

    Keywords: embrace diversity, inclusivity, empathy, community, respect, collaboration

    Hashtags: #EmbraceDiversity #InclusiveLiving #CelebrateDifferences #UnityInDiversity #RespectAll

    6 – They face conflict head-on and with ease.

    Conflict doesn’t intimidate humble people; they view it as an opportunity for growth and understanding. Rather than avoiding disagreements, they approach them with grace and empathy, aiming to find common ground and foster harmony. Their skill in navigating difficult conversations stems from a genuine desire to resolve issues, not to assert dominance or prove a point. This ability to confront conflict directly allows them to address misunderstandings effectively, fostering healthier relationships and creating spaces where communication flows freely.

    In managing conflict, humble individuals maintain a positive atmosphere by prioritizing empathy and respect. They listen actively and seek to understand the perspectives of all parties involved, allowing them to mediate with fairness and compassion. Their approach promotes a constructive resolution and often leaves others feeling heard and respected, which strengthens trust within their relationships. As Dale Carnegie emphasized, “When dealing with people, remember you are not dealing with creatures of logic, but creatures of emotion.” Humble people honor this truth, using their skills to create understanding and peace.

    Keywords: conflict resolution, empathy, constructive resolution, trust, respect, understanding

    Hashtags: #ConflictResolution #Peacemakers #EmpathyInAction #BuildingTrust #HarmonyInRelationships

    Conclusion

    The qualities of radical self-love, inclusivity, and skillful conflict resolution reveal the depth of humble individuals’ character. Their self-acceptance forms the foundation for an empowered presence that radiates positivity and inspires others to embrace themselves fully. Their commitment to inclusivity fosters a sense of belonging and unity, encouraging diversity in thought and experience. Meanwhile, their ability to handle conflict gracefully highlights their wisdom and maturity, setting an example of peaceful coexistence.

    Through these traits, humble people create a positive ripple effect that transforms their surroundings. By championing self-love, embracing diversity, and cultivating harmony, they demonstrate that true strength lies in empathy, acceptance, and resilience. Their influence extends beyond their actions, inspiring others to adopt these qualities and contribute to a world grounded in respect and understanding.

    7 – They’re Resilience Role Models.

    Humble individuals embody resilience in ways that set them apart. When faced with setbacks, they don’t merely recover; they use challenges as stepping stones toward growth and improvement. For them, adversity isn’t a barrier but a powerful teacher, helping them cultivate inner strength and adaptability. This perspective allows them to remain hopeful and motivated even in difficult times, transforming their struggles into opportunities for personal transformation. As philosopher Friedrich Nietzsche once said, “That which does not kill us makes us stronger,” and humble people live by this credo, inspiring others to do the same.

    Their resilience also serves as a beacon of hope to those around them. By openly sharing their experiences and lessons learned, they provide a powerful example of courage and perseverance. Their journeys of overcoming obstacles show others that setbacks are not the end but rather beginnings of new paths. This ability to rise stronger each time they fall instills confidence in those around them, reminding them that they, too, can navigate life’s challenges with grace and resolve. These resilience role models don’t just uplift themselves—they empower others to face their own struggles with renewed determination.

    Keywords: resilience, personal growth, adaptability, overcoming adversity, inner strength, inspiration

    Hashtags: #ResilienceRoleModel #StrengthInAdversity #OvercomeObstacles #PersonalGrowth #Inspiration

    8 – They truly try to bring about positive change in the world.

    Humble individuals are often driven by a deep-seated desire to make a meaningful difference. Their compassion fuels their activism, leading them to advocate passionately for causes that align with their values. Unlike those who seek attention, they focus on creating lasting change, often working quietly and persistently to help others. Their activism goes beyond mere words—they take action, aiming to build a more compassionate and just world. Their efforts demonstrate that genuine commitment to a cause can inspire others to contribute to positive change as well.

    Their approach to change-making is marked by humility and empathy. They do not impose their beliefs on others but instead lead by example, inviting others to join in ways that resonate with them. This gentle but persistent approach allows them to connect with people from all walks of life, creating inclusive movements that emphasize unity and shared purpose. As Mahatma Gandhi famously said, “Be the change you wish to see in the world.” Humble people embody this sentiment, showing that small, consistent actions can have a powerful impact on society.

    Keywords: positive change, activism, compassion, empathy, just world, lasting impact

    Hashtags: #PositiveChange #CompassionateLiving #HeartDrivenActivist #ChangeTheWorld #EmpathyInAction

    9 – They’re Lifelong Learners and always want to know more.

    A hallmark of humble individuals is their insatiable curiosity and dedication to lifelong learning. They view every day as a chance to expand their knowledge and explore new horizons, driven by a love of discovery rather than the pursuit of accolades. For them, learning is a journey with no finish line, and they embrace it with open hearts and minds. This commitment to growth keeps them engaged and adaptable, as they are always eager to gain fresh insights and skills, enriching their lives and the lives of those around them.

    This passion for learning is rooted in humility, as they understand that there is always more to know. They are open to being challenged and corrected, welcoming feedback as a means of growth. This mindset not only fuels their personal development but also creates a ripple effect, inspiring others to pursue knowledge with the same enthusiasm. As author and educator Alvin Toffler stated, “The illiterate of the 21st century will not be those who cannot read and write, but those who cannot learn, unlearn, and relearn.” Humble individuals exemplify this wisdom, embodying the spirit of curiosity and growth.

    Keywords: lifelong learning, curiosity, personal growth, adaptability, knowledge, self-improvement

    Hashtags: #LifelongLearner #CuriosityDriven #NeverStopLearning #GrowthMindset #KnowledgeSeekers

    Conclusion

    The qualities of resilience, activism, and a passion for lifelong learning showcase the deep, transformative influence of humble individuals. By embracing adversity with grace, they turn setbacks into growth, setting an inspiring example of strength and perseverance. Their commitment to positive change shows that humility and compassion can reshape the world, fostering a society built on empathy and respect. Additionally, their unending quest for knowledge reflects an openness to growth that keeps them—and those they inspire—continuously evolving.

    These traits encourage others to look within and cultivate resilience, compassion, and curiosity in their own lives. Humble people prove that true influence stems not from outward success or recognition, but from the quiet determination to grow, help, and learn. Through their example, they create a legacy of wisdom and strength, reminding us all that humility is not only a personal virtue but a powerful force for positive change in the world.

    10 – They Stay Zen in Life’s Wildest Moments.

    Humble people possess a remarkable ability to stay calm, even in the midst of life’s most chaotic situations. Their inner tranquility serves as a steady anchor, helping them manage high-pressure moments with poise and clarity. Rather than reacting impulsively, they take a step back, assess the situation, and respond thoughtfully. This level-headed approach not only aids in effective problem-solving but also sets a positive example for others. By maintaining composure, they bring a sense of stability and assurance to those around them, making them reliable sources of strength when the stakes are high.

    Their calm demeanor also enhances their leadership qualities. Staying centered allows them to make better decisions, even under stressful conditions, leading to more favorable outcomes. They understand that maintaining a balanced perspective in challenging times can shift the entire trajectory of a situation. As the Greek philosopher Epictetus once noted, “It’s not what happens to you, but how you react to it that matters.” Humble individuals embody this wisdom, reminding others that calmness is often the most powerful response to adversity.

    Keywords: inner tranquility, calm demeanor, effective problem-solving, poise, leadership, composure

    Hashtags: #StayZen #InnerCalm #CalmInTheStorm #LevelHeaded #StrengthUnderPressure

    11 – They’re always digging deeper into themselves.

    Humble individuals are deeply committed to self-discovery, constantly striving to understand themselves better. This journey of introspection is driven by a desire for personal growth and alignment with their values. They reflect on their choices, evaluate their actions, and seek to understand their strengths and weaknesses. Self-awareness is their guiding force, helping them navigate life with a clear sense of purpose and authenticity. By examining their inner worlds, they learn to align their behavior with their aspirations, fostering a sense of fulfillment and self-acceptance.

    This quest for self-discovery also allows humble people to engage more meaningfully with others. Their understanding of their own emotions and motivations gives them a unique perspective on the feelings and experiences of those around them. Their self-awareness fosters empathy, enabling them to build deeper connections and offer more thoughtful support. As Socrates famously said, “Know thyself.” Humble individuals take this advice to heart, using self-discovery as a foundation for continuous personal growth and more meaningful relationships.

    Keywords: self-discovery, personal growth, self-awareness, introspection, empathy, fulfillment

    Hashtags: #SelfDiscovery #KnowThyself #PersonalGrowth #InnerJourney #Authenticity

    12 – They love lifting people up.

    One of the most inspiring qualities of humble people is their desire to uplift others. They have an eye for potential, recognizing the unique strengths and talents of those around them. By offering encouragement and support, they help others build confidence and pursue their aspirations wholeheartedly. Humble individuals understand that empowering others benefits everyone; when one person shines, it elevates the whole community. This selfless commitment to others’ success demonstrates their genuine belief in shared growth and collective progress.

    Their support is more than just words—they actively help others achieve their goals by offering guidance, resources, or simply a listening ear. Humble people take joy in the achievements of others, seeing them as moments to celebrate rather than compete. This approach builds a culture of mutual respect and cooperation, where people feel valued and motivated. As Booker T. Washington observed, “Those who are happiest are those who do the most for others.” Humble individuals live by this principle, finding happiness in helping others reach their fullest potential.

    Keywords: uplift others, encouragement, shared growth, collective progress, mutual respect, empowerment

    Hashtags: #LiftOthers #Empowerment #Encouragement #CelebrateSuccess #SupportEachOther

    Conclusion

    The qualities of staying calm, seeking self-discovery, and uplifting others illustrate the profound depth of humble individuals’ character. Their ability to remain centered in difficult situations demonstrates a resilience that is both inspiring and reassuring. Their journey of self-awareness enables them to live authentically and engage deeply with others, enhancing their empathy and sense of purpose. And through their unwavering support for others, they foster a culture of collective success and shared joy.

    In embodying these qualities, humble individuals leave a positive impact that resonates far beyond their immediate actions. By staying calm, reflecting deeply, and lifting others up, they show that true strength lies in self-mastery, compassion, and service. These traits remind us that the path to personal fulfillment and societal progress is often paved by those who lead quietly, with grace and humility.

    Conclusion

    The qualities displayed by exceptionally humble individuals reveal the profound influence they have on both personal and social levels. From their resilience in the face of adversity to their dedication to lifelong learning, these individuals exemplify traits that inspire growth, compassion, and unity. Their vulnerability, patience, and inner peace serve as pillars of strength, while their commitment to self-discovery and self-love fosters a deep sense of authenticity. They create inclusive spaces, championing diversity and lifting others up, showing that true success is collective and inclusive.

    In a world that often values outward achievement, humble people remind us of the power of inner character. Their ability to stay calm in turbulent times, advocate for positive change, and empower those around them is a testament to the lasting impact of humility. By embodying patience, empathy, and dedication to self-improvement, they lead with quiet strength and influence others through example. Ultimately, their lives serve as powerful reminders that true greatness lies not in self-promotion but in uplifting others, nurturing authentic connections, and contributing to a world grounded in kindness and mutual respect.

    Bibliography

    1. Brown, Brené. Daring Greatly: How the Courage to Be Vulnerable Transforms the Way We Live, Love, Parent, and Lead. New York: Gotham Books, 2012.
      In this book, Brown explores vulnerability as a pathway to authenticity and connection, highlighting how humility and self-acceptance play essential roles in building meaningful relationships.
    2. Carnegie, Dale. How to Win Friends and Influence People. New York: Simon & Schuster, 1936.
      Carnegie’s classic work on interpersonal skills underscores the power of humility, empathy, and encouragement in fostering positive relationships and influence.
    3. Collins, Jim. Good to Great: Why Some Companies Make the Leap… and Others Don’t. New York: HarperBusiness, 2001.
      Collins examines why certain leaders excel by prioritizing humility and resilience over personal ambition, revealing the effectiveness of humble leadership in achieving sustainable success.
    4. Covey, Stephen R. The 7 Habits of Highly Effective People: Powerful Lessons in Personal Change. New York: Free Press, 1989.
      Covey’s influential book presents principles of personal integrity and self-mastery, emphasizing the importance of self-reflection, humility, and lifelong learning for personal and professional growth.
    5. Dweck, Carol S. Mindset: The New Psychology of Success. New York: Random House, 2006.
      Dweck explores the concept of a growth mindset and how embracing challenges with humility and openness to learning can foster resilience, self-improvement, and success.
    6. Goleman, Daniel. Emotional Intelligence: Why It Can Matter More Than IQ. New York: Bantam Books, 1995.
      Goleman’s seminal work on emotional intelligence demonstrates how self-awareness, empathy, and emotional regulation are integral to effective leadership and personal fulfillment.
    7. Hanh, Thich Nhat. The Miracle of Mindfulness: An Introduction to the Practice of Meditation. Boston: Beacon Press, 1975.
      Thich Nhat Hanh’s guide to mindfulness highlights the importance of staying centered and calm, teaching readers how self-awareness and mindfulness can lead to inner peace and resilience.
    8. Hollis, James. What Matters Most: Living a More Considered Life. New York: Gotham Books, 2009.
      Hollis’s reflections encourage readers to pursue self-awareness and purpose, advocating for a life led by introspection, humility, and personal integrity.
    9. Keltner, Dacher. The Power Paradox: How We Gain and Lose Influence. New York: Penguin Press, 2016.
      Keltner examines how true power arises from qualities like humility, empathy, and generosity, revealing how these traits foster lasting influence and respect.
    10. Sinek, Simon. Leaders Eat Last: Why Some Teams Pull Together and Others Don’t. New York: Portfolio, 2014.
      Sinek explores how humility and empathy are foundational to effective leadership, particularly in creating inclusive and supportive environments that enable others to thrive.
    11. Tolle, Eckhart. The Power of Now: A Guide to Spiritual Enlightenment. Novato: New World Library, 1997.
      Tolle’s teachings emphasize the value of presence, inner peace, and self-awareness as pathways to a balanced, fulfilling life, essential qualities for staying centered amid life’s challenges.
    12. Williams, Thomas Chatterton. Self-Portrait in Black and White: Unlearning Race. New York: W.W. Norton & Company, 2019.
      In this memoir, Williams reflects on identity, empathy, and self-discovery, shedding light on the role of humility and introspection in understanding oneself and others in a diverse world.
    13. Wilkinson, Richard, and Kate Pickett. The Spirit Level: Why Greater Equality Makes Societies Stronger. New York: Bloomsbury Press, 2009.
      Wilkinson and Pickett explore how social equality and inclusivity contribute to a stronger society, reinforcing the importance of empathy, humility, and communal support.
    14. Zinn, Jon Kabat. Wherever You Go, There You Are: Mindfulness Meditation in Everyday Life. New York: Hachette Books, 1994.
      Kabat-Zinn’s introduction to mindfulness illustrates how maintaining a sense of calm and clarity in chaotic moments enhances resilience and inner peace.

    These resources provide valuable perspectives on humility, resilience, self-awareness, leadership, and personal growth, enriching readers’ understanding of these qualities and their impact on personal and societal levels.

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Al Riyadh Newspaper, March 17, 2025 Social & Cultural Reports, Economic News, International & Sports Updates

    Al Riyadh Newspaper, March 17, 2025 Social & Cultural Reports, Economic News, International & Sports Updates

    These articles primarily cover recent developments and initiatives within Saudi Arabia, alongside some international news. Domestically, the focus includes the Kingdom’s economic growth and diversification efforts aligned with Vision 2030, such as rising credit ratings, development projects, and the launch of architectural and cultural initiatives. Social and religious aspects are highlighted through the opening of Ramadan exhibitions, the renovation of historical mosques, and efforts to support pilgrims. International news touches on the conflict in Gaza, US strikes against Houthis in Yemen, and global economic trends, including oil prices and inflation.

    Saudi Arabia’s Vision 2030: Economic Development Strategies

    The sources highlight several economic development efforts and strategies in Saudi Arabia.

    Vision 2030 is a central framework for economic development, aiming to create a thriving society with a vital economy. This vision emphasizes sustainable development and involves large-scale investments in basic infrastructure, industrial and service facilities. The goal is to reach a prosperous society and a dynamic economy by 2030, creating a suitable environment for citizen employment, nurturing talents, and capitalizing on significant investment opportunities.

    A key aspect of Saudi Arabia’s economic development is the diversification of the economy, particularly by growing the non-oil sector. This diversification is aimed at balancing the risks associated with reliance on oil revenues. The Kingdom is undertaking an economic transformation that requires a focus on diversification, increased innovation, and integration with global markets to achieve its goals.

    Efforts to improve economic performance are expected to positively impact the quality of life. This includes investments in infrastructure such as transportation and housing, as well as reforms in the health and education sectors. These reforms are intended to support sustainable development, enhance global competitiveness, and develop human resources.

    Saudi Arabia’s high credit rating is seen as a factor that strengthens its position as a reliable investment destination, thereby enhancing its role as a key economic center in the region. The stable future outlook for the Kingdom’s credit rating reflects the ongoing progress in economic and social development, as well as the expanding non-oil sector and increased local capital formation.

    Initiatives are also in place to support small economic opportunities. The “Basta” initiative, in partnership with the Ministry of Municipal and Rural Affairs and Housing and regional municipalities, aims to support and empower street vendors by organizing and licensing designated locations and providing training programs. This initiative seeks to support eligible categories, including beneficiaries of social security, by providing sustainable small economic opportunities and supporting micro and very small projects.

    Furthermore, the potential development of the Al-Rossen League clubs in the Al-Kharj region is anticipated to bring significant economic, social, media, and cultural momentum to the area, suggesting a focus on leveraging sports for broader development.

    The sources generally portray a concerted effort towards economic development in Saudi Arabia, guided by Vision 2030 and encompassing diversification, strategic investments, and support for various levels of economic activity.

    Saudi Arabia’s “A+” Credit Rating: Impacts and Factors

    Saudi Arabia’s credit rating has been a significant aspect of its recent economic landscape, with several notable developments highlighted in the sources.

    Recent Upgrades and Current Rating:

    • Standard & Poor’s (S&P) raised Saudi Arabia’s credit rating to “A+”. This rating applies to both local and foreign currencies and comes with a stable future outlook.
    • This “A+” rating is considered a high grade by S&P, indicating that Saudi Arabia possesses high creditworthiness. The next higher rating from S&P is “AA-“, with “AAA” being the highest possible.
    • It is worth noting that S&P is one of the three major international credit rating agencies, along with Moody’s and Fitch, that provide impartial credit assessments.

    Positive Impacts of the Credit Rating:

    • The improved credit rating is expected to significantly enhance investor confidence in the Saudi market.
    • It increases international trust in Saudi Arabia’s economic stability and strength.
    • This higher rating enables more investments in infrastructure and development projects within the Kingdom.
    • Saudi Arabia becomes a more attractive destination for foreign investors, particularly in non-oil sectors such as mining, technology, and tourism.
    • The upgraded rating is also anticipated to boost the capital market through the development of the local capital market and by increasing investment opportunities.
    • A strong credit rating like “A+” generally lowers the costs of obtaining loans and financing for the country.

    Factors Contributing to the Positive Rating:

    • The consistent international upgrades in Saudi Arabia’s credit rating over the past few years reflect the success of the Kingdom’s economic approach.
    • The adoption of structural reforms has played a crucial role in this positive assessment.
    • The maintenance of prudent financial policies contributes to financial sustainability and the strength of the Kingdom’s financial position.
    • The stable future outlook reflects the ongoing progress in economic and social development, the expansion of the non-oil sector, and increased local capital formation.

    Importance of Credit Ratings:

    • Credit rating agencies like S&P, Moody’s, and Fitch provide assessments that help understand a country’s economic strengths and weaknesses. These assessments are often reflected in reports from international institutions such as the International Monetary Fund (IMF) and the World Bank.
    • Creditors utilize these ratings to evaluate the risks associated with lending to a country and to determine the appropriate interest rates for such loans.

    In summary, Saudi Arabia’s recent credit rating upgrade to “A+” by Standard & Poor’s signifies strong creditworthiness and is expected to have numerous positive impacts on the Kingdom’s economy, primarily by enhancing investor confidence and attracting further investments, which aligns with the broader economic development goals outlined in Vision 2030.

    Yemen: Houthi Attacks and US Response

    The sources discuss Houthi attacks in Yemen, specifically in the context of responses to American actions and the targeting of vital waterways.

    Here’s a breakdown of the information from the sources:

    • Houthi attacks are occurring in response to American attacks.
    • A US defense official, speaking anonymously to Reuters, denied claims of any Houthi attack bearing the name “Truman”, stating they have no knowledge of such an attack.
    • Hegseth from Fox News stated that the campaign against the Houthis will continue “relentlessly” until the Houthis stop attacking ships and planes. He indicated that the current campaign will end once the Houthis cease these attacks, but until then, it will persist without let-up.
    • Saf highlighted that the core issue is stopping the targeting of ships and assets in the vital water passage to ensure the return of normal movement. This is described as a matter of core national interest for the United States.
    • It is alleged that Iran has been assisting the Houthis for a period of time.

    In summary, the sources indicate that Houthi attacks are taking place in Yemen, prompting a response from the United States which includes military action. The primary concern for the US appears to be the disruption of maritime traffic in a critical water passage due to these attacks.

    Saudi Arabia: Defining its Architectural Identity

    The sources indicate that the Crown Prince has launched the Saudi Architecture Map featuring 19 styles. This initiative signifies a focus on the architectural landscape of Saudi Arabia.

    Saudi architecture is described as a blend of a rich historical heritage and contemporary design, aiming to achieve a balance between the past and the present while improving the quality of life. The goal is for Saudi architecture to become a global source of inspiration for innovation in architectural design.

    Furthermore, Saudi architecture is intended to enhance the Kingdom’s architectural diversity and support the improvement of the urban landscape in its cities, as well as enable local capabilities. It is expected to contribute significantly to the national economy, with projections of over 8 billion riyals in cumulative gross domestic product and the creation of more than 34,000 direct and indirect job opportunities in related sectors such as tourism and hospitality.

    Efforts to implement Saudi architecture are being undertaken through partnerships between various entities, including engineering offices, developers, and government agencies. There is a focus on ensuring the highest standards of quality and sustainability, with design studios providing the necessary engineering support. Additionally, engineering workshops and guidance will be provided to train engineers and designers to develop local talent. The source also mentions Eastern Najdi architecture as one specific style.

    In summary, the launch of the Saudi Architecture Map with 19 styles by the Crown Prince is a significant step towards defining and promoting Saudi Arabia’s unique architectural identity, which blends historical heritage with modern design principles, contributes to economic development, and involves collaborative efforts for high-quality and sustainable implementation.

    Gaza Humanitarian Crisis: Blockade and Aid Prevention

    The sources highlight a severe and worsening humanitarian crisis in the Gaza Strip. This crisis is characterized by the continuous closure of border crossings and the prevention of entry of humanitarian aid, goods, and fuel into the sector.

    Key aspects of the crisis as described in the sources include:

    • Food and Water Scarcity: Gaza is experiencing a food and water crisis amidst the closure of crossings and the ongoing blockade. The lack of essential goods and food supplies in the markets is compounded by rising prices.
    • Prolonged Closure of Crossings: The Kerem Abu Salem crossing, located southeast of the Gaza Strip, has been closed by the Israeli army for the fifteenth consecutive day. This continued closure exacerbates the suffering of citizens, particularly during the month of Ramadan.
    • Disruption of Essential Services: The tight blockade has left no room for normal life in Gaza, effectively turning it into a large prison under siege. The disruption has led to a paralysis of vital sectors, including transportation, and has stopped the work of bakeries and fuel supplies.
    • Hindrance of Movement and Access: The closure prevents citizens’ movement and their ability to reach hospitals, medical centers, and workplaces, depriving thousands of citizens, employees, and workers of access to their livelihoods.
    • Prevention of Aid and Supplies: The ongoing prevention of the entry of humanitarian aid and essential goods is a central feature of the crisis. This is occurring for the fifteenth consecutive day.
    • Impact on Basic Rights: The situation in Gaza has deprived people of their most basic rights.
    • Water Crisis: The sector is suffering from a severe water shortage, impacting both drinking water and water for domestic use.
    • Targeting Humanitarian Efforts: The Ministry [presumably a Palestinian ministry] considers the systematic closure policy and the prevention of providing aid to millions of Palestinians as extensions of the occupation’s arbitrary measures. It views these actions as an attempt by the occupation to monopolize the Palestinian people and conceal its serious violations of international law and agreements.
    • Impact on UNRWA: The ministry also noted the reduction of tasks and roles of international organizations, especially UNRWA, and the prevention of them from providing aid.
    • Documenting Violations: The monitoring and documentation role of human rights organizations is ongoing amidst the continued prevention of humanitarian aid entry.

    In summary, the humanitarian crisis in Gaza is dire and intensifying due to the prolonged closure of crossings and the prevention of essential supplies, including food, water, fuel, and medical aid. These actions are severely impacting the daily lives and basic rights of the Palestinian population in Gaza.

    Global Updates: Saudi Economy, Yemen, Architecture, Gaza Crisis

    Here is a study guide based on the topics we have discussed, drawing from the information in the sources and our conversation history:

    1. Saudi Arabia’s Credit Rating

    • Current Rating: Standard & Poor’s (S&P) raised Saudi Arabia’s credit rating to “A+” [our conversation history]. This applies to both local and foreign currencies and has a stable future outlook [our conversation history]. This “A+” rating is considered a high grade, indicating high creditworthiness [our conversation history].
    • Positive Impacts: The improved rating is expected to increase investor confidence in the Saudi market and enhance international trust in its economic stability [our conversation history]. It is also anticipated to lead to more investments in infrastructure and development, making Saudi Arabia more attractive for foreign investors, particularly in non-oil sectors like mining, technology, and tourism [our conversation history]. Furthermore, it is expected to boost the capital market and generally lower the costs of obtaining loans and financing [our conversation history].
    • Contributing Factors: The positive rating reflects consistent international upgrades over the past few years, the success of the Kingdom’s economic approach, the adoption of structural reforms, and the maintenance of prudent financial policies [our conversation history]. The stable outlook is due to ongoing progress in economic and social development, the expansion of the non-oil sector, and increased local capital formation [our conversation history].
    • Importance: Credit rating agencies like S&P help understand a country’s economic strengths and weaknesses, and creditors use these ratings to evaluate risks associated with lending and determine appropriate interest rates [our conversation history].

    2. Houthi Attacks in Yemen

    • Response to US Actions: Houthi attacks are occurring in response to American attacks on Yemen. The Houthis stated they will continue targeting American ships in the Red Sea as long as the United States continues its attacks.
    • Targeting Waterways: The Houthi group has targeted the American aircraft carrier Eisenhower and its warships in the Red Sea with ballistic missiles and drones. The core issue for the US is stopping the targeting of ships and assets in the vital water passage [our conversation history].
    • US Response: The United States has been taking military action [our conversation history]. Hegseth from Fox News indicated that the campaign against the Houthis will continue until they stop attacking ships and planes [our conversation history].
    • Claims of Specific Attacks: A US defense official denied claims of any Houthi attack bearing the name “Truman”, stating they have no knowledge of such an attack [our conversation history].

    3. Saudi Architecture Map

    • Launch and Scope: The Crown Prince has launched the Saudi Architecture Map featuring 19 styles [our conversation history]. This initiative focuses on Saudi Arabia’s architectural landscape [our conversation history].
    • Design Philosophy: Saudi architecture aims for a blend of a rich historical heritage and contemporary design, balancing the past and the present while improving the quality of life [our conversation history]. The ambition is for it to become a global source of inspiration for architectural innovation [our conversation history].
    • Goals and Impact: The initiative intends to enhance the Kingdom’s architectural diversity, improve the urban landscape, and enable local capabilities [our conversation history]. It is projected to significantly contribute to the national economy, with over 8 billion riyals in cumulative GDP and more than 34,000 job opportunities in related sectors [our conversation history].
    • Implementation: Efforts involve partnerships between engineering offices, developers, and government agencies [our conversation history]. There is a focus on ensuring high standards of quality and sustainability, with design studios providing engineering support [our conversation history]. Engineering workshops and guidance will train local engineers and designers [our conversation history].
    • Specific Styles: The source mentions Eastern Najdi architecture as one of the featured styles [3, our conversation history].

    4. Gaza Humanitarian Crisis

    • Severe Situation: Gaza is experiencing a severe and worsening humanitarian crisis. This is marked by the continuous closure of border crossings and the prevention of entry of humanitarian aid, goods, and fuel.
    • Crossings Closure: The Kerem Abu Salem crossing has been closed by the Israeli army for the fifteenth consecutive day. The ongoing closure is intensifying the suffering of citizens, especially during Ramadan.
    • Scarcity of Essentials: There is a food and water crisis with a lack of essential goods and food supplies in markets and rising prices.
    • Disruption of Life: The blockade has left no room for normal life, turning Gaza into a large prison under siege. Vital sectors like transportation are paralyzed, and the work of bakeries and fuel supplies has stopped.
    • Hindrance of Access: The closure prevents citizens from reaching hospitals, medical centers, and workplaces, depriving thousands of their livelihoods.
    • Prevention of Aid: The prevention of humanitarian aid and essential goods entry is a key aspect of the crisis.
    • Impact on Rights: The situation has deprived people in Gaza of their most basic rights.
    • Water Crisis: Gaza is suffering from a severe water shortage affecting drinking and domestic use.
    • Targeting Humanitarian Organizations: The [Palestinian] Ministry views the systematic closure policy and prevention of aid as attempts to monopolize the Palestinian people and conceal violations of international law. There is also a noted reduction of tasks and roles for international organizations, especially UNRWA, and prevention of them from providing aid.
    • Documenting Violations: Human rights organizations continue to monitor and document violations amidst the aid prevention.

    Regional Developments: Saudi Architecture and Gaza Crisis

    Here is a briefing document based on our conversation history and the provided sources:

    Briefing Document

    Date: May 16, 2024 Subject: Key Regional Developments

    This document provides a brief overview of key regional developments based on recent sources and our previous discussions.

    1. Saudi Architecture Map

    • Initiative: The Crown Prince has launched the Saudi Architecture Map, encompassing 19 distinct styles [our conversation history, 1]. This initiative underscores a significant focus on defining and promoting Saudi Arabia’s architectural identity [our conversation history].
    • Design Principles: Saudi architecture aims to integrate its rich historical heritage with contemporary design principles [our conversation history, 6], striving for a balance between tradition and modernity while enhancing the quality of life [our conversation history]. The long-term vision is for Saudi architecture to become a global source of inspiration for innovation in the field [our conversation history].
    • Objectives and Economic Impact: The project seeks to diversify the Kingdom’s architectural landscape, improve urban environments, and empower local capabilities [our conversation history]. It is projected to contribute substantially to the national economy, with an anticipated cumulative gross domestic product of over 8 billion riyals and the creation of more than 34,000 direct and indirect job opportunities in sectors like tourism and hospitality [our conversation history].
    • Implementation Strategy: Achieving these goals involves collaborative efforts among various stakeholders, including engineering offices, developers, and government agencies [our conversation history, 1]. A strong emphasis is placed on adhering to the highest standards of quality and sustainability [our conversation history, 1]. Design studios will offer essential engineering support, and engineering workshops and guidance will be conducted to train engineers and designers, fostering local talent development [our conversation history, 1].
    • Featured Architectural Style: The source specifically mentions Eastern Najdi architecture as one of the styles included in the map. This style reflects the regional characteristics and building traditions of the Eastern Najd area.

    2. Gaza Humanitarian Crisis

    • Critical Situation: The Gaza Strip is facing a severe and escalating humanitarian crisis [our conversation history, 35, 36]. This is primarily due to the continuous closure of border crossings and the ongoing prevention of humanitarian aid, essential goods, and fuel from entering the territory [our conversation history, 35, 37, 38].
    • Prolonged Crossings Closure: The Kerem Abu Salem crossing has been closed by the Israeli army for the fifteenth consecutive day, significantly exacerbating the suffering of the civilian population, particularly during the month of Ramadan [our conversation history, 35].
    • Scarcity and Price Increases: A severe food and water crisis is prevalent, characterized by a lack of essential supplies in markets and rising prices for the limited goods available [our conversation history, 35, 36].
    • Disruption of Essential Services and Movement: The stringent blockade has effectively turned Gaza into a large prison under siege, severely disrupting normal life [our conversation history, 36]. Vital sectors such as transportation have been paralyzed, and the operations of bakeries and fuel supplies have been halted [our conversation history, 36]. Furthermore, the closure impedes the movement of citizens, preventing access to hospitals, medical centers, and workplaces, depriving thousands of their livelihoods [our conversation history, 36].
    • Prevention of Aid Entry: The ongoing prevention of humanitarian aid and essential goods from entering Gaza is a central element of the crisis, continuing for the fifteenth consecutive day [our conversation history, 35, 38].
    • Violation of Basic Rights: The dire situation has resulted in the deprivation of the Palestinian population in Gaza of their most basic human rights [our conversation history, 36].
    • Water and Sanitation Crisis: The Gaza Strip is experiencing a severe water shortage, affecting both drinking water and water for domestic use, alongside a crisis in the use of domestic water [our conversation history, 36].
    • Impact on Humanitarian Organizations: The Palestinian Ministry of Foreign Affairs and Expatriates views the systematic closure policy and the prevention of aid provision as extensions of the occupation’s arbitrary measures, aimed at controlling the Palestinian people and concealing violations of international law and agreements [our conversation history, 37, 38]. The ministry has also noted a reduction in the tasks and roles of international organizations, particularly UNRWA, and the obstruction of their aid efforts [our conversation history, 38].
    • Monitoring and Documentation: Human rights organizations continue their crucial work of monitoring and documenting the violations committed amidst the ongoing prevention of humanitarian assistance [our conversation history, 38].

    This briefing document highlights the ongoing developments in Saudi architecture and the critical humanitarian situation in Gaza, drawing directly from the provided sources and our previous discussions.

    Saudi Arabia & Gaza: Recent Developments FAQ

    Here is an FAQ (Frequently Asked Questions) document based on the provided sources and our conversation history:

    Frequently Asked Questions

    Saudi Architecture Map

    • Q: What is the Saudi Architecture Map?
    • A: The Saudi Architecture Map is an initiative launched by the Crown Prince that identifies and showcases 19 distinct architectural styles prevalent in Saudi Arabia [our conversation history, 1].
    • Q: What is the main goal of this initiative?
    • A: The primary goal is to highlight and promote Saudi Arabia’s unique architectural identity by blending its rich historical heritage with contemporary design [our conversation history, 6]. The aim is for Saudi architecture to become a global source of inspiration for architectural innovation [our conversation history]. Additionally, it aims to reach a thriving society and vital economy by 2030.
    • Q: What are the expected benefits of the Saudi Architecture Map?
    • A: The initiative is expected to enhance the Kingdom’s architectural diversity, improve urban landscapes, and empower local capabilities [our conversation history]. It also projects a significant contribution to the national economy, with over 8 billion riyals in cumulative GDP and more than 34,000 job opportunities in related sectors [our conversation history].
    • Q: How will the Saudi Architecture Map be implemented?
    • A: Implementation involves collaboration between engineering offices, developers, and government agencies [our conversation history, 1]. There’s a focus on ensuring high standards of quality and sustainability [our conversation history, 1], with design studios providing engineering support and workshops training local engineers and designers [our conversation history, 1].
    • Q: Can you name any specific architectural styles included in the map?
    • A: Yes, the sources mention Eastern Najdi architecture as one of the 19 featured styles [3, our conversation history].

    Gaza Humanitarian Crisis

    • Q: What is the current humanitarian situation in Gaza?
    • A: Gaza is currently facing a severe and worsening humanitarian crisis characterized by the continuous closure of border crossings and the prevention of entry of humanitarian aid, essential goods, and fuel [our conversation history, 35, 36].
    • Q: What are the main consequences of the border crossing closures?
    • A: The closures, such as that of the Kerem Abu Salem crossing for the fifteenth consecutive day, are intensifying the suffering of citizens, especially during Ramadan [our conversation history, 35]. This leads to a food and water crisis with a lack of essential supplies and rising prices [our conversation history, 35, 36], paralysis of vital sectors like transportation, and prevention of people from accessing hospitals, workplaces, and other necessities, depriving thousands of their livelihoods [our conversation history, 34, 36].
    • Q: What is the impact on humanitarian organizations?
    • A: The [Palestinian] Ministry views the systematic closure policy and prevention of aid as attempts to monopolize the Palestinian people and conceal violations of international law [our conversation history, 37, 38]. They also note a reduction of tasks and roles for international organizations, especially UNRWA, and the obstruction of their aid efforts [our conversation history, 38].
    • Q: What is being done to address the crisis?
    • A: Human rights organizations continue to monitor and document violations amidst the aid prevention [our conversation history, 38]. The [Palestinian] Ministry calls on the international community to intervene to stop the occupation’s measures against humanitarian organizations.

    Other Topics

    • Q: What is the National Environment Strategy in Saudi Arabia focusing on?
    • A: The National Environment Strategy includes a program that encourages investments in the environment, contributes to raising environmental commitment, and supports research and innovation. A fund has been launched to support these environmental projects.
    • Q: What is happening with historical mosques in Saudi Arabia?
    • A: There is a royal directive to develop historical mosques to achieve a balance between traditional and modern construction standards.
    • Q: What was the recent exhibition in Saudi Arabia about?
    • A: An exhibition on Islamic projects was recently held, showcasing the Kingdom’s efforts in caring for mosques, serving the Quran, and providing social and da’wah programs.
    • Q: Has Imam Muhammad ibn Saud Islamic University achieved any recent recognition?
    • A: Yes, Imam Muhammad ibn Saud Islamic University has achieved progress in the 2025 QS World University Rankings for specialties, ranking among the top 400 globally in three fields.
    • Q: What is the significance of the library of the Grand Mosque in Mecca?
    • A: The library of the Grand Mosque in Mecca is considered a significant scientific and cultural edifice, providing various services to visitors, researchers, and readers throughout the week.
    • Q: What are the Saudi authorities doing regarding women’s empowerment?
    • A: The Saudi authorities emphasize empowering women in various sectors, including the municipal sector, to enhance efficiency and their active role in sustainable development.
    • Q: What are some trends in digital media discussed in the sources?
    • A: Trends include the necessity for digital media to adapt to the spirit and tastes of the target audience, the integration of the metaverse in digital media to enhance interaction, and the increasing collaboration of news publishers with AI platforms to improve user experience.
    • Q: What are the traditional markets in Najran like?
    • A: The traditional markets in Najran embody the spirit of the old social life and reflect past economic patterns, daily life, customs, values, and traditions. They also play an important commercial role and serve as a living memory of history.
    • Q: Why is the “Faisal Mosque” named as such?
    • A: The “Faisal Mosque” was named in recognition of King Faisal of Saudi Arabia for his significant role in funding its construction and his efforts in strengthening relations between Pakistan and Saudi Arabia and supporting Islamic projects.
    • Q: What is “Futoor Al-Awwaleen”?
    • A: “Futoor Al-Awwaleen” (Breakfast of the Old Days) is an event held to celebrate heritage and bring back memories of the past, featuring traditional breakfast in a historical setting.

    This FAQ provides answers to some key questions based on the information available in the sources and our conversation history.

    Saudi Arabia and Regional News Roundup

    Here is a summary of all the articles based on the provided sources:

    • Source: This article announces the launch of the Saudi Architecture Map by the Crown Prince, featuring 19 Saudi architectural styles. It highlights that this initiative aims to blend historical heritage with contemporary design within the framework of the state’s plans for sustainable development and achieving Vision 2030, which targets a thriving society and a vital economy.
    • Source: This article reports on the Houthi group’s threat to continue targeting American ships in the Red Sea as long as the United States continues its attacks on Yemen. The Houthis described the attacks against them as a “full-fledged war crime” and declared their readiness to escalate. Moscow urged Washington to stop the strikes. The Houthi military spokesperson mentioned that the group targeted the American aircraft carrier “Truman” and other warships in the Red Sea with ballistic missiles and drones.
    • Source: This article discusses the integration of efforts between real estate developers, engineering offices, government agencies, and design studios to implement Saudi architecture, specifically mentioning Eastern Najdi architecture. The aim is to ensure the highest standards of quality and sustainability by providing engineering design support and training workshops for engineers and designers to qualify local talents. The article also briefly mentions a phone call between the Crown Prince and the Prime Minister of Italy to discuss the latest developments.
    • Source: This article covers the approval by Prince Muhammad bin Nasser bin Abdulaziz, Governor of Jazan region and Chairman of the Board of Trustees of the Jazan Award for Excellence and Creativity, of the results of the award winners for the years 1445-1446 AH. The Prince emphasized that the Kingdom, including the Jazan region, includes a selection of distinguished and creative individuals in various scientific and practical fields.
    • Source: This article reports on the launch of a campaign in the Eastern Province aimed at urging businessmen and women to provide financial support to the region and its people, particularly the most needy beneficiaries. The Governor of the Eastern Province expressed his gratitude for the campaign. The article also mentions the Governor’s meeting with the new Head of the Personal Status Court in Dammam and his well wishes.
    • Source: This article outlines a program to encourage investments in the environment and enhance environmental commitment among various entities through incentives and grants. This aims to achieve environmental sustainability goals of Vision 2030 and improve the quality of life.
    • Source: This article reports on the participation of Prince Khalid bin Saud bin Abdullah bin Faisal bin Abdulaziz, Deputy Governor of Tabuk Region, in an iftar banquet for orphans organized by the Charity Association for the Care of Orphans in the Tabuk region in cooperation with the Ministry of Human Resources and Social Development, coinciding with the Arab Orphan Day. The Prince conveyed the blessings of the Custodian of the Two Holy Mosques and the Crown Prince for the orphans.
    • Source: This article highlights the recognition of distinguished students within various educational departments through a competition as part of a program to develop human capabilities. The total prizes for the distinguished students reached 287,000 riyals. This recognition aligns with the leadership’s support for students to achieve the goals of the human capacity development program.
    • Source: This article discusses the unique architectural style of Al-Masmak Palace, noting its adaptation to climatic and natural conditions, use of local materials like cut stone and mud mortar, and the incorporation of palm tree components. It also mentions a project to develop historical mosques to balance traditional and modern construction standards.
    • Source: This article covers the inauguration of an exhibition on Islamic projects by the Deputy Minister for Islamic Affairs, Call and Guidance, Dr. Abdulaziz bin Abdullah Al Sheikh, on behalf of the Minister. The exhibition showcases the Ministry’s efforts in serving the community and supporting quality initiatives in the non-profit sector.
    • Source: This article further details the exhibition on Islamic projects, emphasizing the Ministry’s keenness to highlight the Kingdom’s efforts and leadership in caring for mosques, serving the Holy Quran, and providing da’wah and social programs that meet the needs of society. It also mentions the Minister’s attention to the quality transfer of the King Fahd Complex for Printing the Holy Quran.
    • Source: This article continues to describe the exhibition on Islamic projects, noting its focus on volunteer work, empowering the non-profit sector, and highlighting the Custodian of the Two Holy Mosques’ program for Hajj, Umrah, and visit affairs. The exhibition witnessed significant interaction on its first day.
    • Source: This article contains several local news briefs, including: the Al-Azam Mosque in Al-Ula dating back to the Prophet’s era, the library of the Grand Mosque in Mecca as a platform for scientific enrichment, and the efforts of female cadres in the Madinah Municipality to enhance the quality of municipal work. It also mentions the planting of trees.
    • Source: This article elaborates on the Grand Mosque Library in Mecca, highlighting its significance as a scientific and cultural monument that welcomes visitors of various cultures and nationalities throughout the year, especially during Hajj, Umrah, and Ramadan. The library provides diverse services and keeps pace with modern technologies, making it a leading library in the holiest of places.
    • Source: This article emphasizes the efforts to enhance the scientific, da’wah, guidance, educational, and awareness services directed to visitors of the Two Holy Mosques. This is based on the directives of the leadership to provide the best and highest quality services. It mentions the General Presidency for the Affairs of the Grand Mosque and the Prophet’s Mosque competing in their performance.
    • Source: This article underscores the municipality’s commitment to developing the work environment by empowering women in various municipal sectors. This is seen as enhancing efficiency and their active role in achieving sustainable development and improving the attractiveness of Madinah.
    • Source: This article discusses the need for digital media to be attractive, purposeful, and suitable for the spiritual atmosphere of Ramadan, while also addressing the tastes of the target audience. It highlights the challenge of using appropriate language for today’s generation and effective tools to meet their needs.
    • Source: This article continues the discussion on digital media, emphasizing the rapid changes and the importance of adapting content. It mentions the idea of launching initiatives for young talents in media fields and training a generation of professional journalists.
    • Source: This article concludes the discussion on digital media, noting the need for specialization in producing media content for each age group, unlike the past. It also includes briefs about the Al-Qiblatain Mosque in Madinah and popular markets in Najran as a living memory of the past.
    • Source: This article provides details about the historical Al-Qiblatain Mosque in Madinah, mentioning the expansion and construction works to increase its capacity and develop its facilities. The project includes increasing the number of মুসলas to 3,000, adding a cultural center, plazas, landscaping, and electrical elevators.
    • Source: This article further describes the popular markets in Najran, noting their appeal to visitors and tourists and the availability of traditional goods. It also includes briefs about the naming of Faisal Mosque in honor of King Faisal and the King Fahd Mosque in Argentina as prominent Islamic landmarks.
    • Source: This article details the naming of Faisal Mosque in Pakistan after King Faisal of Saudi Arabia for his significant financial support and role in strengthening relations and supporting Islamic projects. It also introduces the King Fahd Mosque in Argentina as one of the most prominent Islamic landmarks in Latin America, built with Saudi Arabian government support.
    • Source: This article describes the study circles in the Haram al-Makki al-Sharif, noting that lectures are open to everyone. It outlines the etiquette for attending, whether for study or mere curiosity. There is no mandatory registration for students.
    • Source: This article includes a reflection on ships as a means of transportation that have brought peoples closer and boosted economies and trade, referencing a verse from the Quran. It also touches upon the physics behind ships floating, requiring their density to be less than that of water.
    • Source: This article discusses the appointment of Muhammad bin Yusuf al-Thaqafi as governor of Mecca during the rule of Al-Walid bin Yazid. While his appointment occurred amidst internal conflicts within the Umayyad house, which affected the central government’s authority, Mecca was not entirely immune. The appointed governors from Damascus were primarily responsible for maintaining security, organizing Hajj affairs, and ensuring stability.
    • Source: This article continues to discuss Mecca during the reign of Al-Walid, characterizing it as a transitional period amidst internal Umayyad conflict. While Mecca did not witness radical reforms, it was indirectly affected by the instability of the central government in Damascus, leading to frequent changes in the governors of the Hijaz. The reign of Al-Walid did not see significant achievements in Mecca but reflected the beginning of the weakening of the Umayyad state.
    • Source: This article highlights the 提升 of the Kingdom’s credit rating by Standard & Poor’s to A+, indicating high creditworthiness and enhancing the confidence of international investors in the Saudi market.
    • Source: This article explains the importance of the Kingdom’s A+ credit rating from Standard & Poor’s and other international rating agencies. It emphasizes that these ratings, along with reports from institutions like the IMF and World Bank, help identify strengths and weaknesses in the Saudi economy, enabling analysis and strategic planning for improvement.
    • Source: This article further elaborates on the significance of credit ratings, explaining how creditors use them to assess risks associated with lending and determine interest rates. A high credit rating like A+ signifies a country’s ability to repay debts and access financing at reasonable costs.
    • Source: This article reports on inflation rates, noting an increase of 1.0% in the Consumer Price Index, with food and beverage prices rising by 2.5%. Various categories saw price increases, including meat, poultry, and personal goods, while others like transportation, vehicles, and furniture experienced price declines.
    • Source: This article presents an analysis of the Saudi economy, transitioning from “contraction” to “growth.” Despite a slight increase in future crude oil contracts, prices remain near multi-year lows due to economic pressures and demand forecasts. Concerns about a potential recession in the US also play a role.
    • Source: This article continues to analyze the oil market, noting expectations of sustained negative sentiment that could limit oil price increases. Slower global economic growth could also push crude oil prices down. The market remains subject to volatility due to geopolitical and economic risks, with developments in the Eastern Europe conflict being a crucial factor.
    • Source: This article further discusses the oil market, mentioning expectations of record US crude oil production, potentially adding downward pressure on prices. OPEC+ plans to increase production also contribute to this pressure. The article also notes concerns within the oil industry regarding potential negative impacts of US President Donald Trump’s pro-fossil fuel agenda.
    • Source: This article concludes the analysis of the Saudi economy, highlighting that improved economic performance positively reflects on the quality of life and that investments in infrastructure contribute to this. Reforms in health, education, and sustainable development strengthen the Kingdom’s position as a reliable investment destination and a leading economic center in the region.
    • Source: This article contains classified ads and a news brief about demands to enhance reforms in the accounting profession in Saudi Arabia and improve auditing processes. Financial sector leaders emphasized the growing role of accounting in maintaining investor confidence and financial transparency.
    • Source: This article elaborates on the demands for accounting reforms, noting the consensus among participants at a forum organized by ICAEW and the Financial Academy in Riyadh. The need for accounting firms to go beyond regulatory compliance and integrate responsible leadership into their culture was discussed, highlighting a gap between ethical theories and their practical application.
    • Source: This article continues the discussion on ethical governance in companies, with a director of a center for sustainability and climate at Prince Sultan University highlighting the lack of transparency regarding ethical principles on company websites in the Middle East and North Africa region. He stressed the importance of making ethical values an integral part of corporate operations.
    • Source: This article reports on the worsening humanitarian suffering in Gaza due to the continued closure policy and prevention of essential supplies, including fuel for transportation. This has paralyzed vital sectors, hindered people’s movement, and limited access to hospitals and workplaces, depriving many of their livelihoods. The siege has turned Gaza into a large prison with severe water and sanitation crises and shortages of medical supplies.
    • Source: This article details the Palestinian Foreign Ministry’s follow-up on the occupation’s restrictions against humanitarian aid, particularly the continued closure of the Kerem Abu Salem crossing. The Ministry calls on the international community to intervene to stop the occupation’s measures against humanitarian organizations.
    • Source: This article continues to report on the Israeli occupation’s measures in Jerusalem, including preventing entry to Al-Aqsa Mosque and restricting Palestinians’ right to practice their religious rituals freely. These measures are seen as part of a systematic strategy to change the demographic and geographical character of Jerusalem.
    • Source: This article further discusses the increasing fears of escalation by the occupation in Jerusalem during Ramadan, condemning the policies as a violation of international laws. It highlights the policy of forced displacement and plans to Judaize the holy city.
    • Source: This article emphasizes that the Israeli displacement decisions violate international laws and conventions, including the Fourth Geneva Convention, which prohibits the forced transfer of population. It notes the international community’s weak stance and the far-reaching effects of these measures on Palestinians’ daily lives, including loss of jobs and social connections.
    • Source: This article highlights the steadfastness of the people of Jerusalem in the face of Israeli occupation policies and their efforts to challenge displacement decisions through popular support and community solidarity. It notes the presence of worshippers and those stationed at Al-Aqsa Mosque as a living model of resistance. The article also mentions Israeli forces conducting raids and arrests in several Palestinian cities.
    • Source: This article reports on Israeli forces continuing to burn houses in Jenin and Tulkarm in the northern occupied West Bank. It details the killing of a Palestinian man near Salfit and raids and arrests in Nablus and Qalqilya.
    • Source: This article further describes the Israeli forces’ actions in Tulkarm and Jenin, including intensifying raids, searching commercial shops, and burning and detonating houses in the Nur Shams camp. It also mentions the obstruction of movement and checking of IDs in the northern neighborhood of Tulkarm and raids on commercial shops in Suwaika Street, resulting in the arrest of a Palestinian man.
    • Source: This article discusses the US re-designation of “Ansar Allah” (the Houthi movement) as a “foreign terrorist organization” and the prohibition of any American dealings with it. This comes after Houthi threats to attack ships. The article also includes a brief about a rocket explosion in Syria caused by a scrap collector, resulting in 16 deaths, and the re-opening of Aleppo International Airport.
    • Source: This article reports on the historical drama series “Al-Zafer,” highlighting the participation of actor Jubran Al-Jubran who praised the work for its unique blend of imagination and reality, drawing from various historical narratives. He thanked the director and the Radio and Television Authority for their support. The article also mentions Dr. Rashed Al-Shamrani’s encouragement and the challenges faced during filming.
    • Source: This article continues to discuss the drama series “Al-Zafer,” noting the participation of a selection of Saudi actors from different regions and the writing of Othman Juhi, who focused on social issues such as tribal conflicts and land disputes. Despite not being shown yet, the series is expected to achieve great success.
    • Source: This article introduces the importance of the Al-Zahrani Club in gathering reading enthusiasts under an official umbrella, providing a stimulating environment for their hobby. The club aims to support, develop, and motivate creative ideas.
    • Source: This article introduces “Video Art” as one of the most prominent contemporary artistic movements, arising from the intersection of arts and technology. It discusses its ability to break traditional barriers and explore new dimensions of time and space in moving images.
    • Source: This article continues to discuss “Video Art,” noting its path towards flourishing in the local art scene despite initial challenges with infrastructure and public familiarity. It highlights the opening of cultural institutions and specialized events, such as the International Video Art Forum in Dammam, as efforts to solidify this art form in the Arab world.
    • Source: This article describes the unique architectural design of traditional villages, showcasing the craftsmanship and adaptation of building techniques over generations, using materials like mud and stone. These villages are presented as open-air museums embodying the cultural identity of the region.
    • Source: This article continues to describe traditional clay villages, emphasizing that simplicity in their heritage is not a deficiency in creativity. It also introduces the “Al-Khuzama” section, featuring poetry and photography.
    • Source: This page of the “Al-Khuzama” section features poetry, including works by Bahlool Al-Zamily Al-Shammari and others, with themes related to the desert and its atmosphere.
    • Source: This page of the “Al-Khuzama” section continues with Ramadan-themed poetry, highlighting the poets’ feelings towards the holy month and its spiritual atmosphere. It features the work of Salem bin Muhammad Al-Saqr.
    • Source: This page continues the Ramadan poetry by Salem bin Muhammad Al-Saqr, celebrating the month of generosity, happiness, tolerance, and harmony.
    • Source: This page continues the Ramadan poetry by Salem bin Muhammad Al-Saqr, focusing on themes of fasting, spiritual growth, and charitable acts.
    • Source: This page concludes the Ramadan poetry by Salem bin Muhammad Al-Saqr, emphasizing good deeds, avoiding extravagance, and seeking closeness to God during the holy month.
    • Source: This page features more Ramadan poetry, urging the fasting of the soul and seeking spiritual fulfillment through worship and reading the Quran.
    • Source: This page concludes the Ramadan poetry, with verses about seeking forgiveness and divine blessings during the holy month. It also includes a poem by Muhammad Al-Salam about the beauty of nature.
    • Source: This page of “Al-Khuzama” continues with poetry, reflecting on various themes.
    • Source: This page concludes the poetry section of “Al-Khuzama,” with verses celebrating nature and its beauty. It also includes an invitation for readers to submit their photos and creative contributions.
    • Source: This article mourns the passing of Abdullah Al-Asmari, a renowned poet and songwriter, highlighting his contributions to popular Saudi song in the nineties and his famous works sung by various artists.
    • Source: This article continues the tribute to Abdullah Al-Asmari, mentioning more of his famous songs and the emotional impact of his passing on the artistic community.
    • Source: This page continues the tribute to the late Abdullah Al-Asmari, quoting lyrics from his well-known songs.
    • Source: This page concludes the lyrics of Abdullah Al-Asmari’s songs featured in his tribute.
    • Source: This article features tributes to the late poet Abdullah Al-Asmari from various writers and figures in the cultural scene, highlighting his noble character, kindness, and significant contributions to literature and poetry.
    • Source: This page continues the tributes to Abdullah Al-Asmari, with more heartfelt messages from fellow writers and media personalities, acknowledging his talent, ethics, and lasting impact.
    • Source: This page features further condolences and eulogies for Abdullah Al-Asmari from fellow poets and artists, remembering his kindness, talent, and the void left by his absence.
    • Source: This page continues the tributes to Abdullah Al-Asmari, with heartfelt messages and prayers for his soul and condolences to his family and the artistic community.
    • Source: This page concludes the tributes to Abdullah Al-Asmari, with final messages of sorrow and remembrance from his friends and colleagues in the literary and artistic fields.
    • Source: This page includes more condolences for Abdullah Al-Asmari and features a brief introduction to the concept of the digital metaverse as a significant transformation in media, allowing for user interaction within immersive three-dimensional environments.
    • Source: This article elaborates on the digital metaverse, explaining its potential to redefine content development, consumption, and marketing through immersive virtual experiences using VR, AR, and AI. It discusses the creation of digital identities and the emergence of virtual economies.
    • Source: This article continues to discuss the impact of the metaverse, highlighting its ability to overcome geographical limitations for virtual events and increase engagement. It notes examples of fashion brands entering the metaverse. The article also touches on the evolution of three-dimensional content in social media and news to enhance user interaction.
    • Source: This article concludes the discussion on the digital metaverse, emphasizing its shift from a mere experiment to a new standard in modern media, integrating virtual events, 3D content, interactive journalism, and smart advertising. It transitions to a commentary on the challenges facing the United States, comparing efforts to prevent societal collapse to stopping a train with bare hands, given accumulated problems since the early 2000s.
    • Source: This article continues the commentary on the United States’ challenges, discussing political polarization and economic efforts by the Trump administration, including protectionist measures and tax cuts. It argues that these actions might be insufficient in a complex globalized economy with a changing workforce and demographics.
    • Source: This article shifts to a report on trends in digital media for news publishers, highlighting a growing trend towards collaboration with AI platforms to enhance user experience and increased use of alternative channels like WhatsApp and LinkedIn, while Facebook becomes less relevant for journalists. It also notes the increased investment in “social video” by major media organizations.
    • Source: This article further discusses digital media trends, detailing the characteristics of effective social video content. It emphasizes the transformative role of generative AI in journalism, potentially improving editing and content personalization but also raising concerns about news credibility due to the rapid spread of AI-generated content.
    • Source: This article presents a critique of sports commentary, using an analogy of a football match to highlight issues such as continuous irrelevant talk, biased praise, and uninspired delivery.
    • Source: This article continues the critique of sports commentary, asserting that it is part of a broader sports media system needing comprehensive development, starting with sports criticism that has devolved into club-based promotion rather than objective analysis.
    • Source: This page includes contact information for advertising and subscriptions for the newspaper, along with the title “Sports Commentary” attributed to Yousef Al-Qabban and Khalid bin Ali Al-Mutarrafi, reinforcing the theme of the previous two articles.
    • Source: This article reports on a football match where Newcastle showed determination against Liverpool, scoring twice but ultimately losing in extra time.
    • Source: This article analyzes the Newcastle football match, emphasizing that their performance indicates the positive impact of investment in the club and positions them as a rising force in English football. It suggests this success could attract more talent and lead to greater achievements.
    • Source: This article provides a report on the Saudi national football team’s training session in Riyadh, held behind closed doors in preparation for their match against Japan in the eighth round of the Asian qualifiers. It mentions the team’s travel plans to Japan.
    • Source: This article lists the 27 players called up for the Saudi national football team’s training camp in preparation for the match against Japan. It also mentions Saudi Arabia’s placement in Group C alongside China, Bahrain, Australia, and Japan in the first round of the Asian qualifiers.
    • Source: This article reports that Al-Hilal player Khaled Al-Ghannam, currently on loan to Al-Ettifaq, has expressed his desire to continue with Al-Hilal after his loan period ends. The Al-Hilal coach previously praised Al-Ghannam’s abilities.
    • Source: This article continues the report on Khaled Al-Ghannam, noting his positive relationship with Al-Hilal fans and his promise to give his best in future appearances. It also includes a brief about Al-Nasr’s victory in a match.
    • Source: This article previews upcoming derby matches in the Saudi league between Al-Ittihad and Al-Ahli, and Al-Hilal and Al-Nasr, noting their significance in the league standings. It discusses Al-Ahli’s search for a win against Al-Ittihad to improve their position and break Al-Ittihad’s recent dominance. The article also considers how the league break might affect the readiness of the four teams.
    • Source: This article includes brief sports notes, mentioning Al-Akhdoud’s loss and a player receiving a long added time, as well as the potential return of key players for Al-Nasr for the upcoming derby.
    • Source: This page of the “Sports World” section features various sports briefs and commentary, including the departures of Cristiano Ronaldo after being substituted, the Moroccan national team coach’s call-up of Bounou, and statements from football coaches about their team’s preparations and refereeing decisions.
    • Source: This article reports that Al-Ittihad is interested in signing Barcelona winger Ez Abde (Al-Zalzouli), with the club’s sporting director reportedly contacting the player. However, the report suggests the player might continue with Real Betis.
    • Source: This page concludes the “Sports World” section with a brief about the West Asian Football Federation (WAFF) U-23 Championship to be held in Bahrain in 2025, featuring several national teams.
    • Source: This article discusses the victory of Al-Hilal in the second leg of the Asian championship, emphasizing their deserving of the win. It calls on the coach to select new players for the national team who have greater ambitions and can achieve positive results.
    • Source: This article continues the commentary on Al-Hilal’s performance and the importance of proper administration versus “chaos” of conflicting opinions. It also expresses a wish for the King Fahd and Al-Kharj clubs to gain momentum and for businessmen to support local clubs.
    • Source: This article concludes with a quote about the impact of praise versus criticism and reiterates the need for companies to recognize the role of the sports sector and contribute to its development, aligning with the Kingdom’s Vision.
    • Source: This page contains the newspaper’s masthead, indicating it is Al-Riyadh daily newspaper issued by Al-Yamamah Press Foundation on Monday, March 17, 2025. It also features a brief article about the “Futoor Al-Awwaleen” (Breakfast of the Old Days) event held in Al-Rass to celebrate heritage.

    This summary covers the main topics and key details presented in each of the provided articles.

    Al-Riyadh Newspaper, March 17, 2025: Key News and Features

    Here is a summary of each page excerpt from the sources:

    Page 16: This page is the front page of the Al-Riyadh newspaper, dated Monday, March 17, 2025 (17 Ramadan 1446 Hijri), issue number 20716, marking its 62nd year. The main headline announces that the Crown Prince has launched the Saudi Architecture Map with 19 styles. There is also a “Word” section discussing the Kingdom’s development during the past three decades, highlighting economic, social, and urban transformations within the framework of state plans. This development has contributed to sustainable development with large-scale investments in basic material and social infrastructure, industrial and service facilities. The vision aims to reach a thriving society and a vibrant economy by 2030, creating suitable job opportunities for citizens, nurturing talents, and exploiting significant investment opportunities. Contact information for the newspaper is provided.

    Page 2: This page covers news related to the Houthi group and their threats against American ships in the Red Sea in response to continued US attacks on Yemen. A Houthi televised address stated the campaign could last weeks and they would continue to escalate if the aggression continues. The Houthi political office described US attacks as a “full-fledged war crime” and announced their forces’ readiness to escalate. Moscow urged Washington to stop the strikes. The Houthi military spokesperson claimed they targeted the American aircraft carrier Truman and other warships in the Red Sea with ballistic missiles and drones. A US defense official denied these claims, stating they have no knowledge of any Houthi attack on the Truman. A Houthi official, Houthi Higgsith, stated that their campaign would continue relentlessly until the US stops targeting their ships and aircraft, emphasizing the importance of the vital waterway and alleging Iranian support for the Houthis.

    Page 4: This page includes a headline about the Eastern Najdi architecture, detailing efforts to apply and integrate governmental bodies, engineering offices, real estate developers, and investors to achieve the highest standards of quality and sustainability in design. Design studios will provide the necessary engineering support, along with training workshops and architectural guidance for engineers to qualify local talent. Another headline reports that the Crown Prince discussed the latest developments with the Italian Prime Minister. A separate article from Jazan reports that Prince Muhammad bin Nasser affirmed that the Kingdom includes an elite of distinguished and creative individuals in various scientific and practical fields, as he approved the results of the Jazan Award for Excellence and Creativity.

    Page 6: This page features news about Prince Saud bin Nayef, the Governor of the Eastern Province, launching the “Bridge of Hope” campaign aimed at providing financial support and assistance to the neediest in the region. The Governor expressed his gratitude to those contributing to the campaign. In other news from the Eastern Province, the Governor received the President of the Personal Status Court in Dammam, Sheikh Khalid bin Ghazi Al-Harbi, on the occasion of his appointment, offering congratulations and wishing him success. Prince Saud bin Nayef also sponsored the ceremony for laying the foundation stone for the new headquarters of the “Zadak” Academy for Culinary Arts, praising its achievements, including winning an award as the best culinary arts academy in the Middle East for 2024 and receiving accreditation from the UN’s World Tourism Organization.

    Page 8: This page contains an article about programs and incentives to encourage investments in the environment and involve various sectors in raising environmental commitment. These incentives and grants will be offered to companies, SMEs, research centers, universities, non-profit organizations, and other فعال actors to achieve the sustainable environmental targets of Vision 2030 and enhance the quality of life. Another article reports that Prince Fahd bin Sultan bin Abdulaziz, the Governor of Tabuk, sponsored an iftar banquet for orphans, organized by the Charity Association for Orphans’ Welfare in Tabuk in cooperation with the Ministry of Human Resources and Social Development, coinciding with Arab Orphan Day. Prince Khalid bin Saud bin Abdullah bin Faisal bin Abdulaziz, the Deputy Governor of Tabuk, also attended.

    Page 10: This page continues the report on the Tabuk iftar for orphans, noting the care and attention given by the leadership to orphans and their needs. The Deputy Governor of Tabuk conveyed the thanks and gratitude of the orphans for the continued support and participation in their events. Below this, a headline announces that Prince Saud bin Nayef, the Governor of the Eastern Province, inaugurated the “Bridge of Hope” campaign during his meeting with Sheikh Al-Harbi. Another headline reports that Al-Huqail witnessed the signing of the advertising plan project for Makkah Al-Mukarramah. The page also includes a continuation of an article, possibly about educational achievements, mentioning that Dr. Al-Alkami highlighted the honoring of distinguished students who excelled in various academic areas, including international tests, innovation, volunteering, and scientific aptitude, noting that the total awards reached 287 thousand riyals and that this aligns with the leadership’s support for developing human capabilities.

    Page 12: This page focuses on the distinguished architectural design of the expansion project of the Prophet’s Mosque, noting its ability to adapt to climatic conditions and the use of natural materials like cut stone and palm components for roofing and insulation. The project aims to achieve a balance between old and modern construction standards in developing historical mosques. Another article reports that the Minister of Islamic Affairs, Dawah and Guidance, Dr. Abdulaziz bin Abdul Latif Al-Sheikh, inaugurated an exhibition representing the Kingdom’s projects in cooperation with the الشيشان والهند, in the presence of the Ministry’s Undersecretary, Dr. Hamad bin Hamza Al-Gifal, and representatives of the King Khalid Foundation, alongside other interested parties in charitable and social work.

    Page 14: This page continues the report on the inauguration of the exhibition by the Ministry of Islamic Affairs, highlighting the Undersecretary, Dr. Hamad bin Hamza Al-Gifal’s, emphasis on the exhibition’s importance within the Ministry’s efforts to promote the role of the non-profit sector in serving the community and supporting quality initiatives. He affirmed the Ministry’s keenness to showcase the Kingdom’s and its leadership’s efforts in caring for mosques, serving the Holy Quran, and providing da’wah and social programs that meet the needs of society. Dr. Al-Gifal also noted the quality transfer of the King Fahd Complex for Printing the Holy Quran under the Minister’s direct supervision and the increase in operational efficiency and production levels at lower costs.

    Page 15: This page continues the report on the Ministry of Islamic Affairs’ exhibition, mentioning its review of the Ministry’s efforts in volunteering and empowering the non-profit sector. It also sheds light on the Custodian of the Two Holy Mosques’ program for Hajj, Umrah, and Visit affairs, overseen by the Minister of Islamic Affairs, reflecting the Kingdom’s keen interest in serving all Muslims. The first day of the exhibition witnessed significant interaction. A separate article highlights that the Al-Azam Mosque in Al-Ula dates back to the era of the Prophet and that its absorptive capacity reaches 580 worshippers. The exhibition also reviewed quality initiatives serving Islamic and da’wah work. Another small piece mentions tree planting.

    Page 16: This page features local news, including a headline about the Haram Mosque Library being a platform for scientific provision. The article describes the library, located within the Holy Mosque in Makkah, as a significant source and cultural platform that welcomes visitors and knowledge seekers of various cultures from most countries worldwide. It offers diverse information resources and services around the clock, keeping pace with modern developments, making it one of the most important libraries in the holiest places, serving researchers and readers.

    Page 18: This page continues the discussion about the Haramain Library, emphasizing its role in enhancing the scientific and da’wah message of the Two Holy Mosques and forming an integrated system of guidance, counseling, and educational services for visitors. This is based on the directives of the leadership, which always emphasizes providing the best and highest quality services to those who visit the Two Holy Mosques. The General Presidency for the Affairs of the Grand Mosque and the Prophet’s Mosque takes pride in its performance. Another headline reports that Dr. Ali Muhammad Al-Sabahi, head of the Digital Press Club, stated that the need for innovative and attractive programs suitable for the spirituality and taste of the targeted audience has become urgent. The page also mentions the importance of using language and effective tools that resonate with today’s generation.

    Page 19: This page continues with Dr. Al-Sabahi’s statement, where he stressed the need to verify daily مشاهدات and noted a trend among Western media towards adopting innovation as a central pillar to reach and understand audience needs and interests using modern measurement technologies. Dr. Abdulaziz Al-Hazmi, a professor of communication and media at King Saud University, explained that media is changing rapidly, with new means emerging, making it important to adapt content to obtain suitable outcomes. Hamdan Yassin Al-Lahyani, a broadcaster at the Holy Mosque studio, saw the need to launch initiatives for talented youth in media fields to build a skilled media generation.

    Page 20: This page concludes Hamdan Yassin Al-Lahyani’s view on the need for youth initiatives in media. Ali Al-Ghamdi, a well-known television director, cautioned that today’s generation of recipients needs specialization in producing media content for each age group, unlike the previous generation. The page also includes the section “Unforgettable“.

    Page 21: This page features two main articles. The first is about Al-Qiblatain Mosque in Madinah, a historical mosque significant to visitors for its connection to the Prophet’s era and the direction of prayer. The second article discusses the popular markets in Najran as a living memory of a bygone era, reflecting the social life, economic patterns, daily life, customs, principles, values, and traditions of those societies. Besides their commercial role in showcasing local products and meeting various needs, they preserve the history and stories of the Najran community, serving as a place for people to gather, exchange news and stories, and share experiences.

    Page 22: This page continues the article about the popular markets in Najran, emphasizing their appeal to visitors and tourists interested in the region’s heritage. It highlights the presence of the Janabi market, as well as shops for leather, handicrafts, and traditional clothing. Another article mentions that science and culture enthusiasts find their interest in the library, likely referring back to the Haram Mosque Library. There is also a note about honoring the Director of Media in the Makkah region and a picture with the caption mentioning colleague Hani Al-Lahyani with broadcaster Yassin Al-Lahyani in the meeting. A small text notes “diligent efforts to achieve success and development“.

    Page 23: This page features a picture of worshippers praying in a mosque with the caption “distinguished architectural design“. Another picture shows a market scene with the caption “important commercial role played by the old markets“. Text below this states “markets reflect the daily life patterns, customs and traditions“. The page also reports that Sheikh Dr. Abdulaziz bin Abdullah Al Al-Sheikh, the Minister of Islamic Affairs, inaugurated the exhibition “Atyaf” of the Kingdom’s projects in الشيشان والهند, attended by the Ambassador of the Kingdom to الشيشان, Dr. Hamad Al-Gifal, and the Ambassador of India.

    Page 24: This page contains articles about mosques in different parts of the world named after Saudi kings. One article discusses the naming of Faisal Mosque in Pakistan in honor of King Faisal, recognizing his significant role in funding its construction and strengthening relations between Pakistan and Saudi Arabia, as well as his support for Islamic projects. Another article introduces King Fahd Mosque in Argentina, located in Buenos Aires, as one of the most prominent Islamic landmarks in Latin America and one of the largest mosques in Argentina and South America, built with the support of the Saudi government in honor of King Fahd bin Abdulaziz Al Saud for his role in enhancing relations between the two countries and supporting Islamic causes.

    Page 25: This page delves into the experience of students seeking knowledge in Haram. It notes that while the desire to learn is prevalent, it often arises early in the children of scholars but can be delayed for others due to family obstacles. A significant portion of students come from non-Arab backgrounds, requiring them to first learn Arabic to understand lectures. Younger students or those who didn’t learn Arabic in their home countries start by reading the Quran before attending schools run by members of their community in Makkah, where they are taught Arabic with the help of books in their native language. After overcoming these initial difficulties, these students join their academic studies in Haram. Some students, not being of the same status as scholars, may remain with them to further their knowledge.

    Page 26: This page continues describing the educational environment in Haram, mentioning that lectures are open and free to all, even for those just curious, who are expected to sit at the back. Those intending to study regularly choose a spot between acquaintances. After a few lectures, the teacher notices their presence and might speak to them at the end, though there is no formal registration. A teacher might even visit a student if they are absent, emphasizing that learning in Haram is not compulsory.

    Page 27: This page begins a section titled “Ramadan Days” with a piece called “Planks and Nails” discussing ships as a means of transportation that has brought peoples closer, increased trade, and boosted economies. It explains the principle of buoyancy based on density and mentions that the first ship was built by Prophet Noah (peace be upon him), as mentioned in the Quran (Surah Al-Qamar: 13), which describes it as being made of “planks and nails” (دسر meaning nails). It also points out that while ships were initially stationary, God has enabled them to be moved by machines or wind.

    Page 28: This page continues the discussion about ships, noting the design of ships with a “U” shape to help them stay afloat on the sea surface. It reiterates that the first ship was built by Prophet Noah, taught by God and made of wood and nails. The page then shifts to historical context with a section about the appointment of Muhammad bin Yusuf Al-Thaqafi as governor of Makkah during the reign of Al-Walid bin Yazid. Although his appointment was intended to establish order, the political situation was unstable due to internal conflicts within the Umayyad dynasty, which affected the central government’s authority.

    Page 29: This page continues discussing the Umayyad era, noting that while Makkah was not directly affected by security disturbances, it was not immune to the impact of the internal Umayyad conflicts. The governors appointed from Damascus played a key role in maintaining security, organizing Hajj affairs, and ensuring stability, but their positions changed with the shifting power dynamics in Damascus.

    Page 30: This page concludes the historical overview of Makkah during the Umayyad period, stating that the reign of Al-Walid did not witness radical reforms in Makkah and was more of a transitional phase reflecting the political struggles as the Umayyad state began to weaken in its final years. While Makkah did not suffer directly from security unrest, it experienced administrative instability due to the central government’s weakness, leading to frequent changes in the governors of the Hijaz according to the fluctuating political landscape in Damascus. Therefore, Al-Walid’s rule in Makkah was less about achievements and more about reflecting the growing weakness within the Umayyad state.

    Page 31: This page features financial and economic news. The main headline announces that the Kingdom has obtained numerous global upgrades in its credit ratings, reflecting the continuous positive trend in the Saudi economy and the effectiveness of the implemented structural reforms and financial planning policies that enhance financial sustainability and the strength of the Kingdom’s financial position. In this regard, Standard & Poor’s (S&P) agency raised the Kingdom’s sovereign credit rating in local and foreign currencies to A+ with a stable outlook.

    Page 32: This page continues the report on the Kingdom’s credit rating upgrade by Standard & Poor’s to A+, emphasizing that this high rating signifies a strong creditworthiness. The article explains the rating scale and mentions that S&P had given the Kingdom the same rating in the previous February. It highlights the importance of these ratings and those from other international agencies like Moody’s, as they provide insights into the strengths and weaknesses of the national economy, aiding in the implementation of SWOT analysis to enhance strengths and minimize weaknesses for the benefit of the Kingdom.

    Page 33: This page further explains the significance of credit ratings, stating that creditors use these ratings to assess the risks of a country defaulting on its debts and to determine the interest rates they will charge. A strong credit rating (e.g., A) means lower borrowing costs for the country.

    Page 34: This page discusses the implications of credit ratings on a country’s ability to borrow and the associated costs, emphasizing that a high credit rating allows a country to obtain financing at more favorable terms within the accepted international standards.

    Page 35: This page presents economic data, noting that consumer prices in the Kingdom rose by 1.0% in the latest reading, mainly due to a 25.5% increase in meat and poultry prices, a 3.7% increase in food and beverage prices, and a 3.9% rise in the prices of miscellaneous personal goods and services, driven by a 26.7% increase in jewelry and watches. The hospitality sector also saw a 0.8% increase due to higher restaurant and hotel prices, while higher education fees rose by 4.3%. On the other hand, some sectors experienced price declines, with transportation prices falling by 1.5%, influenced by a 2.4% decrease in vehicle purchase prices and a 2.5% drop in furniture and household equipment prices.

    Page 36: This page continues the discussion of the Saudi economy, noting the drop in furniture and household equipment prices by 2.5%. It concludes by stating that oil production is a major contributor to the Kingdom’s economy and generates significant revenue for the state. The page then introduces a new section titled “Kingdom’s Economy.. From ‘Contraction’ to ‘Growth’” by Dr. Abdullah bin Abdulmohsen Al-Faraj.

    Page 37: This page features an article by Dr. Abdullah bin Abdulmohsen Al-Faraj discussing the Saudi economy’s shift from “contraction” to “growth”. It also includes a separate piece about crude oil futures recording a slight rise in the last trading session of the past week, yet still hovering near their lowest levels in several years due to ongoing economic pressures and demand forecasts, potentially contributing to continued downward pressure on prices. Hassan Qafterid, Chairman of the Board of Directors of Fawaz Company, also noted that fears of a potential recession in the United States played a significant role in increasing market uncertainty, along with concerns related to US tariffs affecting major oil market participants like China.

    Page 37: This page continues the discussion on oil prices, stating that the persistence of these factors is expected to reinforce negative sentiment, potentially limiting any significant increase in oil prices, especially given the possibility of slower economic growth and declining demand from major economies. The oil market remains subject to volatility, particularly due to geopolitical risks and their impact on investor sentiment. Developments in the Iranian nuclear talks are also seen as a crucial factor influencing future market direction, as a reduction in sanctions could significantly increase oil supply, further contributing to downward pressure on prices.

    Page 38: This page continues the analysis of the oil market, noting that US crude oil production is expected to reach new record levels this year, which could put additional pressure on prices, especially in April. OPEC+’s continued plans to increase production could also add supply pressure unless demand successfully absorbs the extra volumes. Officials from oil companies gathered in Houston last week learned that the agenda of US President Donald Trump, who supports fossil fuels, represents a negative aspect.

    Page 39: This page discusses the positive impact of improved economic performance on the Kingdom, noting that investments in infrastructure, transportation, housing, and healthcare contribute to improving the quality of life. Reforms in the education sector also support sustainable development and enhance human resources. The Kingdom’s high credit rating strengthens its position as a reliable investment destination, enhancing its role as a leading economic center in the region. The future holds many opportunities, and the Kingdom is moving steadily towards achieving economic transformation, with a focus on diversification, integration, innovation, and promoting a sustainable environment, which will make it a leading model in sustainable development and enhance its presence in global markets.

    Page 40: This page contains classified advertisements, including a notice from a Yemeni national, Hajer Ali Mohammed, reporting the loss of his passport issued in Riyadh and requesting its return to the nearest Passport Department or the Yemeni Embassy in Riyadh. There is also a section titled “Demands to Strengthen Reforms in the Accounting Profession and Improve Audit and Review Processes“, reporting on a symposium hosted by the ICAEW in Riyadh where financial leaders, regulators, academics, and industry experts discussed the growing role of the accounting profession in maintaining investor confidence and financial transparency.

    Page 41: This page continues the report on the symposium about the accounting profession. Participants agreed that accounting firms must move beyond regulatory compliance and integrate responsible institutional leadership into their culture effectively and clearly. Mohammed Taha, a partner at KPMG, pointed out a gap between professional ethical standards and their actual application, stating that leadership should prioritize the public interest and investors’ needs and have the ability to uncover unethical practices.

    Page 42: This page continues the discussion from the accounting symposium. Mansour Mohammed Nour Al-Raboufi, Director of the Prophet’s Center for Sustainability and Climate at Sultan University in the Kingdom, mentioned his university’s aim to be the first certified carbon-free university in the Middle East and North Africa. He highlighted the lack of transparency in ethical governance among companies, noting that research shows very few companies clearly disclose their ethical principles on their websites in the Middle East and North Africa. He emphasized that companies should make ethical values an integral part of their operations instead of just having undeclared or partially available confidential policies.

    Page 43: This page reports on the humanitarian suffering in Gaza, highlighting the ongoing siege and its severe impact on the population. It mentions the systematic closure policies that extend beyond bakeries and affect transportation and fuel sectors, disrupting citizens’ movement and access to hospitals and workplaces, depriving thousands of essential services. The siege has turned Gaza into a large prison, denying people their basic rights, leading to severe shortages of clean water and an increasing crisis in the use of contaminated water, as well as shortages of food and medicine.

    Page 44: This page continues the report on Gaza, with the Palestinian Foreign Ministry affirming its follow-up on the repercussions of the Israeli occupation’s campaign against humanitarian aid organizations. The ministry called on the international community and relevant UN institutions to intervene to stop the occupation’s measures against these organizations working in the humanitarian field. In a press statement, the ministry expressed its serious concern about the measures taken by the Israeli occupation authorities against international humanitarian aid organizations in the occupied Palestinian territories, which create significant obstacles to their work.

    Page 45: This page continues the report on the situation in Palestine, mentioning the recent exchange of prisoners. It emphasizes that the Israeli targeting aims to undermine the clear Palestinian identity. The orders to restrict access have not been limited to entering Al-Aqsa Mosque but extend to preventing any presence in the Old City and its surroundings, severely restricting Palestinians’ right to practice their religious rituals freely. These decisions are part of the occupation’s strategy for systematic demographic and geographic alteration of Jerusalem, intensifying forced displacement and continuous attacks and harassment of residents.

    Page 46: This page further discusses the escalating concerns in Jerusalem during Ramadan due to Israeli policies. It calls for Arab and international stances to confront these violations and ensure Palestinians’ right to access their holy sites. The Israeli policy of displacement, especially during Ramadan, reflects plans aimed at Judaizing the holy city and imposing complete control over it. Israeli displacement decisions are a blatant violation of international laws and conventions that prohibit forced displacement and racial discrimination.

    Page 47: This page elaborates on the Israeli actions in Jerusalem, stating that according to the Fourth Geneva Convention, the occupation is prohibited from forcibly transferring residents from their lands or imposing collective penalties. UN resolutions affirm the Palestinian right to access religious holy sites freely. However, Israeli authorities continue to disregard these laws, exploiting weak international political stances to continue their repressive policies against Jerusalemites. The impact of displacement extends beyond preventing access to Al-Aqsa Mosque, significantly affecting their daily lives, with many losing their jobs and social connections. Targeting influential figures aims to weaken any societal resistance to Judaization policies.

    Page 48: This page highlights the continued steadfastness of Jerusalemites despite the ongoing repression and their efforts to challenge displacement decisions through popular solidarity and community cohesion. The steadfast individuals ( المرابطون) at Al-Aqsa Mosque remain a living model of resistance amidst increasing Palestinian calls to intensify visits to the Mosque and the Old City. Additionally, Israeli occupation forces launched raids and arrests in several Palestinian cities, while continuing to burn homes in Jenin and Tulkarm in the northern occupied West Bank. Local sources reported the martyrdom of Maher Abdul Salam from Sarata village west of Salfit, after being chased by Israeli forces near the wall in Al-Ram, north of occupied Jerusalem. Israeli forces also raided the cities of Nablus and Qalqilya, as well as the new Askar and Balata camps in Nablus.

    Page 49: This page continues reporting on the Israeli raids, stating that occupation forces raided Askar refugee camp at dawn, arresting 6 Palestinians east of Nablus in the towns of Beit Furik and Beit Dajan, which led to clashes involving the firing of sound bombs and tear gas. Israeli forces also raided the village of Odla south of Nablus, arresting student Ibaa Amar from An-Najah National University in Rafidia, west of the city, and also arrested Jihad Khousri and Fahmi Al-Jaghoub after raiding their homes in Beitah, south of the city. The page then shifts to “Burning Homes in Tulkarm and Jenin“, detailing the intensification of Israeli forces’ aggression on Tulkarm and its camp, including raiding commercial shops, searches, and setting fire to and detonating homes in Nur Shams camp. Local sources reported two military vehicles of the occupation stationed around Sweika roundabout in the northern neighborhood of the city, where Israeli soldiers obstructed the movement of vehicles and residents, especially after the Taraweeh and Isha prayers, checking IDs, detaining youth in the field, amidst the firing of sound bombs and live ammunition to intimidate residents. Occupation forces also raided several commercial shops on Sweika Street, conducting thorough searches and interrogating workers before forcing their closure, and arrested Palestinian Muath Abu Samla after raiding his home.

    Page 51: This page reports on a Syrian incident where a scrap metal collector caused a rocket to explode in Latakia, western Syria, resulting in the death of 16 people according to the Civil Defense. Another news item states that Aleppo International Airport will resume operations tomorrow. In the “Political” section, it mentions that the American strikes came after the Houthi threat to attack ships (Reuters). Below this, there is a report that earlier this month, the United States re-designated the “Ansar Allah” movement (“Houthis”) as a “foreign terrorist organization” and banned any American dealings with it.

    Page 52: This page focuses on cultural and entertainment news, specifically about the historical drama “Al-Zafer“. Actor Jabran Al-Jabran expressed his happiness in participating in the series, describing it as unique and different from previous works, blending imagination and reality and drawing its stories from various historical narratives and events. He praised Abdullah Hazazi, the director, and thanked him for his support in producing the work for radio and television. Al-Jabran also revealed that Dr. Rashid Al-Shamrani was a key reason for his joining the series, as he provided encouragement and support. He also thanked performance coach Rashid Al-Warthan for his outstanding role as “Khabalan” and acknowledged the challenges faced by director Sheikh Najib Saif in accurately portraying the details of the historical period, overcoming the difficulty of time constraints, terrain, and filming.

    Page 53: This page continues the discussion about the drama series “Al-Zafer,” with Jabran Al-Jabran adding that the cast includes an elite of Saudi actors from various regions of the Kingdom, aiming to present a comprehensive work that blends authenticity and renewal. Among the prominent names in the series are Muhammad, Marwa Muhammad, Ghada Al-Mal, Azzam Al-Nimri as “Jaber,” Rahi Fahd as “Mashoura,” and others. The script was written by Othman Juhi, who ensured a mix of imagination and reality while addressing social issues such as tribal conflicts, land disputes, farms, trade caravans, and protecting villages and markets. Jabran concluded by noting that despite the work not yet being shown, there are widespread expectations of its great success in the upcoming period, with some critics seeing the focus on positives at this stage as necessary to support Saudi drama, which is witnessing noticeable development in the coming years with numerous productions.

    Page 54: This page features news about the cultural scene. Sharifah Al-Nadi, the president, emphasized the importance of the Zahrani Club in gathering enthusiasts and providing a nurturing environment for practicing the hobby of reading and other hobbies under an official umbrella, facilitating their registration and fostering support, development, and motivation for creative ideas. Ruby Al-Ghamdi from the club pointed out that the club will be a source of inspiration and creativity through books, providing members with discovery factors. Hanan Mar’i added that the club contributes to promoting the habit of reading among individuals in society and developing intellectual skills, in addition to holding cultural events, workshops, and hosting writers and authors to enrich the members’ experience.

    Page 55: This page introduces “Video Art.. and Contemporary Art Movements,” considering it one of the most prominent contemporary artistic trends that emerged from the intersection of arts and technology. Video art has managed to break traditional barriers in art and present a new human language carrying philosophical and experimental meanings. With the rapid developments witnessed by the artistic scene, the question arises: How has video art flourished in the artistic arena? Since its launch in the sixties of the last century, video art came as an innovative artistic experiment aiming to explore the temporal and spatial dimensions of the moving image, thus liberating itself from the constraints of traditional cinematic forms and representing new windows where technology intertwines with artistic expression, providing artists with a new canvas for creativity and experimentation through modern techniques.

    Page 56: This page continues the discussion about the rise of video art in the local and international artistic scene and art galleries. This art form has faced challenges, as specialized artistic infrastructure and academic curricula were not always available, while audiences were more accustomed to traditional art forms. However, change began to appear with the openness of cultural institutions and their support, along with the organization of specialized events aimed at shedding light on this trend. The Damman International Video Art Forum is mentioned as a living example of the efforts made to establish this art in the Arab world, bringing together local and international artists and critics in experimental works that combine modern thought and technical experimentation, highlighting the potential of video art.

    Page 57: This page describes the traditional architecture of villages in Asir, characterizing them as open museums that embody the cultural identity of the region, offering visitors an exceptional journey and presenting a living reflection of the daily lives of ancestors, contributing to interactive experiences that harmonize with the demands of the era. The page details the traditional house design with interconnected rooms like bedrooms, kitchen, and majlis, plus interior courtyards as the heart of daily life. It mentions the skill of the region’s inhabitants in adapting inherited techniques within advanced construction possibilities over decades, evident in the wall design using a mixture of stone and mud resistant to rain, and considering the direction of openings in the architectural sun.

    Page 58: This page concludes the description of Asir’s traditional architecture, quoting architect Farid who affirms that the simplicity of the clay villages is not a deficiency of creativity but rather a witness to the heritage. The page then introduces a new section “Al-Khuzama” featuring poetry and photography with the theme “Ramadaniyat“.

    Page 59: This page continues the “Al-Khuzama” section with more poetry, including a piece titled “A Flower’s Scent Imitates the Scent of Cambodian Wood” by Bahloul Al-Zamily Al-Shammari, expressing imagery related to the desert and its scents.

    Page 60: This page continues the poetry section of “Al-Khuzama,” featuring a poem by Salem bin Mohammed Al-Sa’er from Al-Marah in Al-Ahsa Governorate, known for his strong and purposeful social poetry. This particular poem focuses on the spiritual atmosphere of the blessed month of Ramadan, urging the observance of inner piety and the enjoyment of its days and nights, emphasizing Ramadan as a generous month of happiness, tolerance, and harmony.

    Page 61: This page continues Salem bin Mohammed Al-Sa’er’s poem about Ramadan, highlighting its blessedness, the joy it brings, and the opportunities for spiritual growth and good deeds.

    Page 62: This page continues the same poem, further elaborating on the virtues of Ramadan, such as fasting, reflection on the Quran, seeking forgiveness, and acts of charity and kindness towards neighbors and those in need.

    Page 63: This page concludes Salem bin Mohammed Al-Sa’er’s poem, emphasizing the importance of avoiding extravagance, safeguarding blessings, observing inner piety, seeking happiness in worship, reciting the Quran, and repenting from sins. It also touches on the themes of generosity and the changing seasons.

    Page 64: This page ends Salem bin Mohammed Al-Sa’er’s Ramadan poem, continuing with themes of generosity, seeking rain, the beauty of nature after drought, and seeking forgiveness for sins. It also includes a final stanza about elevating one’s soul through devotion to God and sending blessings to the Prophet Muhammad, followed by the name of the poet, Mohammed Al-Salam.

    Page 65: This page features another poem in the “Al-Khuzama” section titled “This Nature is a Lasting and Beautiful Love” by Saud Ayash Al-Harbi from Jeddah, expressing a deep connection to nature and its beauty.

    Page 66: This page continues the poem by Saud Ayash Al-Harbi, further describing the beauty and allure of nature, including valleys, plains, and the flow of water. It also includes another poem by Muhammad Abdullah Al-Waili from Hawtat Sudair, cautioning against the dangers of floods and urging preparedness, as life is fleeting.

    Page 67: This page continues Muhammad Abdullah Al-Waili’s poem about the dangers of floods. It also features another short poem and some fragmented text that is difficult to summarize coherently but seems to relate to emotional feelings and the beauty of nature.

    Page 68: This page concludes the fragmented poem. It also features a headline “Poetry and Art Arena Mourns the Passing of Abdullah Al-Asmari“, marking the transition to obituaries and tributes. The page includes contact information for submitting poetry and photos to the “Al-Khuzama” section.

    Page 69: This page is dedicated to mourning the passing of the esteemed poet and lyricist Abdullah Al-Asmari, who passed away due to a sudden health issue. The article highlights Al-Asmari’s significant contributions to popular song in the nineties, with many famous singers performing his lyrics, including the song “The Wounds” sung by Rashed Al-Fares. The lyrics of this song,

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Lata Mangeshkar: A Voice of the Millennium

    Lata Mangeshkar: A Voice of the Millennium

    The text presents a transcript of a performance featuring Lata Mangeshkar, a highly celebrated Indian singer. It contains introductory remarks praising her talent and influence, comparing her voice to the “Voice of the Millennium.” The transcript showcases various song performances, including duets with her sister Usha, and also features appearances by prominent actors like Amitabh Bachchan. Many of the songs are from well-known films and evoke themes of love, longing, and devotion. Interspersed throughout are expressions of praise and appreciation from the audience and hosts. The event appears to be a tribute to Mangeshkar’s legacy and her impact on Indian music.

    The Voice of the Millennium: A Study Guide to Lata Mangeshkar

    Quiz

    Answer the following questions in 2-3 sentences each.

    1. According to the speaker at the beginning of the recording, what two things does India’s neighboring country say they are missing that India possesses?
    2. What comparison does the speaker make between Lata Mangeshkar’s voice and a sitar?
    3. According to the speaker, what role does Lata Mangeshkar’s voice play in the connection between humans and the divine?
    4. What does the song “These people took my dupatta” describe?
    5. What does the song “I have a desire to live” convey about life?
    6. According to Amitabh Bachchan, what should life be in “Kabhi Kabhi Mere Dil Mein Khayal Aata”?
    7. What is the story in “Embrace me, I do not know in which world I have lost you”?
    8. What promise is made in “I will have to fulfill the promise that I made”?
    9. What does the song “You met me in the rain” describe?
    10. What emotions does the speaker describe when explaining “Pardesi”?

    Quiz Answer Key

    1. The speaker says that India’s neighboring country feels that they have everything that India does, except for the Taj Mahal and Lata Mangeshkar. This highlights the perceived cultural significance and uniqueness of Lata Mangeshkar’s contribution to India.
    2. The speaker compares Lata Mangeshkar’s voice to a sitar, specifically its sympathetic strings. He suggests that the purity and strength of her voice resonate so deeply that they cause the “strings of the human soul” to vibrate, similar to how sympathetic strings on a sitar vibrate in response to the main strings.
    3. The speaker believes that Lata Mangeshkar’s voice serves as a bridge or a “string” connecting the human soul with the divine. Her singing is presented as a conduit for spiritual experience and a means of touching the divine through music.
    4. “These people took my dupatta” (veil) describes the speaker’s claim that someone stole her veil. The veiled claim is “proven” when “Bajwa” and “Rajwa” corroborate that the speaker was given “ashrafi gaj dupatta,” or “pink dupatta”.
    5. “I have a desire to live” expresses a feeling of renewal and the intention to embrace life, even in the face of potential death or hardship. It suggests a cyclical view of life and death, with a renewed determination to experience life fully despite its challenges.
    6. According to Amitabh Bachchan in “Kabhi Kabhi Mere Dil Mein Khayal Aata,” life should be able to pass by in the shade of “your zulfon ki chha (hair)” or the “shade of sorrow and grief”. He says he could have been lost in “your shoes, but that couldn’t happen.”
    7. The song “Embrace me, I do not know in which world I have lost you” describes a situation where the singer has been abandoned in a world, and expresses the feeling of being alone and lost without their love one. The song highlights the themes of loss, longing, and the search for connection in a seemingly desolate world.
    8. “I will have to fulfill the promise that I made” emphasizes the importance of honoring commitments and staying true to one’s word, even when faced with opposition or difficulty. The singer is vowing to meet their commitments, no matter what.
    9. “You met me in the rain” depicts a romantic encounter during a rain shower, where the singer expresses joy and fulfillment in finding love. The song conveys themes of love, destiny, and the transformative power of romantic relationships in the rain.
    10. When explaining “Pardesi” (Foreigner), the speaker describes thirst, agony, and yearning for the beloved who is far away.

    Essay Questions

    1. Analyze the use of metaphor and symbolism in the excerpt, focusing on how Lata Mangeshkar’s voice is portrayed and what deeper meanings are attributed to her singing.
    2. Discuss the representation of love and loss in the various songs included in the excerpt. How do the lyrics and musical styles contribute to the emotional impact of these themes?
    3. Explore the cultural significance of Lata Mangeshkar in the context of Indian society. How does the excerpt portray her role as a cultural icon and a figure of national pride?
    4. Examine the role of music and performance in creating a sense of community and shared emotional experience, based on the events and songs described in the excerpt.
    5. Compare and contrast the themes and styles of at least three different songs from the excerpt, discussing how they reflect different aspects of Indian culture and human experience.

    Glossary of Key Terms

    • Lata Mangeshkar: A highly celebrated and influential Indian playback singer, widely regarded as one of the greatest and most influential singers in India.
    • Taj Mahal: An ivory-white marble mausoleum on the bank of the Yamuna river in the Indian city of Agra, built in 1632. It is widely recognized as “the jewel of Muslim art in India and one of the universally admired masterpieces of the world’s heritage”.
    • Sitar: A plucked stringed instrument used in Hindustani classical music, similar in appearance to a lute.
    • Sympathetic Strings: Additional strings on a sitar (or other stringed instrument) that resonate in response to the main strings, creating a fuller and richer sound.
    • Saraswati: The Hindu goddess of knowledge, music, arts, wisdom, and learning.
    • Bollywood: The Hindi-language sector of the Indian motion picture industry.
    • Playback Singer: A singer whose singing is pre-recorded for use in movies. Actors then lip-sync to the playback singer’s voice on screen.
    • Kabhi Kabhi: English translation “Sometimes”, is a 1976 Indian musical romantic drama film produced and directed by Yash Chopra.
    • Mukesh ji: Mukesh Chand Mathur (22 July 1923 – 27 August 1976), was an Indian playback singer.
    • Zulfon Ki Chha: “hair”.
    • Shehnai: is a musical instrument, originating from the Indian subcontinent. It is made of wood, with a double reed at one end and a metal or wooden flare at the other.
    • Dupatta: A long, multi-purpose scarf that is essential to many South Asian outfits.
    • Main Tulsi Tere Angan Ki: “I am the Tulsi of your Courtyard” is a 1978 Indian drama film directed by Raj Khosla.
    • Angan: “courtyard”.
    • Sindoor: A traditional vermilion red or orange-red colored cosmetic powder from the Indian subcontinent, usually worn by married women along the part of their hairline.
    • Gajra: A flower garland that South Asian women wear in their hair during festive occasions.
    • Kangana: Indian bracelets.
    • Ghungroo: A musical anklet tied to the feet of classical Indian dancers.
    • Begum: A royal title designating a high-ranking noblewoman.
    • Pardesi: “Foreigner”.
    • Radha: A Hindu goddess and a popular deity in Hinduism. She is worshiped as the goddess of love, tenderness, compassion and devotion.
    • Bindiya: Decorative marks worn in the middle of the forehead just above the eyebrow in South Asia (particularly India, Pakistan, Bangladesh, Nepal, Sri Lanka and Myanmar) and Southeast Asia.
    • Pallu: The loose end of a sari, typically draped over the shoulder or head.
    • Aarti: A Hindu ritual of worship, in which light from wicks soaked in ghee (clarified butter) or camphor is offered to one or more deities.
    • Bhajan: A Hindu devotional song, often expressing love and devotion to a deity.
    • Sharmilee: English translation, “Shy”, is a 1971 Indian Hindi-language romantic drama film, produced by Subodh Mukherjee and directed by Samir Ganguly.

    Lata Mangeshkar Tribute: A Celebration of Music and Legacy

    Okay, here’s a briefing document based on the provided excerpts from “01.pdf”. This document focuses on the main themes, key ideas, and notable quotes.

    Briefing Document: Analysis of Excerpts from “01.pdf”

    Overview:

    The excerpts appear to be transcripts from a live musical performance, likely a tribute concert or a special featuring Lata Mangeshkar, a highly celebrated Indian singer. The document showcases not only Mangeshkar’s performance but also the immense respect and adoration she commands. The presentation includes introductory speeches filled with praise, song performances, and interactions with other artists and personalities. The atmosphere is one of reverence and celebration of Mangeshkar’s contribution to music and Indian culture.

    Main Themes:

    • Tribute and Adulation of Lata Mangeshkar: This is the central theme. The event is explicitly framed as a tribute to Mangeshkar’s extraordinary talent and impact. The introductory speeches are effusive with praise.
    • “How do I introduce that person whose voice is not only the voice of the country but the voice of the whole world, undoubtedly a voice that should be called the Voice of the Millennium in its truest sense?” This quote exemplifies the hyperbolic admiration.
    • *”Whenever people from our neighboring country meet us, they say that we have everything that you have in India, except two things that are missing: Taj Mahal and Lata Mangeshkar [praise].” *This illustrates her national and cultural significance.
    • The speaker compares her voice to the sympathetic strings of a sitar that vibrate when struck, implying purity and strength that resonates with the human soul.
    • The Power and Spirituality of Music: The excerpts highlight the belief that music, particularly Mangeshkar’s, possesses a divine quality and can connect people to something greater than themselves.
    • “In Lata ji’s tune, in Lata ji’s singing, in Lata ji’s voice, I believe that there is so much strength, so much purity that it makes the strings of the human soul vibrate.”
    • “If there is such a string Or is there any such string which ties the soul of man with the god, then the name of that string, that string is Lata Mangeshkar”
    • Love, Loss, and Longing (expressed through song): The song lyrics frequently explore themes of love, both requited and unrequited, the pain of separation, and the longing for connection. Many songs depict the pain of separation (“Pardesi”, “I don’t know in which world”). Others depict meeting a lover in the rain, or the joy of connection
    • Nostalgia and Remembrance: The inclusion of older songs and the references to films from the past evoke a sense of nostalgia and remind the audience of the rich history of Indian cinema and music.

    Key Ideas and Facts:

    • Mangeshkar’s unparalleled legacy: She is portrayed as an iconic figure whose voice transcends national boundaries and generations.
    • Diverse musical styles: The performance includes a range of song types, from romantic ballads to more folk-inspired pieces.
    • Collaboration and Camaraderie: The presence of other artists like Amitabh Bachchan, Shashi Kapoor, Rakhi, and Usha Mangeshkar emphasizes the collaborative nature of the music industry and the respect Mangeshkar enjoys from her peers.
    • The meticulous preparation that Mangeshkar puts into every program she performs The announcer mentions this in the middle of the presentation.

    Notable Sections/ Performances:

    • “Kabhi Kabhi Mere Dil Mein”: Introduction by Amitabh Bachchan, Shashi Kapoor, and Rakhee. Shows importance of film music in the culture. The song is introduced with couplets of poetry.
    • “Main Tulsi Tere Aangan Ki”: Sung after an introduction by Nargis Dutt.
    • “Megha Chhaye Aadhi Raat”: Song that involves images of clouds and rain and the loss of sleep.
    • The folk song about the girl whose dupatta was stolen.
    • The performance with Usha Mangeshkar of “One One Friend is My Cloth”: A song about valuing friends above all else

    Overall Impression:

    The excerpts paint a vivid picture of a cultural event deeply rooted in admiration for Lata Mangeshkar. The performance celebrates her musical genius and her profound connection with her audience. The blend of heartfelt speeches, iconic songs, and collaborative performances makes this a truly special event.

    Frequently Asked Questions about Lata Mangeshkar and Indian Music

    1. Who was Lata Mangeshkar and why is she so revered in India and beyond?

    Lata Mangeshkar was an iconic Indian playback singer, widely regarded as one of the greatest and most influential singers in the history of Indian music. She was often described as the “Nightingale of India” for her melodious voice and significant contribution to the Indian film and music industry for over seven decades. Her voice transcended geographical boundaries, earning her global recognition and immense respect, not only as the voice of India, but potentially even “the Voice of the Millennium”.

    2. What is the significance of comparing Lata Mangeshkar to the Taj Mahal?

    The comparison highlights Lata Mangeshkar’s unique and irreplaceable status within Indian culture. Just as the Taj Mahal is a symbol of India’s architectural and artistic brilliance, Lata Mangeshkar represents the pinnacle of musical achievement. The excerpt suggests that, to people from a neighboring country, India possesses two treasures unmatched elsewhere: the Taj Mahal and the voice of Lata Mangeshkar, emphasizing her cultural importance.

    3. What is the analogy of the sitar strings used in the introductory speech about Lata Mangeshkar, and what does it convey?

    The speaker uses the analogy of a sitar to describe the impact of Lata Mangeshkar’s voice. The main strings of the sitar represent her core talent and the clear notes she produces. The sympathetic strings, which vibrate on their own when the main strings are played perfectly, symbolize how her voice resonates deeply within the human soul, evoking emotion and spiritual connection. This illustrates the purity and power of her voice to stir emotions and connect people to the divine.

    4. What themes and emotions are frequently expressed in the songs performed in this collection?

    The songs encompass a wide range of human emotions and experiences, including love (both romantic and platonic), longing, separation, hope, despair, devotion, and the complexities of life. They explore themes of life’s journey, the pain of loss, the desire for connection, and the yearning for the divine, often using metaphors of nature such as rivers, oceans, clouds, and storms to amplify these feelings.

    5. Why is there repeated emphasis on separation and longing (“Pardesi,” “I don’t know in which world I have lost you”) in some of the songs?

    The recurring themes of separation and longing likely reflect universal human experiences of loss, unfulfilled desires, and the search for connection. In the context of Indian music and culture, these themes can also be interpreted as metaphors for the soul’s yearning for union with the divine or the pain of separation from loved ones.

    6. What does the song “Main Tulsi Tere Angan Ki” signify about the role of women and their devotion?

    “Main Tulsi Tere Angan Ki” (“I am the Tulsi of your courtyard”) signifies a woman’s selfless devotion and dedication. The Tulsi plant is considered sacred in Hinduism and is often found in the courtyards of homes. By identifying herself as the Tulsi, the singer expresses her humility, selflessness, and willingness to serve and offer herself completely. The lyrics “I am nobody of your lover’s” suggest a renunciation of personal desires for the sake of devotion or societal expectations.

    7. What elements of classical Indian music can be identified in the selection of songs presented?

    The songs blend popular and classical elements. While presented in a more accessible form, the excerpt mentions the raag Bhairavi and also makes note of which songs are appreciated by those “fond of a little classical music,” demonstrating the presence of raag structure, intricate melodies, and improvisational aspects characteristic of classical Indian music within the popular context. There are references to instruments like the shehnai, used in classical performances.

    8. How is the experience of listening to Lata Mangeshkar’s music described as a communal and emotional event?

    The numerous instances of “Praise” and “Music” interspersed throughout the transcript, along with mentions of laughter and tears evoked by her songs, highlight the communal and deeply emotional nature of listening to Lata Mangeshkar. The introductions by various figures from the film industry, the interaction between Lata Mangeshkar and her sister Usha, and the audience’s enthusiastic responses all point to a shared experience of joy, nostalgia, and connection fostered by her music. Her ability to touch upon universal human experiences created a collective emotional response among listeners.

    Lata Mangeshkar: Music, Melody, and the Soul

    The source discusses music in the context of performances by Lata Mangeshkar and others.

    Mentions of Music and Musical Performances:

    • An introduction praises Lata Mangeshkar, referring to her voice as the “Voice of the Millennium” and noting that music, melody, and rhythm begin and end with her name. The speaker describes the purity and strength in her voice, saying it vibrates the strings of the human soul.
    • The introduction references a belief of a bond between musical notes and the divine, suggesting Lata Mangeshkar is the string tying the soul to God.
    • The text includes the lyrics of various songs performed by Lata Mangeshkar and others, with notations indicating music and praise at different points in the performances.
    • A song from the film Kabhi Kabhi is mentioned, with couplets recited by Amitabh Bachchan.
    • The presentation of songs involves introductions by actors and presenters, providing context and praise for the music and performers.
    • Reference is made to the first National Award for music that was received for the songs of Saraswati Chandra.
    • Classical music is mentioned as being particularly appealing to some listeners.
    • Lata Mangeshkar is described as taking her performances seriously, rehearsing and preparing carefully with the orchestra.
    • The text describes music’s ability to create atmosphere and restlessness, particularly songs related to clouds and rain.
    • The yearning of the soul is expressed through song, with the eyes waiting and burning with the thirst for a stranger.
    • A story is shared about discovering Lata Mangeshkar, describing her humming with a book, and is followed by a performance of “In the rain, I met you, my dear, I met you”.

    Lata Mangeshkar: The Voice of the Millennium

    The source extensively discusses Lata Mangeshkar, highlighting her exceptional vocal talent, significant cultural impact, and the emotional depth of her music.

    Key aspects of Lata Mangeshkar, according to the source:

    • Vocal Qualities and Impact: Her voice is described as the “Voice of the Millennium,” possessing purity and strength that resonates deeply, even vibrating the strings of the human soul.
    • Cultural Significance: She is highly esteemed, with some people from a neighboring country saying that India has two things they miss: the Taj Mahal and Lata Mangeshkar.
    • Divine Connection: There is a sense that her music bridges the gap between the human soul and the divine.
    • Performance Context: The source includes introductions and contextual information about her performances, with actors and presenters offering praise.
    • Dedication to Her Art: Lata Mangeshkar is portrayed as a dedicated artist who approaches every performance with seriousness, rehearsing meticulously with her orchestra.
    • Range and Emotion: The songs she sings evoke a range of emotions, from making children cry with a mother’s song to making mothers cry with a children’s song. Her songs can create atmosphere and restlessness, especially those related to rain and clouds.
    • Duets: Lata Mangeshkar perfoms duets with her sister Usha.
    • Discovery: A story is shared about discovering Lata Mangeshkar as a young girl humming with a book, which led to a performance of “In the rain, I met you, my dear, I met you”.

    Adoration of Lata Mangeshkar: A Vocal Gem

    The source includes numerous instances of praise, mainly directed towards Lata Mangeshkar for her vocal talent and cultural impact. There are also instances of praise for other performers and the emotional impact of the music presented.

    Key instances and aspects of praise found in the source:

    • Lata Mangeshkar:
    • She is introduced as someone whose name is an introduction in itself, with her voice described as the “Voice of the Millennium”.
    • Her musical talent is considered a “priceless gem”.
    • The purity and strength in her voice are said to vibrate the strings of the human soul.
    • She is seen as a figure who connects the soul to the divine through her music.
    • Her cultural significance is emphasized, with a comparison to the Taj Mahal.
    • Performers frequently express gratitude and admiration for her presence and performances.
    • Performances and Songs:
    • Introductions by actors and presenters offer praise for the music and performers, setting the stage for the songs.
    • Specific songs are highlighted for their beauty and emotional resonance.
    • The ability of music to evoke emotions such as joy, sorrow, and yearning is a recurring theme, indirectly praising its impact.
    • Other Artists:
    • There is praise and respect shown to other artists who share the stage with Lata Mangeshkar, such as her sister Usha.
    • Acknowledgment of artists such as Amitabh Bachchan, Shashi Kapoor and Rakhee.
    • General Adoration:
    • The audience’s enthusiastic reception, indicated by applause and cheering, underscores the widespread appreciation for the performances.
    • Expressions of gratitude towards artists for sharing their talent and evoking emotions through their music are common.

    Explorations of Love Through Song Lyrics and Performance

    The source explores love through song lyrics, performance contexts, and emotional expressions.

    Aspects of love as presented in the source:

    • Central theme in songs: Many songs presented revolve around love, expressing various facets of it, including joy, yearning, loss, and devotion.
    • Expressions of love: Love is depicted through lyrics that convey deep emotions and personal connections. For example, the lyrics “There is a song of love There is the flow of fun” show love as a central theme in a song.
    • Longing and separation: The theme of separation and the yearning for a loved one is explored, highlighting the pain and desire for reunion. For example, the lines “I don’t know in which world I have lost you I do n’t know in which world I have become lonely in this world” shows the feeling of loneliness when separated from a loved one.
    • Devotion and commitment: The idea of unwavering commitment and devotion in love is present in multiple songs. For example, the lyrics “This is the first step in the world of love, I swear to you my beloved, I swear to you my beloved, let this be the first step in the world of love” reflects commitment.
    • Pain and sacrifice: The complexities of love, including pain, sacrifice, and the willingness to endure hardship for the sake of love, are explored. For example, the lyrics “If you ask me to cry, I will cry” demonstrates sacrifice.
    • Connection to spirituality: Love is sometimes portrayed as a profound, almost spiritual connection. The purity and strength of love can resonate deeply.
    • Innocence and betrayal: Love is also portrayed with the theme of betrayal. For example, the lyrics “Oh, innocent, how did you betray the eagle?”.
    • Meeting a lover: The source also contains lyrics about meeting a lover. For example, the lyrics “In the rain, I met you, my dear, I met you”.

    Songs: Lyrics, Performance, and Cultural Impact

    The source contains numerous references to songs, featuring lyrics, contexts of performance, and their emotional and cultural impact.

    Key aspects of songs discussed in the source:

    • Lyrical Content: The lyrics of many songs are included, covering themes like love, devotion, longing, and spirituality. These songs express a wide range of emotions and experiences.
    • Performance Context: Songs are presented within specific contexts, such as film performances or live concerts. Introductions by actors and presenters often provide background information and set the stage for the musical pieces.
    • Emotional Impact: The songs are noted for their ability to evoke strong emotions. They can make listeners cry or feel a sense of yearning. The music creates atmosphere and enhances the emotional resonance of the lyrics.
    • Cultural Significance: Some songs have significant cultural importance, such as those by Lata Mangeshkar, whose voice is considered the “Voice of the Millennium”. Certain songs are mentioned as having received prestigious awards.
    • Musical Style: Mentions are made of classical music and the blending of different musical elements. The arrangements and orchestrations contribute to the overall impact of the songs.
    • Collaboration and Duets: The source also mentions duets, such as those performed by Lata Mangeshkar and her sister Usha. These collaborations add another layer of depth and interest to the musical presentations.
    • Themes:
    • Love: Evident in songs expressing joy, yearning, loss, and devotion.
    • Spirituality: Some songs portray a profound, almost spiritual connection.
    • Longing and separation: Songs explore the pain and desire for reunion.
    • Devotion and commitment: Some songs reflect unwavering commitment.
    • Specific Songs Mentioned:
    • “Kabhi Kabhi Mere Dil Mein Khayal Aata” from the film Kabhi Kabhi.
    • “Main Tulsi Tere”.
    • “Baiyana Na Dharo”.
    • “Megha chaaye aadhi raat” from the film Sharmilee.
    • “In the rain, I met you, my dear, I met you”.
    • Discovery of Talent: A story is shared about discovering Lata Mangeshkar, which led to the performance of “In the rain, I met you, my dear, I met you”.
    Lata Mangeshkar Live | 1970 – 2002 | Part 1

    The Original Text

    How do I introduce that person whose name is an introduction in itself? How do I introduce that person whose voice is not only the voice of the country but the voice of the whole world, undoubtedly a voice that should be called the Voice of the Millennium in its truest sense? How do I introduce him when the music, the melody, the rhythm, everything begins and ends with his name? How do I introduce him who has won countless titles in the world, has set countless records? How can this priceless gem be valued [music]? I neither have the mind nor the words to answer these questions. Whenever people from our neighboring country meet us, they say that we have everything that you have in India, except two things that are missing: Taj Mahal and Lata Mangeshkar [praise]. Such a great achievement is a wonder in itself, but I want to try to describe the qualities of Lata ji in my small capacity. Lata ji, please forgive me for the scene. I do n’t know if you people have ever seen the sitar up close or up close. There are several main strings on the sitar which when pulled and fingers are moved on them, the sitar starts playing, notes come out from them, sound comes out. There are 10-12 more strings below these main strings, some thin ones which are generally called sympathetic strings and whenever the sitar player wants to hear their tune or sound, he plucks them with his little finger and sound comes out from them but it often happens that if the main string is pulled in such a way that its note comes out right, then these sympathetic strings start playing on their own. These sympathetic strings start playing because there is so much strength in that note, there is so much purity that due to them these strings start playing on their own. In Lata ji’s tune, in Lata ji’s singing, in Lata ji’s voice, I believe that there is so much strength, so much purity that it makes the strings of the human soul vibrate. I have another guess that there is a very amazing and strange bond between the notes of music and the divine and if there is such a string Or is there any such string which ties the soul of man with the god, then the name of that string, that string is Lata Mangeshkar Ladies and gentlemen, I bow down to the form of Saraswati herself and with great humility I request and invite Lata ji to come before us and tie our and your souls with the god Ladies and gentlemen, respected Lata Mangeshkar [Music] [Praise] [ Music] Jee tu lala la la la There is a song of a door There is the flow of fun There is a song of love There is the flow of fun There is a song of love There is the flow of fun Life and nothing else is said There is a praise on love There is the flow of fun Life and nothing else is your and my story A song of love [Music] [Music] [Praise] La la la la la la la la There is something to lose after gaining something There is something to gain after losing Life means to come and go I have to steal a lifetime from the life of two things Life and nothing else is my story It’s a song of love [Music] [Praise] [Music] [Praise] [Music] [Praise] [Music] You are a loan of the river I am your bank You are my support I am your support There is an ocean in my eyes There is water of hope Life is nothing but yours and mine The story is that love is human life It is the flow of waves Life is nothing else, my story is a story of love [Praise] [Music] These people, these people, these people, these people, these people took my dupatta These people took my dupatta These people took my dupatta [Praise] [Music] Do n’t believe me, ask Bajwa, don’t believe me, my lover, don’t believe me, ask Bajwa who gave me the gold coin gaj dupatta Who gave me the Ashrafi gaj dupatta My dupatta, ho ho ji dupatta mine, dupatta mine Do n’t believe me, ask Rajwa, don’t believe me, ask Rajwa who gave me the pink color dupatta My life is drowning in pink, these people, these people [Music] Do n’t believe me, ask your father, don’t believe me, ask your father, don’t believe me [Music] Don’t believe me, ask your father, ask your father, I know who snatched my dupatta in the market, who snatched my dupatta in the market, these people, these people, these people took away my dupatta, these people took away my dupatta, my dupatta, my dupatta my brothers and sisters, some say 200 thousand, some say 2 lakh, some say 500, how many songs, in how many languages ​​and what kinds of songs have you sung? If it’s a mother’s song, then it made the children cry, if it’s a children’s song, then it made the mother cry, if it’s a brother’s song, then it made the sister cry, then it’s Lata Mangeshkar, today my sister has done a favour by putting the burden on my head at my request, and today she has come, I am very grateful to her. I thank him and would request him to come in front of you all now Lata [Prashanta] Mangesh Pulling this out from the thorns [Prashanta] And breaking the bonds, do n’t let anyone stop the flight of the heart from getting deceived Today again I have a desire to live Today again I intend to die Today again I have a desire to live Today again I intend to die [Music] I am not in my control, my heart is not in my control I am not in my control, my heart is somewhere I don’t know what I will achieve and settle my life Today again I have a desire to live Today again I intend to die Today again I intend to die [Music] I am dust or I am a storm Should someone tell me where I am I am dust or I am a storm Someone tell me where I am I am afraid that I might get lost in the journey I have a new path Today again I have a desire to live Today again I intend to die Today again I have a desire to live Today again I intend to die [Music] I have come out of the darkness of yesterday and seen tomorrow You are rubbing your eyes while rubbing your eyes I have come out of the darkness and seen while rubbing my eyes, life is full of flowers, I have done this, today I wish to live again, today I intend to die, today I wish to live again, today I intend to die again [Music] [Prashant] The next item is in front of you, there is a group of actors who are dear to your heart, there are three characters, very notable, one is Amitabh Bachchan and one is Shashi Kapoor and with them is our very beloved sister and Rakhi, so all three will come and introduce this song which is going to be sung by Lata ji [Music] [Prashant] Hello, hello, it’s going on, hello, speak for a minute, we have worked in a film called Kabhi Kabhi, there is a song from that film, Kabhi Kabhi Mere Dil Mein Khayal Aata, written by Sahi Lun, musician Mukesh ji, but before the song, Amitabh Bachchan sahab should recite some couplets of that song to you in his beautiful voice, Amitabh Bachchan, kabhi kabhi mere dil mein khayal aata, if zindagi could have passed by in your zulfon ki chha, then it could have been shadaab bhi or in the shade of sorrow and grief. The heart that has captured my heart I could have been lost in your shoes, but that couldn’t happen Life is passing by in such a way as if it doesn’t even wish for anyone’s support Thank you [Music] F Bharat, come here Side first [Music] Second light I A [Music] [Music] Sometimes I [Music] Think Sometimes I think as if you were made for me It seems as if you were made for me You were living in the stars before now Somewhere you were living in the stars before now Somewhere you have been called on earth for me You have been called on earth for me [Music] Sometimes my Maya [Music] Bhaata [Music] Ke Ri, these are the rich shade of these people This will be for me [Music] [Music] [Praise] Sometimes I think as if the shehnai is playing in the paths [Music] It is a beautiful night on the paths I am lifting the veil You are shrinking, you are shyly shrinking in my arms Sharma in his arms [Music] Sometimes I think of me [Music] As if my pity for the car will be aroused [Music] That’s it [Music ] Sometimes I think of me [Music] [Praise] Hai mono [Music] I feel like some people would like me na na mono I feel like some people would like me na na molo [Music] [Praise] [Music] Na yellow late two shores two seafarers jona monkey badha ka deta taay pani na two shores two seafarers jona monkey badha ka deta pani tum [Music] You are dear [Praise] [ Music] Corona mono I feel like some people would like me na na mono I feel like [Music] Mano I feel na chokh chokh na lo laage [Music] Na mono I feel na chokh chokh lola na aa deto ahji shakti udh ki hove and fish Mach bebe mach na santo [Music] Aji ki ma [Music] Beve me you come you go Parth’s go, go away na mono feel na jeevan kuch jan bhaagena na mono feel na jeevan kuch janlo feel na mono feel na [Music] [Praise] [Music] [Laughter] It’s the world, kiss me [Music] The stars are there [Music] Take it easy [Music] The world is restless, my heart is restless [Music] [Music] Someone like this is coming, as if someone’s mind is going on [Music] Is it green or is the heart beating [Music] With this [Music] hope [ Music] Support [Music] Will come, will come, will come The one who will come will come [Music] How are the moths burning without the lamp How are the moths burning without the lamp No one shoots and the arrows are firing How long will someone suffer without hope, without support, Karma, how long have I been helpless without hope, my heart’s this will come, will come, will come y y [Music] y The lost youth to the destination The lost youth searches for the muscle, the fish searches for a new shore, who knows the heart’s [music] How long will the boat reach the shore, who knows how long will the boat of the heart reach the shore [music] My heart’s signals are saying, it will reach, it will reach, the blue will come [music] Acha embrace me again, this happy night may happen [music] Maybe we will meet again in this life, embrace me again, this happy night may happen, maybe we will meet again in this life, embrace me [music] I have got a street today, by chance, look at me closely to your heart’s content, maybe this may happen in your fate, maybe we will meet again in this life, embrace me [music] [music] Come closer, I will not come once again, put me in your embrace, and cry with my eyes, this rain of love may happen again, maybe we will meet again in this life [laughter] Embrace me again, this happy night may happen, maybe we will meet again in this life, embrace me [music] [praise] [Music] [Praise] [Music] Embrace I don’t know in which world I have lost you I do n’t know in which world I have become lonely in this world You don’t know in which world I have become lost in this world I do n’t know in this world [Music] [Praise] Even death doesn’t come, even death doesn’t get trapped, even hope doesn’t go away What has happened to the heart, I don’t like anything You have robbed my world, where have you hidden Where have you hidden after robbing my world Where are you, where are you, where do you I do n’t know in which world are you [Music] You have gone, a jar remains lost in which world you have hidden Where have you hidden after robbing my world Where are you, where are you, where do you I don’t know in which world are you [Music] I have gone, a stranger I have been standing on this side for a long time I am left choking Come to you [Music] [Praise] We are looking at you with our drowning eyes After robbing my world you have hidden Where have you hidden after robbing my world Where are you, where are you, where do you I don’t know in this world I am lost in this world I am alone in this world I do n’t know where in this world [Praise] [Music] I have gone, a foreigner I have been standing on this side for a long time, this boat is tired I’ve been standing on this side for so long These eyes are tired Pant, nihar aaja [ Music] [Praise] [Music] Pardesi I did not give you the Vedas, still I am thirsty This deep matter, a little [Music] I am a river, still I am thirsty This deep matter, a little Without you, every breath is sad Come, when have I been standing here this time These eyes are tired Ban Nihar aaja [Music] O Pardesi [Music] [Music] Why did you forget the rounds of many births with you, my love [ Music] Why did you forget the rounds of many births with you, my love I am yearning for you evening and morning O come, I’ve been standing on this side for so long These eyes are tired Pant, nihar aaja re parde Now we are making you listen to a very old song I have great desires for him [Music] I have kept you with great desires, O my love, I swear This is the first step in the world of love, the first step The cruelty of the world will not be able to separate us Let this be the first step in the world of love, the first step is taken, love is a stretch, the heart is also young, dear, tell me where do you meet, dear, tell me where do you meet, where will we go, away from the eyes of the world, we will go somewhere This should be the first step in the world of love, I swear to you my beloved, I swear to you my beloved, let this be the first step in the world of love, the first step I see both the worlds in your two eyes, my heart is lost in them, tell me where should I find it, my heart is lost in them, tell me where should I find it, the moon may decrease, let our love not decrease, let our love not decrease This should be the first step in the world of love, the cruelty of the world will not be able to separate us, let this be the first step in the world of love, no step my boat is not waiting for the shore, if I have your pallu, I don’t even need a rudder, if I have your pallu, then I don’t even need a rudder, why should I be sad about the storm when you are there, I am sad about the storm, this should be the first step in the world of love, I have kept you with all my heart. I swear to you my love. This is the first step in the world of love. The first step will be your favor to me. My heart wants to say, let me say that I have fallen in love with you, let me stay under the shade of your eyelids. I will do your favor to me. My heart wants to say that, let me say that I have fallen in love with you, let me stay under the shade of your eyelids. I will do your favor to me [Music] [Praise] But you taught me to laugh [Music] You taught me to laugh. If you ask me to cry, I will cry. If you ask me to cry, I will cry. Don’t be sad about my tears. If they flow, let them flow. I have fallen in love with you, let me stay under the shade of your eyelids. I will do your favor to me. You may make me or erase me [Music] You may make me or erase me, even if I die, I will give you blessings. Even if I die, I will give you blessings. The dust will fly and say, my love. Let me bear this pain of love. I have fallen in love with you, let me stay under the shade of your eyelids. I will do your favor to me. My heart wants to say that, let me say to you. I have fallen in love Let me live in the lap of your eyelids You will be in a favour to me If you are even more afraid of thorns The bonds of habit are broken Ask for your anklets Don’t stop the flight of my heart, that heart [Music] Come on, today again I wish to live Today I intend to die Today again I wish to live Today I intend to die [Music] [Praise] [Music] I am not in my control I am my heart somewhere You are somewhere I am not in my control I am my heart somewhere I don’t know what my life has achieved and said smilingly Today again I wish to live Today I intend to die Today again I wish to live Today again I intend to die [Music] Am I lost or are you [Music] Someone tell me where I am I am lost or am I troubled Someone tell me where I am I am afraid in the journey I don’t go anywhere [Music] Let me come today again I wish to live Today I intend to die Today again I wish to live Today again I intend to die [Music] I have seen you walking in the darkness of yesterday rubbing your eyes You are burning with the darkness of yesterday, I have not seen you burning with eyes dim, life is flowing with flowers only. Today I have decided to live again, today I intend to die again, today I wish to live again, today I intend to die again [Music] Now I request India’s famous artist Mrs. Nargis Dutt to come on stage in front of you, Mrs. Nargis [Music] Now I will request Lata ji to present a very beautiful song. The name of the film is Main Tulsi Tere [Praise] Main Tulsi of your courtyard I Tulsi of your courtyard I am nobody I am nobody I am nobody of your lover’s I Tulsi of your courtyard I Tulsi [Music] [Praise] Your forehead is sindoor which is yours, everything is yours My forehead is sindoor which is yours, nothing is mine I swear on your tears I Tulsi of your courtyard I Tulsi [Music] [Music] What will I take from you I will give you something or the other What will I take from you, I will give you something or the other There is something or the other I will give in the dust of your street I Tulsi I am no one of your courtyard I am no one I am no one of your lover I am Tulsi of your courtyard I Tulsi of your courtyard [Music] [Praise] [Music] Bindiya chape’s bangle khan Bindiya chamke’s bangle khan Your sleep will fly away Garbage of the month Garbage of the month smells Gajra of the month smells Get angry if you get angry Bindiya will shine Bangles of the bells [Music] I have become crazy, cruelty happened to you I accept I have accepted that you are crazy, cruelty happened to you Where should I take my army of boys From the door of this lover, the moon will die at your door Bindiya chamke’s bangle doesn’t say anything Kanjana, no one’s love can’t control the youth Kangana says Kangana, no one’s love can’t control the youth The world has made me say my ghungroos will run away The fair girl will run Payal will be caught The fair girl will dance The roof will break, the bangles will break [Music] I love you I am not only a slave, Maa I have promised to meet you I do not want to call you, Maa ji If you love anyone, I will play, I will tease you I will play, I will tease you The bindi will shine, the bangles will jingle Your sleep will fly away Bindi, the bangles shine [Music] I will have to fulfill the promise that I made Even if the world wants to stop me, you will have to come Whatever you promised, you will have to fulfill it Even if the world wants to stop me, you will have to come You will have to fulfill the promise that I made [Praise] I will take the blame for my loyalty I have made you my heart I will let you go too When I have achieved love, then why be worried, I will have to come I will have to fulfill the promise that I made We keep shining till the moon and stars do not break that you are my promise [Music] You were another chant, crazy for advice I will not have to fulfill the promise that I made Even if the world wants to stop me, you will have to come You will have to fulfill the promise that I made Nina [Music] I will fall heart The fire started burning and getting extinguished But he did not come The heavy darkness of loneliness kept increasing And finally the scorching night of hope was cooled down And it was the pain of the heart in the tears of the eyes That rained in the form of tears Rim Chham Rim Chham Listen to this last song of today’s songs of the spirits of ghosts Naina barse Rim Chham Rim [Music] Chhana barsi Rin [Music] [Music] Naina barsi Jhim Jhim Jhim Jhim Piya Tori Paavan Kiya [Music] Naina barte Jhim Jhim Bhim Naina barse barse Ba [ Praise] [Music] [Praise] I am incomplete My story If you remember me, come [Music] I am incomplete Whatever my condition is, come and watch The wetness’s chham chham Tears are flowing Lost eyes [Music] Uda [Music] Do not barse jhim jhim jhim jhim Naina barse barse [Music] Barse he Those days are in my eyes Those memories are in my sighs Those days are in my eyes So memories are in my sighs This heart now wanders in the paths of your Ulfaa Lonely paths, scared arms are in my eyes There is rain of thirst [Music] Thirst in the eyes Rim jhim rim jham Piya tore aawan kiya nana bar rim jhim rim jham Naina barse barse bar Song written by Ivar In the style of Kalyanji Anandji Saraswati Chandra Chandan sa body Listen and lose yourself in this beautiful tune This beautiful song one two [Music] Body like chandan Playful glances Slowly he stays His changeable glances Slowly he keeps smiling Don’t blame me world, don’t blame me if the world becomes heavy with the god Chandan’s playful glances [Music] [Music] These big eyes like the blue sky I will go like a bird These big eyes like the blue sky I will become like a bird If you are the praise of your arms I will sleep on the embers of my feet My feet shook, my mind started shaking I want to see you intoxicated by your chandan like bhangra chit [Music] [Music] Your body is beautiful, your mind is beautiful too You are the embodiment of beauty Your body is beautiful, your mind is beautiful too You are the embodiment of beauty Perhaps it would be less for anyone else I need you a lot My heart has yearned for you before too My heart has yearned for you before too You are the door to my heart Like chandan like body, fickle glances, slowly yours [Music] Muskana ban bhayo You will remember that the first National Award for music was received for this song by Saraswati Chandra’s songs, and it was awarded in Delhi itself, not in this hall, but in Vigyan Bhawan, at your own doorstep We are very happy that this song has also been chosen by Lata ji for today’s programme, and when you will get to know which is the next song, then see what will happen to your heart This is the song whose tune has been composed by Madan Mohan, which has been written by Majroo Sultanpuri Those who are fond of a little classical music will like this song so much that what should I ask Those who love a little will like this song very much to the microphone people It is requested not to over do the mic, please handle it Sisters and brothers, this is the song Baiyana Na Dharo Listen [Music] Baiyana Athro Bal Baiyana Na Dharo O Bal Ma Na Do Muse Ra Bhaiya Na Dharo Ko Balma Na Do Muse Ra Bhaiya Na Dharo [Praise] Parma, the moon has fallen from the body, the Chunaria has fallen from the body, the Chunaria has fallen from the body, the Chunaria will laugh, the bangles will laugh with a chhan, the Chudia will laugh with a chhan, the Chudia will play, Rakar Baiyana Na Dharo Na Dharo I am going astray, I am going astray, I am going astray, I am going astray, I am going astray, I am flowing, I will smell like a fragrance, I will walk like a fragrance, I will smell like a fragrance, I will walk like a fragrance, Chameliyan Kid Bhaiya Na Dhar O Balma Na Do Musera Baiyana Na Dharo Nadhar Nadhar [Praise] L Bhaiya Nadhar Saiyya After this love-filled complaint, sisters and brothers are now singing such a song by Lata Ji will sing a song which is related to the clouds, the clouds which bring rain create a strange atmosphere, a strange restlessness takes over the heart, the sleep of the nights disappears and that is why Lata ji will now sing Neeraj’s song in the legacy of Sachin Dev Burman, in which she will say that Megha chaaye aadhi raat baran ban gayi nidiya listen to this beautiful song from the film Sharmilee Lata Mangeshkar [Music] i Megha chaaye aadhi ra baran ban gayi Niha chaaye aadhira baran ban gayi tell me what should I do let’s meet midnight ban I have given you joy in my courtyard the wind has taunted like a hero the scarf has come the teardrop has become a ban tell me what should I do it has become liked aadhira ban gaya all the hopes have been broken my eyes are upset, Ganga is flowing in my eyes, but still my heart is thirsty all the dreams have been broken Maya nun ban Ganga, but still my heart is thirsty Pyaasa iss koo re mann ki baat baran gayi bata de main kya karu baga jaaye aadhi raat baran ban gayi [Music] [Prasha] Nindiya, believe me, the names of some of the films that I am listening to, their songs will definitely come in front of you because when Lata ji finishes this part by singing one more song, after that she will come on stage two more times and will sing many songs, let us applaud you and [Music] now look sisters and brothers, let me tell you one special thing, listen listen listen listen sisters and brothers, Lata ji is one of those people who gives her every programme very seriously, every single thing is very carefully measured, she rehearses and prepares it with the orchestra and then presents them in front of you one after the other and the names of many films that I have heard, their songs will definitely reach you, listen comfortably with love, but now the song that will come in front of you is that throbbing song, which I had mentioned, of that film which is running very well these days and this Lata ji will not sing alone, she will sing with her younger sister Usha, the name of the film is first Usha ji then aa Let’s go on stage Usha ji come on stage brothers, applause Lyricist Sahil Ludhyana Music director Laxmikant Pyarelal Tell me the name of the movie And which song is it You have already understood, still listen to it [Praise] One one friend is my cloth, Lata friend is my jewel If you get a friend, consider it an honour, become a Kanjari [Music] Stay here, I don’t want to convince people, people say Niyar I don’t want to convince people, people say Niyar and you want to convince people, people say I don’t want to come near me I don’t want to come near you I don’t want to come near you I don’t want to come near you I don’t want to be convinced, Bhole Bakhda his life’s a piece of Kajro’s every corner of his arms I don’t want to make me an angel in heaven People say I don’t want to sleep where it’s good if I get a friend, then what should I do if I get a friend in place of the world If I get a friend in place of the world, then say double the friend, I am not shy, I am not shy, people say people say bullets, people say I want to decorate I don’t want to spend time with you I don’t want to decorate myself I don’t want to do it my pain should fly away my courtyard should open up I don’t want to make a bed People said I don’t want to come to live in the poison truth Bhole I have been playing with the poison I keep talking to the walls Today I met him or else I have heard the sound of chandeliers again People said people said I ca n’t please my friend by dancing in the poison truth Bhole I don’t want to please my friend by dancing I don’t want to mix poison I am separated from you I put your hand on it and dried it and said I don’t know the price of the addiction I got today I don’t want to be beaten people say bullets I am near my grandfather wants to use poison he is not staying quietly [ Music] [Music] [Music] Sita is [Music] the world is baffling my heart [Music] someone is coming to me like this [ Music] it seems like someone is going on [Praise] [Music] Oh my friend my heart is beating [Music] with [Music] I will come, I will come, I will not agree [Music] Deepak How are the flies burning without the lamp? How are the flies burning without the lamp? No one shoots and arrows are being shot. Someone will suffer till then, without hope, without support. Someone will suffer till then, without hope, without support. How long have I been remaining without hope, without support? My signal from my heart will come, will come, the one who will come will come [Music] [Music] The lost youth searches for the destination The lost youth searches for the fish. It searches for a new shore without the fish. Who knows when will the boat of the heart reach the shore. Who knows how long will the boat of the heart reach the shore. The heart is at the signal from my heart. It will come, it will get the morsel, it will come. Sisters and brothers, these are the songs of the souls. The soul kept yearning, but the one who was to come did not come. When the yearning exceeded its limit, the soul became restless and began to wander. The eyes were waiting, the eyes were burning, and there was a thirst for a stranger in the heart. A thirst that perhaps will never be quenched, it will never be quenched. Holding my heart, I was awake. Listen to this one more immortal calling out to the stranger. Come, foreigner, I have been eating this for so long, my eyes have become wet. Nihaa aaj re [Music] Pardesi I am standing with everyone, these eyes have gone [Music] You go away, parde [Music] I am a river, still I am thirsty, this deep secret I did not tell you a little, still I am thirsty, this deep secret I have become a little bit thirsty, my mother-in-law has become a little bit thirsty from both of me [Music] I have been standing here since so long, Pant, look today re [Music] Pardesi, you all have forgotten the rounds of our births, why have you forgotten the rounds of our births with you, dear? Why have I forgotten the rounds of my births with you, dear? I am in agony, saaj surre [Music] Go away, I have been standing here since so long, this time I have been standing here, parde [Prashant] [Music] Thirst This thirst kept increasing and turned into a flame And in these flames of waiting the soul started burning Perhaps the moth will make this fire its destination, considering it a lamp, perhaps the one who is not coming is drawn by the light of the burning heart, this triangular thirst is strange, moth on one side, lamp on one side, heart [ Music] [Music] Let’s give some day somewhere, come and see, who is your moth This is your destination, just come and see, moth, which is your destination? A lamp is moving somewhere in the heart [Music] I am not a dream or a tear, one painful tear, my love, give me [Music] Aamil, just come and see, moth, which is your destination? A lamp is moving somewhere [Music] [Praise] [Music] There are thousands of enemies here, know this, just meet me, the eye can recognize me, there is a killer in many forms, just come and see, moth, which is your destination? A lamp is moving somewhere in the heart [Praise] [Music] [ Praise] [Music] [Music] No, no, no, no, open the veil of the veil, Radha no, no, no, open the veil of the veil, Radha no, no, no, no, [Music] The strings of Radha’s shy eyes, the strings of Radha’s shy friends, will you see how now, boys of Gokul, will you see how now, boys of Gokul, see Mohan’s heart is swaying, Radha no, no, no, speak, the land of Bhat speak, Radha no, no, no, speak Re [Music] Remember Saawariya on the banks of Yamuna, Remember Saawariya on the banks of Yamuna [Music] Remember Saawariya on the banks of Yamuna, Why didn’t Radha’s pot open, Why did Radha’s pot open, This ear speaks to you Radha did not speak, She is angry, she won’t agree, She is angry, she won’t agree, She is angry, she won’t agree, Place Radha’s flute at the feet of Radha Place Radha’s flute at the feet, Things will work out, hole hole Radha did not speak, she didn’t speak, She is angry, she won’t speak, She is angry, she won’t agree, Place Radha’s flute at the feet of Radha, Things will work out, hole hole Radha did not speak, she didn’t speak, She is next song I have come to sing because I considered it very important, there is a very deep connection with it, I was told that a very beautiful voice will sing a song for you I reached there for the recording, the recording room’s door was closed, I saw a small, slim girl with long hair made into two plaits, sitting on the stairs, she had a book on her knees and was humming A coldness spread over me and I understood that it must be Lata Mangeshkar. You know that it rains beautifully in the hills of India and the clouds also gather and a hill girl and her lover tells her lover that you met me in the rain, you gentleman, I met you. [Praise] [Music] [Praise] [Music] [Music] In the rain, I met you, my dear, I met you. In the rain, I met you, my dear, I met you. In the rain, I met you, my dear, I met you. In the rain [Music] Love has adorned itself I became a bride, I became a bride. My heart danced in the drizzle of dreams. My heart danced. Today I am yours, you my love. Today I am yours, you my love. You my love. In the rain, I met you, my dear. I met you. In the rain [Music] [Praise] There is a gathering, we are going, how do I convince you, how do I convince you. I am going, how do I convince you. I spread my eyes in your path, if you do n’t come, I swear on my life, I swear on my life, I met you in the rain, you dear, I met you. We should not delay in the rain, lest this hope gets shattered, I lose my breath. Do n’t delay, lest this hope gets shattered, I lose my breath. Don’t come, the passion in my heart has burnt me in the pure fire, my heart is calling out in the flames of fire. I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I cannot meet you, oh I am in the rain [Prashant] [Music] There will be once more, a lot will happen yet, the night is still left, our Begum sahab said that the heart is beating, I knew why it is beating, we were sitting behind there and I know that you have not come alone, by the way, just touch it, everyone’s heart is beating, isn’t it? Now I will request you, I will request Usha to come and present a song in front of you and after that Lata ji and Usha ji will present two songs, both are in such a mood, Lata ji says two songs will be done now, please watch [Prashant] [ Music] I gave you my heart, my love, with how much pride Do your eyes fight, innocent, how did you betray the eagle? I gave you my heart, my love, with how much pride Do you have? [Music] Oh, I plead Your cruel love is beating, innocent life, what have you done, Oh, cruel love, I am dead out of shame, see the way you are, my love, with how much pride Do your eyes fight, innocent, how did you betray the eagle? I gave you my heart, my love, with how much pride [Music] [Praise] Your gaze was filled with magic, you are filled with magic, I asked for spring, lightning struck, lightning struck, full of magic, the sleeping desires of my heart woke up, it is like your voice I gave you my heart, my love, with how much pride Do you have? Oh, innocent, how did you betray the eagle? I gave you my heart, with how much pride [Praise]

    मैं कैसे परिचय दूं उस शख्सियत का जिनका नाम खुद अपने आप में एक परिचय है मैं कैसे परिचय करूं उस व्यक्ति का जिनकी आवाज देश की ही आवाज नहीं बल्कि सारे विश्व की आवाज है निसंदेह एक ऐसी आवाज जिसे सही मानों में वॉइस ऑफ द मिलेनियम कहा जाना चाहिए मैं कैसे परिचय दूं उनका जब की सुर ताल संगीत सब उन्हीं के नाम से शुरू होता है और उन्हीं के नाम से खत्म हो जाता है मैं कैसे परिचय दूं उनका जिन्होंने विश्व भर में अनगिनत खिताब पाए हैं अनगिनत रिकॉर्ड्स कायम किए हैं इस अमूल्य रत्न का मूल्य कैसे किया [संगीत] जाए इन प्रश्नों का उत्तर देने के लिए ना तो मेरे पास दिमाग है और ना ही शब्द हमारे पड़ोसी मुल्क के लोग जब कभी हमसे मिलते हैं तो कहा करते हैं कि हमारे पास वह सब कुछ है जो आपके पास भारत में है बस दो चीजें नहीं है ताजमहल और लता मंगेशकर [प्रशंसा] इतनी बड़ी उपलब्धि अपने आप में ही एक अजूबा है परंतु अपनी छोटी सी हैसियत में लता जी के गुणों का वर्णन करने के लिए मैं प्रयत्न करना चाहता हूं दृष्ट के लिए लता जी मुझे क्षमा करें पता नहीं आप लोगों ने कभी सितार को नजदीक से या करीब से देखा है या नहीं सितार के ऊपर कई एक प्रमुख तारें होती हैं जिसे खींचने से और उस उंगलियां फिराने से सितार बज उठता है उसमें से सुर निकलती है आवाज निकलती है इन प्रमुख तारों के नीचे भी 10 12 और तारें होती हैं कुछ पतली सी जिन्हें कि आमतौर पर सिंपैथेटिक स्ट्रिंग्स कहा जाता है और जब कभी भी सितार वादक इनकी धुन इनकी ध्वनि सुनना चाहता है तो अपनी छोटी उंगली से उन्हें छेड़ता है और उनमें से ध्वनि निकलती है लेकिन अक्सर यह होता है कि अगर प्रमुख तार को ऐसे ढंग से खींचा जाए कि उनका सुर सही निकले तो यह सिंपैथेटिक स्ट्रिंग अपने आप बज उठते हैं यह सिंपैथेटिक स्ट्रिंग इसलिए बज उठते हैं क्योंकि उस सुर में इतनी प्रबलता होती है इतनी शुद्धि होती है कि उन्हीं के कारण यह तार अपने आप बज उठते हैं लता जी के सुर में लता जी के गायन में लता जी की आवाज में मेरा ऐसा मानना है कि इतनी प्रबलता है इतनी शुद्धि है कि वोह मनुष्य की आत्मा के तारों को झंकृत कर देती है मेरा और एक अनुमान है कि संगीत के सुरों और परमात्मा के बीच एक बहुत ही अद्भुत और विचित्र बंधन है और यदि कोई ऐसी डोर है या कोई ऐसा तार है जो मनुष्य की आत्मा को परमात्मा के साथ बांधता है जोड़ता है तो उस डोर उस तार का नाम है लता मंगेशकर देवियों और सज्जनों साक्षात सरस्वती के स् रूप को मैं शद शद प्रणाम करता हूं और बड़े ही विनम्र भाव से आग्रह करता हूं आमंत्रित करता हूं कि लता जी हमारे समक्ष आए और हमारे और आपकी आत्माओं को परमात्मा के साथ बांधे देवी और सज्जनों आदरणीय लता मंगेशकर [संगीत] [प्रशंसा] [संगीत] जी टू लाला ला ला ला एक द्वार का नगमा है मौजों की रवानी है एक प्यार का नगमा है मौजों की रवानी है जिंदगी और कुछ भी नहीं कि भी कहाई है एक प्यार परर अपमा है मौजों की रवानी है जिंदगी और कुछ भी नहीं तेरी मेरी कहानी है एक प्यार का नमा [संगीत] [संगीत] [प्रशंसा] है ला ला ला ला ला ला ला लाला कुछ पा कर खोना है कुछ खो कर पाना है जीवन का मतलब है आना और जाना है दो पन के जीवन से एक उम्र चुरानी है जिंदगी और कुछ भी नहीं री मेरी कहानी है एक प्यार का नगमा है [संगीत] [प्रशंसा] [संगीत] [प्रशंसा] [संगीत] [प्रशंसा] [संगीत] तू उधार है नदिया की मैं तेरा किनारा हूं तू मेरा सहारा है मैं तेरा सहारा हूं आंखों में समंदर है आशाओं का पानी है जिंदगियों कुछ भी नहीं तेरी मेरी कहानी है कि प्यार मानव मा है मौजों की रवानी है जिंदगी और कुछ भी नहीं मेरी कहानी है एक प्यार का [प्रशंसा] [संगीत] ना इन्ही लोगों ने इन्ही लोगों ने इन्हीं लोगों ने इन्हीं लोगों ने इन्हीं लोगों ने लेली ना डु पट्टा मेरा इन्ही लोगों ने ले लीना डु पट्टा मेरा इन्हीं लोगों ने लेना डु पट्टा मेरा [प्रशंसा] [संगीत] हमरी ना मानो बजवा से पूछो हमरी ना मानो सैया हमरी ना मानो बजवा से पूछो जिसने जिसने अशर्फी गज दीना डु पट्टा मेरा जिसने अशरफी गज दीना दुपट्टा मेरा हो हो जी दुपट्टा मेरा हो दुपट्टा मेरा हमरी ना मानो रंग रजवा से पूछो हमरी ना मानो हमरी ना मानो रंग रजवा से पूछो जिसने जिसने गुलाबी रंग दीना दुपट्टा मेरा जिसने गुलाबी रंग जीना डूबता मेरा ी लोगों ने इन्ही लोगों ने इन्ही लोगों [संगीत] ने हमरी न मानो सि पैया से पूछो हमरी ना मानो सिप या से पूछो हमरी ना [संगीत] मानो अमरी ना मानो सि पैया से पूछो सि पैया से सि पैया से पूछो जाने जिसने बजरिया में छीना दुपट्टा मेरा जिसने बजरिया में छीना डु पट्टा मेरा इन्हीं लोगों ने इन्हीं लोगों ने इन्हीं लोगों ने इन्हीं लोगों ने ले लीना डु पट्टा मेरा इन्ही लोगों ने ले लीना दुपट्टा मेरा दुपट्टा मेरा दुपट्टा मेरा दुपट्टा मेरा भाइयों और बहनों कोई कहता है 200 हज कोई कहता है 2 लाख कोई कहता है 500 कितने गाने कितनी जबान में और किस किस किस्म के गाने गाए हैं मां का गाना है तो बच्चों को रुला दिया बच्चों का गाना है तो मां को रुला दिया भाई का गाना है तो बहन को रुला दिया है बहन का गाना है तो मां को रुला दिया है वो लता मंगेशकर आज मेरी बहन मेरे कहने के ऊपर मेरे सिर पर बोझ रखकर एहसान का और आज आ गई है मैं उनका बहुत-बहुत शुक्रिया अदा करता हूं और उनसे रिक्वेस्ट करूंगा कि अब वो आप लोगों के सामने आए लता [प्रशंसा] मंगेश काटों से खींच के ये [प्रशंसा] आर तोड़ के बंधन बांधे मायर कोई ना रोको दिल की उड़ान को दिल ब [संगीत] छला आज फिर जीने की तमन्ना है आज फिर मरने का इरादा है आज फिर जीने की तमन्ना है आज फिर मरने का इरादा है [संगीत] अपने ही बस में नहीं मैं दिल है कहीं कह नहीं मैं अपने ही बस में नहीं मैं दिल है कहीं तो हं कहीं मैं जाने क्या पाके मेरी जिंदगी बस कर क हा आज फिर जीने की तमन्ना है आज फिर मरने का इरादा है आज फिर जीने की तमन्ना है आज फिर मरने का इरादा [संगीत] है मैं हूं गुबार या तोत पाऊ कोई बताए मैं कहां हूं मैं हूं गुबार या तफा ह कोई बताए मैं कहां हूं डर है सफर में कहीं खो ना जाऊ मैं रास्ता नया आज फिर जीने की तमन्ना है आज फिर मरने का इरादा है आज फिर जीने की तमन्ना है आज फिर मरने का इरादा [संगीत] है कल के अंधेरों से निकल के देखा है आंखें मलते मलते हो कल के अंधेरों से निकल के देखा है आंखें मलते मलते फूल ही फूल जिंदगी महा है य कर लिया आज फिर जीने की तमन्ना है आज फिर मरने का इरादा है आज फिर जीने की तमन्ना है आज फिर मरने का इरादा [संगीत] [प्रशंसा] है अगला आइटम जो है वो आपके सामने आपके हरदिल अजीज अदाकार जो है वो टोली है तीन कैरेक्टर है बड़े नोटोरियस एक तो अमिताभ बच्चन है और एक है शशि कपूर और उनके साथ है हमारी बहुत ही प्यारी बहन जो है व राखी तो तीनों आएंगे और इस गाने को इंट्रोड्यूस कराएंगे जो लता जी गाने वाली [संगीत] [प्रशंसा] नमस्कार हेलो को चल रहा है हेलो एक मिनट से बोले बोलिए हम लोगों ने एक फिल्म में काम किया है जिसका नाम है कभी कभी उस फिल्म का एक गाना कभी कभी मेरे दिल में ख्याल आता है लिखा है साही लुन संगीत ी मुकेश जी लेकिन गाने से पहले के अमिताभ बच्चन साहब आपको अपनी अच्छी खूबसूरत आवाज में कुछ उस गाने के शेर सुनाए अमिताभ बच्चन कभी कभी मेरे दिल में ख्याल आता है कि जिंदगी तेरी जुल्फों की छ में गुजरने पाती तो शादाब हो भी सकती थी य रंज गम की स्याही जो दिल प छाई है तेरी शुओ में खो भी सकती थी मगर यह हो ना सका गुजर रही है जिंदगी कुछ इस तरह जैसे इसे किसी के सहारे की आरजू भी नहीं धन्यवाद [संगीत] फ भरत तुम इधर आ जाओ साइड फर्स्ट [संगीत] सेकंड लाइट इ अ [संगीत] [संगीत] कभी कभी मेरे [संगीत] खयाल कभी कभी मेरे दिल में खयाल आता है के जैसे तुझको बनाया गया है मेरे लिए ये जैसे तुझको बनाया गया है मेरेली तू अब से पहले सितारों में बस रही थी कहीं तू अब से पहले सितारों में बस रही थी कहीं तुझे जमीन पे बुलाया गया है मेरे लिए तुझे जमीन पे बुलाया गया है मेरे [संगीत] लिए कभी कभी मेरे माया [संगीत] भाता [संगीत] के री ये दे सुओ की धनी छाव है मेरी खातिर ये होगी [संगीत] [संगीत] [प्रशंसा] कभी कभी मेरे दिल में खयाल आता है बजती है शहनाई आ स राहों [संगीत] में के जैसे बजती है शहनाई आसी राहों में सुहावे रात है घूंघट उठा रहा हूं मैं सिमट रही है तू शरमा के अपनी बाहों में सिमट रही है तू शर्मा के अपनी बाहों [संगीत] में कभी कभी मे खयाल आ है [संगीत] जैसे उठेगी मेरी तरस कार की [संगीत] उ है [संगीत] कभी कभी मेरे दिल में खयाल आ आता [संगीत] [प्रशंसा] है ना मोनो [संगीत] लागेना जीवने किछु जनो भालो लागे ना ना मोनो लागे ना जीवने किछु जन भान लागे ना ना मोनो लागे ना जीवने किछु जन भालो लागे ना ना मोलो लागे [संगीत] [प्रशंसा] [संगीत] ना येलो देर दुई किनारे दुई तरनी जोना बनर बाधा का देते ताय पनी न दुई किनारे दुई तरनी जोना बन बाधा का जता पनी तुम [संगीत] तुम मर्थ [प्रशंसा] [संगीत] केरोना मोनो लागेना जीवने किछु जन भलो लागे ना ना मोन लागे ना [संगीत] मनो लागे ना चोखे चोखे ना लो लागे [संगीत] ना मोनो लागे ना चोखे चोखे लोला ना आ देतो अजी शक्ति उध की होवे और मछ मछ बेबे मछ ना संतो [संगीत] अजी कि म [संगीत] बेवे में ना तुम आ तुम पार्थ के जाओ चले जाओ ना मोनो लागे ना जीवने किछु जन भान लागेना ना मोनो लागेना जीवने किछ जनलो लागे ना ना मोनो लागे ना [संगीत] [प्रशंसा] [संगीत] [हंसी] है जमाना चुम जा [संगीत] है सितारे [संगीत] आराम से [संगीत] है दुनिया बेकल है दिल के मोरे [संगीत] [संगीत] ऐसी भी कोई आ हट इस तरह आ रही है जैसे के चल रहा हो मन कोई [संगीत] हरे या दिल धड़क रहा हो [संगीत] इस [संगीत] आस [संगीत] के [संगीत] सहारे [संगीत] आएगा आएगा आएगा आएगा आनेवाला आएगा आएगा [संगीत] आएगा दीपक बगैर कैसे परवाने जल रहे हैं दीपक बगैर कैसे परवान जल रहे हैं कोई नहीं चलाता और तीर चल रहे हैं तड़पेगा कोई कब तक बे आस बे सहारे करम कोई कब तक बे आस बेसहारे रहे हैं मुझसे दिल के मेरे इश आएगा आएगा आएगा आएगा आने वाला य य [संगीत] य भटकी हुई जवानी मंजिल को ढूंढती है भटकी हुई जवानी मसल को ढूंढती है माछी बगैर नया साहिल को ढूंढती है क्या जाने दिल की [संगीत] कश्ती कब तक लगे किनारे क्या जाने दिल की कश्ती कब तक लगे [संगीत] किनारे कह रहे दिल के मेरे इशारे आएगा पाएगा पाएगा पाएगा नीला आएगा आएगा [संगीत] आचा गले के फिर ये हसी रात हो ना [संगीत] हो शायद फिर इस जनम में मुलाकात हो ना हो लग जा गले के फिर ये हसी नात हो ना हो शायद फिर इस जन्म में मुलाकात हो ना हो लग जा [संगीत] गली हमको मिली है आज घड़िया नसीब से जी भर के देख लीजिए हमको करीब से फिर आपके नसीब में ये बात हो ना हो शायद फिर इस जन्म में मुलाकात त हो ना हो लग जा गले [संगीत] [संगीत] की पास आइए के हम नहीं आएंगे बार मा पाहे गले में डाल के हम रोले जार जा आंखों से फिर ये प्यार की बरसात हो ना हो शायद फिर इस जन्म में मुलाकात हो ना [हंसी] हो लग जा गले के फिर ये हसी रात हो ना हो शायद फिर इस जन्म में मुलाकात हो ना हो लग जा [संगीत] [प्रशंसा] [संगीत] [प्रशंसा] [संगीत] गले ना जाने किस जहां में खो गए तुम ना जाने किस जहां में ो गए हम भरी दुनिया में तन्हा हो गए तुम ना जाने किस जहां में खो गए हम भरी दुनिया में तनहा हो गए तुम ना जाने इस जहां में ो [संगीत] [प्रशंसा] गए मौत भी आती नहीं फस भी जाती नहीं मौत भी आती नहीं आस भी जाती नहीं दिल को ये क्या हो गया कोई शै भाती नहीं लूट गए मेरा जहां छुप गए हो तुम कहां लूटकर मेरा जहां छुप गए हो तुम कहां तुम कहां तुम कहां तुम कहां तुम ना जाने किस जहां में को हो [संगीत] गए एक जार लाम ट के रह जाए नदम एक दार लाख हम घुट के रह जाए नदम आओ तुमको [संगीत] [प्रशंसा] देखने डूबती नजरों से हम लूट करर मेरा जहां छुप गए हो तुम कहां लूट करर मेरा जहां छुप गए हो तुम कहां तुम कहां तुम कहां तुम कहां तुम ना जाने इस जहां में खो गए हम भरी दुनिया में तनहा हो हो गए तुम ना जाने इसस जहां में को [प्रशंसा] [संगीत] गई परदेसी मैं तो कब से खड़ी इस पार ये खिया थक गई पंथ निहार आजा [संगीत] रे परदेसी मैं तो क से खड़ी इस पार ये अंखिया थक गई पंथ निहार आजा रे [संगीत] [प्रशंसा] [संगीत] परदेसी मैं न दिया फिर भी मैं प्यासी वेद ये गहरा बात जरा सी [संगीत] मैं नदिया फिर भी मैं प्यासी भेद ये गहरा बात जरासी बिन तेरे हर सांस उदासी आ जा रे मैं तो कब खड़ी इस बार ये अखिया थक गई बं निहार आजा [संगीत] रे परदेसी [संगीत] [संगीत] तुम संग जनम जनम के फेरे भूल गए क्यों साजन [संगीत] मेरे तुम संग जनम जनम के फेरे भूल गए क्यों स जन मेरे तड़पत हूं मैं सांझ सवेरे ओ आजा रे मैं तो कब से खड़ी इस पार ये अखिया थक गई पंत निहार आजा रे परदे अभी हम आपको एक बहुत पुराना गाना सुना रहे हैं बड़े अरमान उसे रखा है बल [संगीत] बड़े अरमान से रखा है बलम तेरी कसम ओ बलम तेरी कसम प्यार की दुनिया में ये पहला कदम हो पहला कदम जुदा ना कर सकेंगे हमको जमाने के सितम हो जमाने के सितम प्यार की दुनिया में ये पहला कदम हो पहला कदम ले उठा प्यार भ अंगड़ाई है दिल भी जवान अजी ऐसे मिलए जाते हो तुम बोलो कहां अजी ऐसे मिलिए जाते हो तुम बोलो कहां दूर दुनिया की निगाहों से कहीं जाएंगे हम हो कहीं जाएंगे हम प्यार की दुनिया में यह पहला कदम हो पहला कदम बड़े अरमानों से रखा है बलम तेरी कसम ओ बलम तेरी कसम प्यार की दुनिया में ये पह पहला कदम हो पहला कदम तेरी दो आंखों में दिखते हैं मुझे दोनों जहां इन्हीं में खो गया दिल मेरा कहो ढूंढू कहां इन्हीं में खो गया दिल मेरा कहो ढूंढू कहां चांद घटता हो घटे अपनी मोहब्बत ना हो कम हो मोहब्बत ना हो कम प्यार की दुनिया में ये पहला कदम हो पहला कदम जुदा ना कर सकेंगे हमको जमाने के सितम हो जमाने के सितम प्यार की दुनिया में यह पहला कदम हो ना कदम मेरी नैया को किनारे का इंतजार नहीं मेरी नैया को किनारे का इंतजार नहीं तेरा आंचल हो तो पतवार भी दरकार नहीं तेरा आंचल हो तो पतवार भी दरकार नहीं तेरे होते हुए क्यों हो मुझे तूफान का गम मुझे तूफान का गम प्यार की दुनिया में ये पहला कदम हो पहला कदम बड़े अरमान से रखा है बलम तेरी कसम हो बलम तेरी कसम प्यार की दुनिया में ये पहला कदम हो पहला कदम एहसान तेरा होगा मुझ पर दिल चाहता है वो कहने दो मुझे तुमसे मोहब्बत हो ग गई है मुझे पलकों की छाओ में रहने दो एहसान तेरा होगा मुझ पर दिल चाहता है वो कहने दो मुझे तुमसे मोहब्बत हो गई है मुझे पलकों की छाओ में रहने दो एहसान तेरा होगा मुझ [संगीत] [प्रशंसा] पर तुमने मुझको हसना सिखाया [संगीत] तुमने मुझको हंसना सिखाया रोने कहोगे रो लेंगे अब रोने कहोगे रो लेंगे आंसू का हमारे गम ना करो वो बहते हैं तो बहने दो मुझे तुमसे मोहब्बत हो गई है मुझे पलकों की छाओ में रहने दो एहसान तेरा होगा मुझ पर चाहे बना दो चाहे मिटा [संगीत] दो चाहे बना दो चाहे मिटा दो मर भी गए तो देंगे दुआए मर भी गए तो देंगे दुआए उड़ उड़ के कहेगी खाक सनम ये दर्दे मोहब्बत सहने दो मुझे तुमसे मोहब्बत हो गई है मुझे पलकों की छाव में रहने दो एहसान तेरा होगा मुझ पर दिल चाहता है वो कहने दो मुझे तुमसे मोहब्बत हो गई है मुझे पलको की स में रहने दो एहसान तेरा होगा मुझ पर हो कातो से भी केल आदत के बंधन मांग पायल हो कोई ना रोको दिल की उड़ान दिल वो [संगीत] चलो आज फिर जीने की तमन्ना है आज फिर मरने का इरादा है आज फिर जीने की तमन्ना है आज फिर मरने का इरादा [संगीत] [प्रशंसा] [संगीत] है अपने ही बस में नहीं मैं दिल है कहीं तुम कहीं मैं तो अपने ही बस में नहीं मैं दिल है कहीं तों कहीं मैं जाने क्या पाके मेरी जिंदगी ने हस करर कहा आज फिर जीने की तमन्ना है आज फिर मरने का इरादा है आज फिर जीने तमन्ना है आज फिर मरने का इरादा [संगीत] है मैं हूं गुमार या तुम हो [संगीत] कोई बताए मैं कहां हूं मैं हूं गुमार या तफ हू कोई बताए मैं कहां हूं डर है सफर में कहीं ो ना जाऊ मैं रास्ता ना [संगीत] आऊ आज फिर जीने की तमन्ना है आज फिर मरने का इरादा है आज फिर जीने की चमना है आज फिर मरने का इरादा [संगीत] है कल के आंध रो सेनी चलते देखा है आंखें मलते बलते हो कल के अंधेरों से नि जलते देखा है आंखें मंदे मंदे फूल ही फूल जिंदगी बहा है है कर लिया आज फिर जीने की मनना है आज फिर मरने का इरादा है आज फिर जीने की तमन्ना है आज फिर मरने का इरादा [संगीत] है अब मैं आपके सामने भारत की मशहूर कलाकार श्रीमती नरगिस दत्त को स्टेज पर आने की प्रार्थना करती हूं श्रीमती नरस [संगीत] द अब मैं लता जी से इल्तजा करूंगी कि व एक बहुत ही खूबसूरत गीत पेश करें फिल्म का नाम है मैं तुलसी तेरे [प्रशंसा] आंगन मैं तुलसी तेरे आंगन की मैं तुलसी तेरे आंगन की कोई नहीं मैं कोई नहीं मैं कोई नहीं मैं तेरे साजन की मैं तुलसी तेरे आंगन की मैं तुलसी [संगीत] [प्रशंसा] मांग तेरी सिंदूर भी तेरा सब कुछ तेरा कुछ नहीं मेरा मांग तेरी सिंदूर भी तेरा सब कुछ तेरा कुछ नहीं मेरा मोहे सौगंध तेरे असुवन की मैं तुलसी तेरे आंगन की मैं तुलसी [संगीत] [संगीत] मैं तेरा क्या ले जाऊंगी कुछ ना कुछ तोहे दे जाऊंगी मैं तेरा क्या ले दे जाऊंगी कुछ ना कुछ तो है दे जाऊंगी धूल में तेरी गलियन की मैं तुलसी तेरे आंगन की कोई नहीं मैं कोई नहीं मैं कोई नहीं मैं तेरे साजन की मैं तुलसी तेरे आंगन की मैं तुलसी तेरे आंगन की [संगीत] [प्रशंसा] [संगीत] बिंदिया चपे की चूड़ी खं की बिंदिया चमके की चूड़ी खं की तेरी नींद उड़े उड़ जाने कचरा महने का कचरा का गजरा महके का गजरा महके का माहे रुसना ते रुसना बिंदिया चमकेगी चूड़ी घंटे [संगीत] की मैंने हुआ तू दीवाना जुलम तेरे साथ हुआ मैंने माना मैंने माना हुआ तू दीवाना जुलम तेरे साथ हुआ मैं कहां ले जाऊ अपने लंग का लश्कारा इस लश्क के द्वार प ल से आपके द्वार में चन मुए से मुर जाए बिदया चमके की चूड़ी न की बोले कंजना किसी काओ सजना जवानी पे जोर नहीं बोले कंगना बोले कंगना किसी गाऊ सजना जवानी पे जोर नहीं ला बना कर ली दुनिया कहते है मेरे घुंगरू पाई भाजगी गोरी चेगी पायल पाचे कीी गोरी नाचेगी छत टट टट जाए बदिया टे चूड़ [संगीत] मैंने तुमसे मुहबत से है गुलामी नहीं केवल मा मैंने तुझ मिलने से मु बत की है बुलानी नहीं केवल मा जी किसी का तूने चाहे कोई मुझसे रोके मैं तो खेलूंगी मैं तो छेड़ी मैं तो खेलूंगी मैं तो छेड़ी री टने के ड़ जाए बिंदिया चमकेगी चूड़ी खनकेगी तेरी नींद उड़ते उड़ जाए बिंदिया चमके चूड़ी ं [संगीत] की जो वादा किया वो निभाना पड़ेगा रोके जमाना चाहे रोके खुदाई तुमको आना पड़ेगा जो वादा किया वो निभाना पड़ेगा रोके जमाना चाहे रोके खुदाई तुमको आना पड़ेगा जो वादा किया वो निभाना पड़ेगा निभाना [प्रशंसा] पड़ेगा हम अपनी वफा पना इल्जाम लेंगे तुम्हे दिल किया है तुम्हे जा भी देंगे जब इश्क का साधा किया फिर क्या घबराना हमको आना पड़ेगा जो वादा किया वो निभाना पड़ेगा निभाना पड़ेगा चमकते हैं जब तक ये चांद और तारी ना टूटे के आप अहद पमा [संगीत] हमारी एक दूसरा जप थे सलाह के दीवाना हमको ना पड़ेगा जो वादा किया वो निभाना पड़ेगा रोके जमाना चाहे रोके खुदाई तुमको आना पड़ेगा जो वादा किया वो निभाना पड़ेगा निना [संगीत] पड़ेगा दिल कीय आग जल जल कर बुझने भी लगी मगर मगर वो ना आया तन्हाई के बोझल अंधेरे बढ़ते रहे और आखिर आखिर उम्मीदों की तपती हुई रात को ठंडा किया तो नैनों के नीर में यह दिल का दर्द ही था जो आंसू बनकर बरस पड़ा रिम छम रिम छम आज के इस भूत प्रेतों के आत्माओं के गीतो का ये आखरी गीत सुनिए नैना बरसे रिम छम रिम [संगीत] छना बरसी रिं [संगीत] [संगीत] नैना बरसी झिम झिम झिम झिम पिया तोरी पावन किया [संगीत] नैना बरते झिम झिम भिम नैना बरसे बरसे ब [प्रशंसा] [संगीत] [प्रशंसा] अधूरा हूं मैं अप साना जो याद आऊ चले [संगीत] आना अधूरा हूं मैं अफसाना जो याद आऊ चले आना मेरा जो हाल है कुछ भी हो आ कर र देखते जाना भीगी भीगी पन के छम छम आसु चल के खोई खोई आंखें है [संगीत] उदा [संगीत] ना बरस झिम झिम झिम झिम नैना बरसे बरसे [संगीत] बरसे वो दिन मेरी निगाहों में वो याद मेरी आहों में वो दिन मेरी निगाहों में तो याद मेरी आहों में ये दिल अब तो भटकता है तेरी उल्फा की राहों में सुनी सुनी राहे सहमी सहमी बाही आंखों में है बरसा की [संगीत] प्यास नैना बर से रिम झिम रिम झम पिया तोरे आवन किया नना बर रिम झिम रिम झम नैना बरसे बरसे बर इवर का लिखा हुआ गीत कल्याण जी आनंद जी की तर्ज सरस्वती चंद्र चंदन स बदन सुनिए और खो जाइए अपने आपको को इस इस खूबसूरत सी तर्ज में इस खूबसूरत से गीत वन टू [संगीत] चंदन सा बदन चंचल चितवन धीरे से राहे उसरा चंगल सबन चल चितवन धीरे से राए मुस्काना मुझे दोष ना देना जगवान मुझे दोष ना देना जग भारो हो जाए अगर दिवन दीवाना चंदन सवदी चंचल चित [संगीत] [संगीत] ये विशाल नयन जैसे नील गगन पंछी की तरह जाऊ मैं ये विशाल नयन जैसे नील गगन पंछी की तरह हो जाऊ में सरहाना जो हो तेरी बाहों का अंगार पे सो जाऊ में मेरा पैरा की मन डोल गया मेरा पैरा की मन डोल गया देखे जाना तेरी मस्ताना चंदन सा ब चंचल चित [संगीत] [संगीत] तन भी सुंदर मन भी सुंदर तू सुंदरता की मूरत है तन भी सुंदर मन भी सुंदर तू सुंदरता की मूरत है किसी और को शायद कम होगी मुझे तेरी बहुत जरूरत है पहले भी बहुत दिल तरसा है पहले भी बहुत दिल तरसा है तू रना दिल को दर साना चंदन सा बदन चंचल चितवन धीरे से तेरा ही [संगीत] मुस्काना बन भायो आपको याद होगा इसी गीत पर सबसे पहली नेशनल अवार्ड म्यूजिक के लिए मिला था सरस्वती चंद्र के गीतों को और देहली में ही मिला था इस हॉल में नहीं विज्ञान भवन में आप ही की दहली में हमें बड़ी खुशी है कि यह गाना भी लता जी ने चुना आज के प्रोग्राम के लिए और जब आपको पता लगेगा कि अगला गाना कौन सा है तब देखि कि आपके दिल पर क्या बीतेगी यह वह गाना है जिसकी तर्ज मदन मोहन ने बनाई है जिसे मजरू सुल्तानपुरी ने लिखा है थोड़ा सा क्लासिकल संगीत का का शौक रखने वाले लोगों को यह गाना तो इतना पसंद आएगा कि क्या अर्ज करूं थोड़ा सा प्रेम करने वालों को यह गाना बेहद पसंद आएगा माइक्रोफोन वालों से गुजारिश है कि ओवर ना करें माइक सरा संभाले बहनों और भाइयों यह गीत है बैया ना धरो सुनिए [संगीत] बैयाना अथरो बल बैया ना धरो ओ बलमा बैया ना धरो ओ बल मा ना करो मुसे रा भैया ना धरो को बलमा ना करो मु सेरा बैया ना धरो ू [प्रशंसा] परमा ढलगी चंदरिया तन से ढलगी चुनरिया तन से तन से तन से ढलगी चुनरिया तन से हंसगी रे चुड़िया छन से हसेगी रे चुड़िया छन से छन से हसेगी रे चुड़िया मचे गी रकार बैया ना धरो ना धरो ना धरो मैं तो आप बहकी बहकी मैं तो आप बहके बहके बहके बहके मैं तो आप बहके बहती चरू जैसे महकी महकी चलू जै जैसे महकी महकी महकी चलू जैसे महकी चमेलिया कीड भैया ना ध ओ बलमा ना करो मुसरा बैया ना धरो नाधर नाधर [प्रशंसा] ल भैया नाधर सैया इस प्यार भरी शिकायत के बाद बहन भाइयों अब एक ऐसा गाना लता जी गाएंगे जिसका ताल्लुक बादलों से है बादल जो बरखा बरसाक कुछ अजीब सा समा पैदा कर देते हैं दिलों में एक अजीब सी बेकरारी छा जाती है रातों की नींदे गायब हो जाती हैं और इसीलिए लता जी अब सचिन देव बर्मन के निशन में नीरज का जो गीत गाएंगे उसमें वह कहेंगी कि मेघा छाए आधी रात बैरन बन गई निंदिया फिल्म शर्मीली का यह खूबसूरत गीत सुनिए लता मंगेशकर [संगीत] ी मेहा छाए आधी रा बरन बन गई नि निहा छाए आधीरा बरन बन गए बता दे मैं क्या करू मिलना जाए आधी रात बैन मन गई सबके आकन दिया चल रे मोरे आंगन जिया हवा लागी सूर जैसी ना मार चुनरिया सबके आनंद दिया चल रे मोरे आंगन जिया हवा लागे शूर जैसी ताना मार चुनरिया आई है आंसु की परा बन बन गई बता दे मैं क्या करूं ने भा जाय आधीरा बैन बन गईया रूठ गई सबनी सारी टूट गई रे आशा नैन बहर गंगा मोरी फिर भी मन है प्यासा रूठ गए रे सपने सारे टूट गई रे माया नन ब गंगा मोरी फिर भी मन है प्यासा इस कू रे मन की बात बैरन गई बता दे मैं क्या करू बगा जाए आधी रात बरन बन गई [संगीत] [प्रशंसा] निंदिया आप यकीन मानिए कुछ फिल्मों के नाम जो मैं सुन रहा हूं उसके गाने आपके सामने जरूर आएंगे क्योंकि लता जी अभी एक और गाना गाकर यह हिस्सा जब खत्म करेंगी उसके बाद दो बार और आएंगी स्टेज पर और बहुत गाने गाएंगे आपकी तालिया हो जाए और [संगीत] अब देखिए बहन और भाइयों एक खास बात मैं आपसे कह दूं सुनिए सुनिए सुनिए सुनि बहन भाइयों लता जी उन लोगों में से हैं जो अपना हर प्रोग्राम बड़ा सीरियसली देती है बहुत एक एक नपी तुली चीज बराबर उन्होंने रिहर्स करके ऑर्केस्ट्रा के साथ तैयार करके एक के बाद एक आपके सामने पेश कर रही हैं और बहुत सारी फिल्मों के नाम जो मैंने सुने उनके गीत आपके सामने जरूर पहुंचेंगे आप आराम से प्यार से सुनिए लेकिन अब जो गाना आपके सामने आएगा वह है वो फड़कता हुआ गीत जो जिसका जिक्र मैंने किया था उस फिल्म का जो कि आजकल बहुत जोरों में चल रही है और यह लता जी अकेली नहीं अपनी छोटी बहन उषा के साथ गाएगी फिल्म का नाम पहले उषा जी तो आ जाए स्टेज पर उषा जी आइए बन भाइयों तालिया गीतकार साहिल लुध्याना संगीत निर्देशक लक्ष्मीकांत प्यारे लाल फिल्म का नाम बताइए द और गाना कौन सा य आप समझ ही गए हैं फिर भी लीजिए सुनिए [प्रशंसा] वन वन यार ही मेरा कपड़ा लता यार ही मेरा गहना यार मिले तो इज्जत समझो कंजरी बन कर [संगीत] रहना नि मयार मनाना नहीं चाहे लोग बोलिया बोले नियार मनाना नहीं चाहे लोग बोलियां बोले निमया और मनाना जी चाहे लोग बोलिया बोले मैं तो पास ना आना नहीं चाहे जहर सत नहीं भोले मैं तो पास ना आना नहीं चाहे जहर सात नहीं भोले बखड़ा उसका जान का टुकड़ा कजरो का को उसकी बाह का हर हर कोरा लगता स्वर्ग में दूता बनाना नहीं चाहे लोग बोलिया बोले मैं तो पास ना आना नहीं चाहे जह सोत नहीं भले या मिले तो हो यार मिले तो ज क्या करना यार मिगा जक सुना जग के बदले यार मिले तो यार का बोल दू दूना मैं तो नहीं शर्मा नानी मैं तो नहीं शर्मा नानी चाहे लोग गोलिया बोले चाहे लोग बोलिया बोले मैं तो सजाना नहीं चाहे पहर साथ नहीं घोले मुझसे सजाना की न करन को रहे मेरे पैन रहा मेरे चड़ उड़ उड़ जाए आंगन मेरा ल खुल जाए चड़ बनाना नहीं लोग बोलिया बोले मैं तो बासना आना नहीं चाहे जहर सत भोले मैं ठ केली हो मैं ठ केली करती की मैं दीवारों से बाते आज मिला वो या तो बस है फिर से सुनी राते झुमर पानी झुमर बनानी चाहे लोग बोलिया बोले चाहे लोग बोलिया बोले नच के यार रिझाना नी जाहे जहर सत में भोले नच के यार रिझाना नी चाहे जहर सत नहीं घोले बिछड़े यान तेरा डाला के सुखा कर बोली आज मिली जो लत उसका मोल ल जाने कोई मार मनाना नहीं चाहे लोग गोलियां बोले मैं तो पास नानानी चाहे जहर साधने ओ है जमा ना चुपचाप [संगीत] [संगीत] [संगीत] सीता है [संगीत] दुनिया बकल है दिल के [संगीत] मोरी ऐसी कोई इस तरह आ रही [संगीत] है जैसे के चल रहा ह मन कोई [प्रशंसा] [संगीत] होरे यार दिल धड़क रहा [संगीत] के [संगीत] सहारे आएगा आएगा आएगा आएगा नहीं माना आएगा [संगीत] दीपक बगैर कैसे परवानी जल रहे है दीपक बगैर कैसे परवान जल रहे कोई नहीं चलाता और तीर चल रहे हैं तड़पेगा कोई तब तक बे आस बे सहारे तड़पेगा कोई कब तक बे आस बे सहारे ही रहे है मुझसे दिल के मेरे इशारे आएगा आएगा आएगा आएगा आने वाला आएगा आएगा आएगा [संगीत] [संगीत] भटकी हुई जवानी मजल को ढूंढती है भटकी हुई जवानी ल को ढूंढती है माछी बगैर नया साहिल को ढूंढती है क्या जाने दिल की कश्ती कब तक लगे किनारे क्या जाने दिल की कश्ती कब तक लगे किनारे दिल है रहे दिल के मेरे इशारे आएगा आएगा पाएगा पाएगा निवाला आएगा आएगा बहन भाइयों ये आत्माओ के गीत है आत्मा तड़पती रही मगर आने वाला ना आया तड़प जब हद से बढ़ गई तो आत्मा बेचैन हो उठी और भटकने लगी आंखें मुंतज बाहे सनी और मन में एक परदेसी की प्यास एक ऐसी प्यास जो शायद कभी नहीं बुझेगी कभी नहीं बुझेगी दिल थाम कर जगर था सुनिए परदेसी को पुकारता हुआ ये एक और अमर आजा रे परदेसी मैं तो कब से खई इस पा ये अखिया झ गई पंच निहा आज रे [संगीत] परदेसी मैं तो सब से खड़ी ये अखिया गए [संगीत] तुम हो जा रे परदे [संगीत] मैं नदिया फिर भी मैं प्यासी भेद ये गहरा बात जरा सी मैं न दिया फिर भी प्यासी भेद ये गहरा मात जरासी बन तेरे परन सासु दो से [संगीत] आरे मैं तो कब से खड़ी इस बा ये अखिया तक गई पंत निहार आज रे [संगीत] परदेसी तुम सब जन्म जनम के फेरे भूल गई क्यों साजन में तुम संग जन्म जनम के मे भूल गए क्यों साजन मेरे तड़पत हू मैं साज सुरे [संगीत] जा रे मैं तो कब से री इस ब ये थ गई पलिया परदे [प्रशंसा] [संगीत] प्यास यह प्यास बढ़ते बढ़ते शोला बन गई और इंतजार के इन शोलो में आत्मा झुलसने लगी शायद इस आग ही को परवाना दीपक समझकर अपनी मंजिल बना ले शायद जलते हुए दिल की रोशनी से ही ना आने वाला खींचा चला आए अजीब है यह तिकोनी प्यास एक तरफ परवाना एक तरफ दीपक एक तरफ दिल स [संगीत] [संगीत] कहीं दे चले कहीं दिन जरा देख ले आकर परवाने तेरी कौन स है मंजिल जरा देख ले आकर परवाने तेरी कौनसी है मंजिल कहीं दी चले कहीं दिल [संगीत] ना मैं सपना हूं ना कोई आसू एक दर्द भरी आसू पिया देन कर [संगीत] आमिल जरा देख ले आकर परवाने तेरी कौनसी है मंजिल कहीं दीप चले कही [संगीत] [प्रशंसा] [संगीत] दुश्मन है हजार यहा जान के जरा मिलना नजर पहचान के कई रूप में है कातिल जरा देख ले आकर परवा तेरी कौनसी है मंजिल कहीं दीप चले कहीं दिल [प्रशंसा] [संगीत] [प्रशंसा] [संगीत] [संगीत] ना बोले ना बोले ना बोले रे ना बोले ना बोले ना बोले रे घूंघट के पटना खोले रे राधा ना बोले ना बोले ना बोले रे घूंघट के पटना खोले रे राधा ना बोले ना बोले ना बोले [संगीत] रे राधा की लाज भरी अखियों के डोरे राधा की लाज भरी सखियों के डोरे देखोगे कैसे अब गोकुल के छोरे देखोगे कैसे अब गोकुल के छोरे देखो मोहन का मनवा डोले रे राधा ना बोले ना बोले ना बोले रे भूम भट के पटना बोले रे राधा ना बोले ना बोले ना बोले रे [संगीत] याद करो जमुना किनारे सांवरिया याद करो जमुना किनारे सांवरिया [संगीत] करो जमुना किनारे सांवरिया होड़ी थी राधा की काहे ना घरिया ड़ी थी राधा की काहे गगरिया इस कानना तुम संग बोले रे राधा ना बोले ना बोले ना बोले रे घूंघट के पटना खोले रे राधा ना बोले ना बोले ना बोले [संगीत] रे रूठी हुई यू ना मानेगी छलिया रूठी हुई य ना मानेगी छलिया चरणों में नाधा के रख दो मुरलिया चरणों में राधा के रख दो मुर रलिया बात बन जाएगी होले होले रे राधा ना बोले ना बोले ना बोले रे घूंघट के फटना खोले रे राधा ना बोले ना बोले ना बोले रे अगला गाना मैं अनास करने इसलिए आई हूं कि मैंने इसको बहुत जरूरी समझा इससे एक बहुत गहरा ताल्लुक है मुझे कहा गया कि एक बहुत ही सुंदर आवाज आपके लिए गाना गाएगी मैं वहां पहुंच गई रिकॉर्डिंग पे रिकॉर्डिंग रूम का दरवाजा बंद था देखा तो एक छोटी सी दुबली पतली सी लड़की जिसके लंबे-लंबे बाल हैं दो चुटिया किए हुए सीढ़ियों पर बैठी हुई है घुटने प उसके किताब है और गुनगुना रही है एक सख्ता सा छा गया मैं समझ गई कि जरूर यह लता मंगेशकर होंगी आप तो जानते हैं हिंदुस्तान की पहाड़ी में बहुत खूबसूरत बारिश होती है और बादल भी घिर जाते हैं और एक पहाड़ी लड़की प्रेमिका अपने प्रेमी से कहती है कि बरसात में हमसे मिले तुम सज्जन तुमसे मिले हम [प्रशंसा] [संगीत] [प्रशंसा] [संगीत] [संगीत] बरसात में बरसात में हमसे मिले तुम सजन तुमसे मिले हम बरसात में बरसात में हमसे मिले तुम सजन तुमसे मिले हम बरसात में बरसात में हमसे मिले तुम सजन तुमसे मिले हम बरसात में [संगीत] प्रीत ने सिंगार किया मैं बनी दुलहन मैं बनी दुल्हन सपनों की रिमझिम में नाच उठा मन मेरा नाच उठा मन आज मैं तुम्हारी हुई तुम मेरे सनम आज मैं तुम्हारी हुई तुम मेरे सनम तुम मेरे सनम बरसात में बरसात में हमसे मिले तुम सजन तुमसे मिले हम बरसात [संगीत] [प्रशंसा] में ये समा है जा रहे हो कैसे मनाऊ कैसे मनाऊ ये समाही जा रहे हो कैसे मनाऊ कैसे मनाऊ मैं तुम्हारी राह में नैन बिछाओ नैन बिछा जो ना आओ तुमको मेरी जान की कसम जान की कसम बरसात में बरसात में हमसे मिले तुम सजन तुमसे मिले हम बरसा में देर ना करना कहीं ये आस टूट जाए सांस छूट जाए देर ना करना कहीं ये आस टूट जाए सांस छूट जाए तुम ना आओ दिल के लगी मुझको ही जलाए पाक में मिलाए ंग की लपटों में पुकारे ह मेरा मन मिल ना सके हाय मिल ना सके हम मिल ना सके हाय मिल ना सके हम मिल ना सके हम मिल ना सके मिल ना सके हाय मिल ना सके हम मिल ना सके हाय मिल ना सके हम मिल ना सके हाय मिल ना सके हम हाय बरसात में [प्रशंसा] [संगीत] वंस मोर भी होगा अभी तो बहुत कुछ होगा अभी अभी तो रात बाकी है अभी हमारी बेगम साहब ने कहा कि दिल धड़क रहा है मुझे मालूम था क्यों धड़क रहा है क् हम वहां पीछे बैठे हुए थे और मुझे मालूम है कि आप भी अकेले नहीं आए हैं वैसे जरा हाथ लगा देखिए सबके दिल थड़क रहे हैं बा नहीं है अब मैं आपके सामने इल्तजा करूंगा रिक्वेस्ट करूंगा उशा से कि व आए और आपके सामने गाना पेश करेंगे और उसके बाद लदा जी और उशा जी दो गाना पेश करेंगे दोना इतने मूड में है लता जी कहती है दो गाना अभी से होगा देख लीजिए [प्रशंसा] [संगीत] तुमको पिया दिल दिया कितने नाज से हो को नैना लड़ गए भोले भाले कैसे दगा बाज से हो तुमको पिया दिल दिया कितने नाद से आ नैना लड़ गए भोले भाले कैसे दगा बाज से हो तुमको पिया दिल दिया कितने नाज पे हो [संगीत] हाय रे दुहाई तेरी जुलमी पया धड़के अनाड़ी जिया ये क्या हाय जुल्मी पिया ये क्या किया हाय जुल्मी पिया ई मैं मर गई लाज की मारी देखा किस अंदाज से हो तुमको पिया दिल दिया कितने नाज से नना लड़ गए भोले भाले कैसे दगा बाज से हो तुमको पिया दिल दिया कितने नाज से [संगीत] [प्रशंसा] लागी नजरिया तोरी जादू भरे हो मांगी बहारे हमने बिजली गिरी होए जादू भरी बिजली गिरी जादू भरी दिल के सोए अरमा जागे तेरी ही आवाज जैसे हो तुमको पिया दिल दिया कितने नाज से हो ओ नैना लड़ गए भोले भाले कैसे दगा बाज से आ तुमको पिया दिल दिया कितने नाज से [प्रशंसा]

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Adobe Premiere Pro Video Editing: Techniques and Creative Storytelling by HBA Services

    Adobe Premiere Pro Video Editing: Techniques and Creative Storytelling by HBA Services

    This text is from a video editing course aiming to guide students in India from basic to advanced video editing skills. The course emphasizes a practical, step-by-step roadmap, focusing on creating marketable editing services. It includes hands-on projects such as creating stock video samples and client course videos while highlighting the importance of branding. The instructor plans to cover trending music video styles, YouTube content creation, and the use of customization techniques not commonly found on YouTube. The course touches upon project file creation, media panel utilization, effects control, sound panel functions, and working with pre-made templates, ultimately teaching students how to produce engaging and optimized content. Sound design is incorporated, with insights on selecting appropriate music, balancing audio levels, and using sound effects. The course also dissects the editing style of successful YouTubers like Alex Hormozi, emphasizing elements like camera angles, text styles, and overall visual impact.

    Premier Pro Editing: A Comprehensive Study Guide

    Quiz: Short Answer Questions

    1. What is the purpose of the “Effects Panel” in Premier Pro? The Effects Panel contains a library of visual and audio effects that can be applied to clips in the timeline. Users can search for specific effects, adjust their properties, and stack multiple effects to achieve desired results.
    2. How does the “Timeline” function in Premier Pro, and why is it important for video editing? The Timeline serves as the central workspace for assembling and sequencing video and audio clips. It’s crucial because it allows editors to arrange, trim, and synchronize media elements, creating the overall structure and flow of the video.
    3. Describe two ways to add titles to a video in Premier Pro. One way is by using the Text tool to directly type text into the Program Monitor. Another is to create titles using motion graphics templates that can be customized with text and other design elements.
    4. What are Motion Graphics Templates, and how can they benefit video editors? Motion Graphics Templates (MOGRTs) are pre-designed animation projects which can be customized with text, color, and other parameters. MOGRTs can save time and effort while still providing a polished look.
    5. Explain how keyframes are used in Premiere Pro. Keyframes are used to control the values of effect properties or clip attributes (such as position, scale, or opacity) over time. By setting different keyframes, editors can create animations, transitions, and dynamic effects.
    6. What does the term “color correction” refer to in video editing? Color correction is the process of adjusting the overall color and tone of video footage to achieve a consistent and natural look. It addresses issues like improper white balance or exposure discrepancies.
    7. What is the “Program Monitor” used for, and why is it important for video editing? The Program Monitor displays the final edited video sequence as it appears in the timeline. It’s important because it provides a real-time preview of the edits, effects, and overall composition, allowing editors to make informed decisions.
    8. What are the steps for importing media into Premiere Pro? Media can be imported via the File>Import menu, via the media browser window, or via simple drag and drop from the operating system file manager.
    9. Explain the concept of “layers” in the context of a video editing timeline. Layers are stacked tracks containing video, audio, or graphics, stacked one over another. The content on higher layers will appear on top of lower layers, allowing for complex compositions and visual effects.
    10. Why is sound design important in video editing? Sound design enhances the emotional impact and storytelling of a video. By using music, sound effects, and well-mixed audio, editors can create a more immersive and engaging viewing experience for the audience.

    Essay Format Questions

    1. Discuss the importance of organization in a video editing project. How can effective file management and project structure contribute to a smoother workflow and improved collaboration?
    2. Describe the process of creating a stylized video edit, incorporating techniques like color grading, visual effects, and sound design. How can these elements work together to achieve a specific aesthetic or mood?
    3. Analyze the role of pacing and rhythm in video editing. How can editors use techniques like trimming, transitions, and music selection to control the flow and energy of a video, and keep viewers engaged?
    4. Discuss the ethical considerations of video editing. How can editors ensure accuracy, avoid manipulation, and respect the rights and perspectives of individuals featured in their work?
    5. Examine the impact of artificial intelligence (AI) on the future of video editing. How might AI tools and technologies transform the creative process and the role of the video editor?

    Glossary of Key Terms

    • Timeline: The primary interface in a video editing software where video and audio clips are arranged and edited sequentially.
    • Effects Panel: A panel containing a library of visual and audio effects that can be applied to clips.
    • Program Monitor: A window that displays the final edited video sequence as it appears in the timeline.
    • Motion Graphics Template (MOGRT): Pre-designed animation projects that can be customized with text, color, and other parameters.
    • Keyframe: A point in time that defines a specific value for an effect property or clip attribute, used to create animations.
    • Color Correction: The process of adjusting the overall color and tone of video footage.
    • Layers/Tracks: Individual horizontal strips within the timeline where video, audio, or graphics are placed.
    • Import: The process of bringing media files (video, audio, images) into the video editing software.
    • Effects Control Panel: A panel used to modify settings and attributes of video clips.
    • Sound Design: A process used to improve, create, or alter audio elements within video in order to impact an audience.
    • Overlay: A video editing technique where two clips are combined to form one.
    • Branding: A visual style and design element used to create content.

    This briefing document summarizes the key themes and ideas from the provided text, which appears to be a transcript of a video tutorial or course on video editing using software like Adobe Premiere Pro.

    Main Themes:

    • Video Editing Tutorial: The document outlines the process of video editing, covering basic to advanced techniques. The target audience seems to be beginners and those looking to improve their skills, possibly for platforms like YouTube.
    • Customization and Branding: Emphasis is placed on customizing templates and creating a unique brand identity in videos, including color schemes, fonts, and effects.
    • Engaging Content Creation: The tutorial focuses on techniques to create engaging video content, including adding motion, sound effects, and visual elements. The importance of maintaining audience attention and retention is highlighted.
    • Practical Tips and Techniques: The document shares practical tips and techniques for video editing, including file organization, color correction, and incorporating various visual and audio elements.
    • Workflow and Efficiency: It details aspects of efficient video editing workflow, such as organizing files, creating sequences, and utilizing templates.
    • Long-Term Consistency: Focuses on achieving results through consistent practice and application of learned skills.
    • Overview of Software Features: Overview of different features, panels and effects in Adobe Premiere Pro.

    Important Ideas and Facts:

    • Template Usage: The video editing software allows users to download and customize templates for various purposes like motion graphics and shows. “You can download our template like this, play it.”
    • Color Correction: The tutorial covers color correction techniques to enhance the visual appeal of videos. “Your photos also get created in color that head part happens here You can see all the settings as much as you want That is a part of colouring sir, we are here”
    • Timeline Editing: The timeline is the central workspace for editing video and audio elements. “This is the place where you spend 90% of your time It is going to happen in editing like where the saree The sound designing is yours Overall, however much your editing would be It all happens within this timeline”
    • Effects Panel: The effects panel is used to create and customize visual effects in videos. “Come on effects panel, I was telling you this This is a facts panel, here you will find whatever You will create its effect there The property will be shown as I have mentioned the fact”
    • Organization: The text describes methods for efficient project organization. “Organizing is the least among all wheel i made a rail folder here Took this along with another folder inside I will make it which will be in the name of Ra Video so that all these things of ours are one In sequence stay an organized which they mine”
    • Caption Creation: The document outlines manual and automated methods for generating captions in videos. “First of all you can see my Puri Puri Here a condition has been created that whatever The whole sequence and the whole video are being liked The tapes with captions have now been transferred”
    • Font Selection: Guidance on choosing appropriate fonts and limiting the number of fonts used in a video. “Whenever you ever see a video If you are editing then never use too many fonts in it also he should not do that reverse video and spoil it It makes us feel good butt sex video Degrades the overall video quality”
    • Overlay Blending Modes: Tutorial shows how to use the ‘blend mode’ functions to blend images together. “Branding and change will make you brand You must have understood a little that you like your The blade is to put two clips together This is called becoming a blade”
    • Sound Design Importance: The document emphasizes the significance of sound design in creating engaging videos. “. . .the audience’s attention is There is that gap in the demand of many people It happens friend, this one is the most meaningful do it because it’s a way It is right to grab the attention of many people many people are not able to create it from Do whatever you want if you do it right now”
    • Consistent Practice: The instructor highlights the importance of consistent practice to improve video editing skills and achieve long-term success. “Because then you got a lot of likes She will go to the party also, I have taken her there towards the release part So let’s move on to the next part and A course edits videos and for this We are together and the future is yours”
    • Break Down complex tasks. This section references breaking down complex ideas and communicating this breakdown. “Connecting complaint sayings and Breaking Down Dr so this means that the complex things by reducing it and breaking it into smaller ones By converting into parts means something like this if he is trying to tell you then you can tell him what can i do what did i do campus Breaking Dr is a man again who we are how to digest”
    • Importance of Camera Angles and Movement: Focus on camera angles and movement. “The video of the video you will like one thing You don’t stay in place, you keep increasing so much that your heart does not want the video”

    In summary, the document provides a comprehensive overview of video editing techniques, covering various aspects from basic editing to advanced customization and engagement strategies. The tutorial aims to equip individuals with the necessary skills and knowledge to create high-quality and engaging video content for diverse platforms.

    FAQ on Video Editing Based on Provided Text

    Here’s an 8-question FAQ summarizing the main themes from the provided text on video editing:

    1. What types of files can I import and use in my video editing projects?

    You can import various types of files including video files, audio files, motion graphic templates, images, and custom templates. The software supports customization of imported assets to suit your specific project requirements. It’s essential to ensure the files you import are compatible with your software and properly licensed for your intended use (e.g., ensuring you have permission to use sounds in your videos).

    2. How do I customize templates for my videos?

    You can customize templates by replacing text, adjusting sizes, changing colors, adding effects (like shadows and strokes), and adjusting other properties. The key is to experiment with the settings to achieve the desired look and feel. Remember to maintain balance and avoid excessive effects that detract from the overall video quality.

    3. What is the importance of the timeline in video editing?

    The timeline is where you spend the majority (80-90%) of your time. It’s where you arrange your clips, add transitions, and perform the bulk of your editing work. Sound design, color correction, and other essential tasks are managed within the timeline environment. Getting comfortable with the timeline and its various functions is essential for efficient video editing.

    4. Can you describe the effects panel and its capabilities?

    The effects panel lets you modify and enhance various visual elements of your video. You can add effects like color changes, shapes, strokes, shadows, and other stylistic elements. The effects panel is a valuable tool for creative expression and helps you achieve specific looks.

    5. How do I use different video editing tools?

    The text mentions a selection tool, a rate stretch tool, and a Pen tool. Each has a specific purpose. The selection tool is for selecting items, the rate stretch tool alters clip duration, and the Pen tool creates custom shapes and masks. Experiment with different tools to understand their functionalities.

    6. What are the steps for editing course videos?

    Editing course videos involves adding text, infographics, stock videos, and creating a visually engaging presentation. Adding titles, highlight points, and presentation elements that complement the course contact presentation is a key element, while paying attention to the pacing and clarity of information being presented.

    7. What role do captions play in a video and how do I create them?

    Captions make your video accessible and engaging. You can automatically generate captions within the video editing software, but manual adjustment is usually needed to correct errors and customize the appearance. Important properties to customize include font, size, and shadows. Changing the color of certain words to emphasize parts of your text may help with readability as well.

    8. How should I organize my video project and which parts are essential?

    Organize your project by creating folders for different asset types (footage, audio, sound effects, etc.). Proper organization keeps your project manageable and saves time when searching for specific files. It’s also beneficial for collaboration and allows other editors to understand your work. A well-organized project demonstrates professional workflow.

    Comprehensive Video Editing Course

    The video editing course covers a wide range of topics, from basic to advanced techniques, and also touches on how to get clients and earn money as an editor.

    The course includes:

    • Basics of video editing software such as Adobe Premiere Pro, DaVinci Resolve, and CapCut. The course offers Pro editing for free.
    • Hardware requirements, noting that a good PC is not required, and editing can be implemented on normal PCs with 8GB or 6GB RAM or i5 third-generation processors.
    • Creating a project file and sequence settings for YouTube and social media.
    • Basic editing techniques using stock videos, music, and other media.
    • Road map that explains how to start from the basics, move to intermediate level, and then to a level where one can sell editing services.
    • Creating a sample stock video with basic effects for a portfolio.
    • Editing course videos with branding.
    • Editing trending reels, like those of Alex Hormozi, including customization methods.
    • Customization of templates.
    • Color correction.
    • How to organize project files.
    • Adding text, infographics, and stock videos.
    • Use of effects, captions, emojis, icons, and sound effects.
    • Creating transitions.
    • Sound design.
    • Personal branding.
    • Breakdown of editing styles of popular content creators like Alex Hormozi.
    • Client communication.

    The course emphasizes the importance of organization, consistent practice, and understanding the client’s needs. It also highlights that viewers can find templates and other resources online.

    Video Editing Skills: A Step-by-Step Guide

    The video editing course provides a step-by-step guide for learning and developing video editing skills, as well as a road map for how to sell those skills.

    The steps include:

    1. Basic Software and Hardware Introduction The course begins with introducing video editing software like Adobe Premiere Pro, DaVinci Resolve, and CapCut. The course will teach Pro editing for free. It also addresses hardware concerns, noting that a high-end PC isn’t essential, as editing can be done on PCs with specifications like 8GB/6GB RAM or i5 third-generation processors.
    2. Project Setup Create a project file and learn how to adjust sequence settings suitable for platforms like YouTube.
    3. Editing Basics Use stock videos, music, and other media to learn basic editing techniques.
    4. Road Map Overview Understand the complete road map, which includes learning the basics, moving to an intermediate level, and reaching a point where one can offer and sell editing services.
    5. Sample Creation Create a sample stock video that incorporates basic effects to build a portfolio.
    6. Branding Edit course videos while incorporating branding elements.
    7. Advanced Editing Learn to edit trending reels, such as those inspired by Alex Hormozi, and learn customization techniques.
    8. Customization and Correction Instructions for template customization and color correction techniques.
    9. File Management Learn how to keep project files organized.
    10. Enhancements Add text, infographics and stock videos to the project.
    11. Effects and Sound Use effects, captions, emojis, icons, and sound effects to enhance videos. The course emphasizes that the sound effects volume should remain low, and music and voices should be balanced.
    12. Transitions Create transitions to improve the video. The course also includes a section on creating customized transitions.
    13. Personal Branding Develop skills in personal branding.
    14. Style Breakdown Study the editing styles of popular content creators.
    15. Client Communication Learn how to connect with clients.

    Selling Video Editing Services: Course Summary

    The video editing course includes information regarding how to sell video editing services, including creating a portfolio and communicating with clients.

    Key points related to selling video editing services:

    • Road Map The course is designed to take you from the basics of video editing to a level where you can sell your services.
    • Portfolio Creation You’ll learn to create a stock video sample with basic effects to showcase in your portfolio. The course also provides guidance on how to create a portfolio that impresses clients.
    • Platforms for finding clients The course mentions platforms such as Fiverr, Guru, and others, for finding clients.
    • Personal branding The video editing course includes guidance on personal branding.
    • Client Communication You will learn how to communicate with clients. The course also emphasizes understanding and meeting the client’s demands to ensure a good working relationship.
    • Samples A recommendation is to start with at least three to five samples in a portfolio before seeking clients.
    • Mindset The video editing course emphasizes the importance of not focusing on money initially.

    Mastering YouTube Trends in Video Editing

    The video editing course includes discussion of YouTube trends. The course aims to teach students how to edit videos in a style that is currently trending on YouTube.

    Key aspects related to YouTube trends discussed in the video editing course:

    • Trending styles The course covers editing trending reels and videos, including those inspired by Alex Hormozi. It also teaches how to edit videos in the style of “Daal inaam ghazi ais”.
    • Engaging content The video editing course aims to teach how to create engaging videos.
    • Breaking news The course mentions “breaking news” of big YouTube videos and creating foxes of them.
    • Analyzing trending videos The course includes how to break down and analyze trending videos to understand the editing techniques used.
    • Customization Teaches the customization methods used in trending videos.
    • Trending music Encourages the use of fast-paced music in line with current trends.
    • Retention Describes how audience retention is higher if videos have fast-paced editing and visuals that match the song’s tempo.
    • Alex and Ali style The course will teach how to edit in the style of Alex and Ali, including what titles, effects, captions, emojis, and sound effects are used.
    • Camera angles The course notes that quickly changing the camera angle keeps the audience engaged.
    • Study other videos The video editing course recommends watching popular videos to understand how to incorporate cuts, ads, and other elements.

    Video Editing: Branding Style Guide

    The video editing course includes information about branding style, which is using a consistent look and feel across videos. A branding style can be defined through multiple elements, such as video and text effects or color.

    Key aspects of branding style discussed in the video editing course:

    • Branding definition A style defines a branding.
    • Course videos The course will teach how a style defines branding when editing course videos.
    • Consistency It is important to maintain a consistent branding style across videos.
    • Color Select a color that represents the brand.
    • Fonts Use a maximum of 2-3 fonts.
    • Overlay A branding mode basically is to put two clips together.
    • Elements Select elements, such as emojis, relevant to the video’s topic to maintain quality.
    Free Video Editing Course for Beginners | Adobe Premiere Pro Video Editing 2024 URDU – HINDI

    The Original Text

    Assalam walekum brother we are present for you Another great lesson for people this Saturday lekar and date this video editing and in Video editing is going to be a depth course In this course, you will learn each and every thing about The long form is the life of Explain how to edit the content and what You see trending wheels in which Alex and I have a very big name whose Rules are followed very strictly How can this type of release be edited? you can also make a video like this How can editors get clients and in what way? You can earn in all the ways The thing that you will learn in today’s course is If you want to teach me then brother the seat belt take a break and sit down leisurely and do this course Watch it and learn a thing brother, I will tell you The demand for skills, let me tell you the story I do not give distant examples and Hamdulillah Please give me a song for my youtube channel too I have hired the editor, now you are here Brother, you can guess the skill of this How much is the demand and you say that brother We don’t get any less Brother, the skill is for you people and jizort you are going to learn who Basit bhai oh no not me except me But even if people named Basit are possible then so is Basit Brother, today you will get a complete video editing tutorial Learners inside Crush Course are awesome We follow their social media links I told you in the description, you are Jain Follow them and learn more from them. Share this course again and again so that we can is about to learn and her friends It is necessary to tag them, it is necessary to share with them who are struggling like you or are struggling like you Somebody wants to learn that skill I mean, this for like minded people like you It is necessary to share the video, I have to learn it Last Video Editor and An Personal Branding Expert so in this course today I will teach you video editing You can create those rents this way You can create a contact as well How can you do this through your personal bank? you can do clients you can take clients If yes then you have to watch this course completely I am going into all this in great detail. I am going to tell you how I How did you start your journey How I started video editing Did you make your first sample and how? etc. was made and along with this, earlier If you had taken the client in this way then you would have got your full How will I share the journey with you too? Get your first client by following the same thing You can earn money and at the same time You can start something that will end India completely Look, I have explained many things in detail in this I have taught you something which you probably won’t even find on youtube If you get it then if you like the course then friend this video India should like the video and It is best to share it with your friends First of all thank you brother Basis I would like to have some who can help with the probe and also to them If you can give us a chance to earn then let’s go to your When you start the course, first of all So we will start from the very basics Everyone would have important questions If yes, then they discuss it first So that is the best, so the market at this time If we look at it we can do software from three These are running, first comes the premium Pro and Seven C Resolve comes third There is Captain Na Captain for PC too is available which you can do that which It is very good and can run on normal PC also goes and after effect in it I I am not including it because after It becomes quite advanced and normal And according to the current trend of video editing You can easily prove it for free you can do it for a female if you have full potential do that then you’re almost attacked but You pay for it and complete the whole course I will give you pro editing for free I will teach you because the way you can advance You could have had another important question guys do we have a good pc no the laptop is not good how Video editing implemented on our PC If it happens and hangs then this is the solution is not required for video editing if you have it very good then you Every wedding even in a decent normal PC You can start it with 8GB RAM 6 GB RAM or i5 third gender processor You can easily start editing on that too. You can and some problems at hand You will come and give him a heavy file If you are downloading heavy footage then There may be some error in playback There might be a little error but that is a matter ok right now starting from basic level I give you normality, I give you project Will you do anything for that Not sure and what I am going to learn in this I am telling you the thing which you can use on normal PC and Laptop on also I personally started it I had 6gb ram i7 3rd gen The graphics card was Tux 750i because I bought it for gaming so it took time Pay PC used to be quite heavy because I had a So there are two shots, that would be my PC bottle lock There was always relief at 100 plus time which I did it for a whole year I am thinking a lot about Redmi but I never had any issue with editing I imported such a heavy file only then If it happened to me then first find out your problem It is solved if you have good knowledge of PC. You should have some good oil for your laptop too If it is happening then its solution is this anytime If you don’t have the latest version then you You can go to 2019 and earlier versions you can go if it is very light Are you on third or i5 on second laptop If yes, I would recommend the old version Do it, it is not necessary to be on the latest version Because the latest version is from Jaiswal They demand more resources from me too The latest version hangs sometimes but once in a while his solution is this the old version do it because normal basic features are there If there are any small changes then you will If it is not so important then we use gas look at the screen and I’ll tell you what This way you can create this project file How can you make a sequence like this can I keep the settings Sequence and meaning of Youtube and social media what settings are being done for this ok let’s go i have placed my camera here etc. I bandied a bit from the beginning Camera should focus on the rest which is only and only If I show my screen then it’s gone And from here I can create a new project file I am late to create a new project I will click and like any name from here I give my project away If I do it in advance with the name of the test In the name of test I have written here and you I didn’t put anything in it, we put everything inside If we do it then we will have it created Any one of them can do that to him 2022 19 something You can also let her go So this is our whole project We do all the interface parts that you will do your basic parts in this I because after this will come then everything will be in it By doing this thing you will be accomplished no matter how much you want If it happens then first of all the land part is here A goes here at the speed of the sequence If the settings are divided like this then First, let me make it and show you So to create a sequence simply use your After knowing this in the file you have Simply I have to come here in New in New I can see you here as soon as you arrive You can see the sequence option here So you can open it from here as well You can see its shot is given here Shortcut keys are given which are Control and so you can do it from here as well so I From here, click on new settings. you can see Many folders have been added, different ones inside it If the temperature is high then you should choose one of these No one is coming here from here in someone in this go to settings and in settings Sometimes you can make a sequence here like You can see I have made it custom here Already saved in 1080p full youtube For more 1080p article short videos For this you have to go to settings here When you come to do your sequel settings here if there is a part in the head then there is not much complex, everything is easy It’s not too difficult in anything mode You have to select custom from here After coming up you can select any random item here. It may have happened that you had to go to the airport at one time You can do this from here by selecting any Do what you feel is right and like it After selecting A go in this also You simply come here and do your editing The mode is to customize it and for this Additionally there is a frame area here if there is another one then the frames will give you It depends, these people edit it on 30th some people do 24 fc him to me from the beginning it goes But here it is up to you and you can do anything for the gland. Whatever the demand is, do it 24 so he has to go to the right after that What matters is the resolution here The best Twenty Tennis is the flower HD resolution it happens they call it this that resolution it happens this happens to him only this You oppose the resolution because You then get a resolution for it 9/16 okay right so yes this is what happens and Rest you are going for 4k any resolution The second option below will be created This is pixel extract fibers, you can do this in it Like Square Whatever number of seconds you have, it will be left Things you don’t have to do with anyone and here if you want you can click on this You can select the maximum option Maximum Quality so from here you have started following the sequence You can take my name, offer me your saree Do you want to create it in one go sequence and later this temperature If I do this simply by coming here I will tell you Please set an option here for safety If you set it, you can set your sequence here Give it any name, like I had named it Peepal So you can give it a name like this do it this way and do it simply, rest is here The name of the sequence is sequence kam will you do it And rest sir this is the complete interface so I hope you will know And how are the like settings etc. and also I am changing the export settings I’ll tell you what happens to you Your video stays like this Go to export settings and you have also told your story first and location Where can you do things on your PC you have to enter and the second one here If you want to export then first of all come here You also like 10p high quality select You can do it here for ₹104 already Templates are available but whatever you like I will comment on whatever your couplet etc. is Rendering has to be done according to the sequence Like you will click here brother this I’m gonna do that you can see the recent I have been having a So my sequence settings will be to everyone He has to do this, this is the best thing and like this The format is mp4, any other You did not know the simple format that’s just what he has to do You can pick your favorite from here Whoever likes this, I am the source of this If you do this then it will happen, rest you simply No need to go into these settings much so then from here you go down like this you are here If you come there and click on export then your Video X will start Export is not possible directly here you can do it on youtube also but if that then do it when you have a cloud if you don’t You can give it only by direct export uploading it and there is something so special in it to tell you what all things would be like everything is the same and here the sentences which can you request your like friend and you can do hardware and coding If you like the settings, you will like it And some more here the basic one is first Settings and what your export says If you have understood the settings then let’s move on Towards the next part Towards the first part And start learning your basics So if you like this course then like it and share it Do and like anything related to India message me if you want to ask Also you can comment whatever questions you have ask me in hello salaam walekum gas this is me basit And this is going to be the first part of our course. The starting part is going to happen In which we will do all the basics How basic editing is done and what are the benefits of editing What are the free tools available in Pro what are the basics of canter face etc we will basically do saree and along with it Now we will create a sample in this Stock video of a pizza type we will make it of trailer type which It will be made with music and stock It will be made from video, in this almost your Any number of premiums is ok, any number of sixes they will almost be cleared All the basics should be clear to you and this one as well It is based on editing only If your basics are as good as you are Your concepts will be clear so good ahead so you can proofread the thing If you know the basics well then you You can learn the best editing, friend How our course is designed How I made it and step by step What is coming to India step by step So I start it completely First of all I told India that you Like an average video editing course no, understand the road map which is yours which I Let me tell you from the beginning how I want to learn the basics then how I want to go to intermediate level and how to do it Then you have to reach this level where you can do editing Can you sell services and how? Where to sell, how to be portfolio-friendly This will be completely like a road map I will try to do everything I will do as much as I can and almost and I will do everything that you From You can start editing, learn what else If you want to sell it this way then you can sell everything I will almost do it when the basic average It is not like the Force, which has only those tools We keep on learning the same thing, it’s complete means edit like this I won’t do it for you I will do the editing and you will also I will teach you how to edit coins you can sell further and also let me tell you the steps By step what is going to happen in India First, we will create a sample. Create a stock video sample that contains All your basic taxes will be paid and which you You can also add it to your portfolio and also the other video which happened is a video of clients doing a course Video related to which is a course video If you make it in a presentation style then it The video will follow a branding If yes, I will teach you about branding How a style defines a branding If it is followed then that part is for you It will explain how to conduct the course You can edit any normal video It has the same branding style etc. follow that thing further I will do it and after that we will be real Jarrett will do the trending wheels and the gas that ran yesterday Alex and ali or lal type of music which Trends are going on, they will learn to edit I will tell you a story which is not even on Youtube I haven’t seen anything good yet so I will see you How is the customization done in it Which method is followed and in what way Everything gets edited on one page from here that probably no one has done yet I will teach you all those things and after that Then this Alex will move towards YouTube video And whatever else is trending on Youtube but who is creating video using how is he doing it how is he doing it Make a video engaging and how If you follow one style then it is quite If something is going to come to India then India will get more to look at and to myself as well as to me Breaking news of some big youtube videos I will also create their foxes and If I do it then whatever it is, it will be If it goes then I will wait on you too I will try to teach you as much as I can The more helpful the contact is and the more If it is a valuable thing, I will give it to you in India and the rest go on When you start it, first of all Here you can see that I have done a project Create a file with the name which I created last time. Introduction in part 1 of wicket I taught you how to do it and at the same time I made a You have also created your own sequence Which I also told you in your previous part If you had given it, then you can do it from outside as well Do you know how to create a project file? Create honey is simply we are here one let’s make a sequence let’s make a sequence There are most number of files in A which are After coming in I am not able to come on new Learn later, this way you can create a sequence You can here I have already made two pieces that I have kept it before also I told you there is a flower, 1080p flower which is available on YouTube The video resolution is up to 1080p Particle that is normal sort resolution If it is done then I will tell you the settings also. Is the editing mode that I have set custom and here is the time in seconds per FC So FC keeps changing here You can change whatever demand there is. take it I’m shooting it right now and Record And if your resolution from your ISP is 4k 14 40p so here is its resolution settle the value of that and whatever is yours The resolution will change, simply this is yours The resolution is set in the sequence There are settings which I mentioned in the previous part I have told you so now we move forward Let’s go from here after resetting you. You can set the settings for your patient from here You can become a Templetaser customer here If he falls asleep then let’s go, the rest he wants So you can also take options in this Your quality should be even better There is a caste but now if you have a PC then you let it stay like that So now do the basics of the interface If we look at things then first of all this This thing, this part, this Media panel wants to give Kallas as many stars as possible Your media files are stored there It happens like anything you import Any file you import can be a video Whatever songs you imported are gone You do this here, this is the caste of all the sarees thing and there’s a media panel here Saree is stored as well as There is also a video browser, from here you can You can browse the file directly from here you can import it and if you like this If you don’t understand something then directly In the manager manager where your files are if you do it here directly from there then You can follow other effects There is a control panel here, whatever you You will put the video on your timeline which the effects that will happen and whatever You will do it, means you will show them all here will be their value, their properties which His characteristics are all here you can see You can change as much as you can It is also a fact that the shows you have taken will be here on a video would have been made and the rest is another panel There will be video facts and whatever the meaning is Those sarees of yours would have been on show here which are also envelopes and from here You can also port a lot of pieces etc if you want you can download custom You can also import it from here Settings are available, you can import them from here yes here like I have kept some for myself and some for from where i imported it like If you can see then you can do it like this whatever is here, it prevents itself The templates are ok, they come with it Below is the sound panel, probably the pet version It comes in if you have a subscription You will also have this panel, it will be there right now You must not be able to do that because Track Version If you are doing it then what will happen here From here you can download all the facts etc. yes you can put this sound on your video I don’t have a part below this It is the final of the session, this happens in a little while All your mughals files are here have their own tax templates Those are motion graphic files There are shows here and you can get as many shows as you want here. Whatever you did today, the temperature will drop a little. You import them all by downloading them here But your stores are one I import I will show you by doing it, then it will be like this There are people templates for these, just you It has to be customized and it is yours If you are ready for the video then You can download our template like this, play it I will show you by doing So this is something like this temperature customized you can do anything, you can test it It will happen as you want to replace it to the text and from here this text There are properties here and what is its size How big should I keep the size, how small should I keep it and as well as gold etc There are settings that you can keep as you like You can have as many templates as you want You download files from outside It seems as if they have to import these sarees Click and whatever you have, that is your file If we want to import it then we will do it further I will do it in detail but for now just one I have given an overview of it towards the front Let me delete this as well So after this, what we have is a panel The number is the true panel here, whatever Your coloring is a part of the meaning, as much Your photos also get created in color that head part happens here You can see all the settings as much as you want That is a part of colouring sir, we are here We pay tax and in this also we contribute a little I would like to know the details but that is towards the end If you go, this is a little basic right now There is less colouring here sir The rest of the options below are panels Not all are special like these We will not leave ours, we will leave it so special does not happen during editing because I am going to do something about this today This is the place where you spend 90% of your time It is going to happen in editing like where the saree The sound designing is yours Overall, however much your editing would be It all happens within this timeline You can find out more about the rest of the things here. The file is imported here. There is a panel here to create facts two all other things are here which are in It is your time here 90 to 80% of your time is spent here is in editing and the other one is here You have your review window here, I edit the video that you are editing Whatever facts you find will be shown here you are reducing the things So in the video there is Staminarayana three The layer is its own video too And Dilip, we can do it by tracking and together the three that are yours There are sound layers that you can use for a reason The rest of the sound effects were added along with the music if you do it then this is what happens, rest here The options are which layer the video is in But right now you are reducing it, do all these things We will do the rest, this is a recording It has a remote and this is a solo track If it happens then it is quite a thing Also here are the tools, the selection tool it happens that this is the middle tool, not him Then there’s the Apple ID tool. This also comes less than delete and triple but I don’t even do this to him who I am you just do it and inside it There is a tool called rate stress tool which It is very rare that’s why you get this footage Friends are making reservations [music] which you used I change it, its colour has changed to red You can change any color here Come on effects panel, I was telling you this This is a facts panel, here you will find whatever You will create its effect there The property will be shown as I have mentioned the fact I created a rectangular shape along with this I changed the color and also here If it is like a stroke then I can add a stroke And the stroke i.e. border should be on border side I will go for this and can increase its size also I can reduce it and at the same time I can write it down here we can also see shadows you can see shadow black If it had happened, it would not have been visible in it now has black background so a little bit of it You can see that they maintain a lot of distance A little bit too much happened with this one One border, one meaning This effect is created It happens Shadow and with it comes smoothness, your shadow How much smooth do you want how much shirt do you want these effects grows the more it is a shadow Flowers will come but don’t do it too much Then definitely if your color is more black if you do it then you will not be able to sleep at all so this If you need to keep balance then you can send a shadowfax Etc., we will discuss these things in detail later. We will do it but for now leave it here if you let it stay Overall you must have understood the thing in saree So that from here also we can start with some overview of the first All the options above are available here Files are created from here as much as you want You can do anything you want from here You can open the project can you can from can you can from can all the which Normal product contains your software if you have used photoshop before have you done any of your software to him Whatever I have done, all these things are the same Friends, you can play from here and so can the rest Everything is so special to discuss There is not just one temple, it has its own space It happens that yours is one but our space It is called which you can do completely this interface You will see what level and type of person you are. if it happens then further if I come here to assembly If I do it on a level then you can see it completely A change comes in these ways if you do your duty And some templates etc. have been removed, it’s fine Will you do it? Some tempo or the other has disappeared some panel or some window then you How will you ever fix the rain then let’s go If it goes then simply what you have to do is whenever Have you had any such scene or don’t understand it You might be wondering where my templates will go Where will my panels go It was an interface thing that we did here It’s done now let’s go a little bit on our own on making the video I want to port the sound like this So gas let’s go edit our sample Yesterday I posed for the part I was but now I will start again from here If I do that then I will move on to editing the sample. yes let’s start with a little teaser type thing what do we make and the time for editing it Maybe I can tell you something better Let’s begin, first I will import the video I will tell you how to import it If you want to do anything else then come to my place If the folder is open then just click here I will drop the dragon from here in 3 years I’ll pick up the video Now there are two or three ways here. To import, first of all the easiest one is You make me feel easy that I can tell her I do it, which seems like a lot, that is this Just drag and drop it in the folder This method can make any music into a video it happened or the picture happened, anything just happened Dragon Drop is the other option They will come here you can go to media browser So you can port directly from here Third option is to go to any of your folders. The import medium comes in these files If you come from here then just like you come to the media If you connect, this will open your folder In the latest version which is from here You will come to the pay boat option and before that From here all your drives will be added and By coming there you can also add the story in your folder You can also import it from here then it is the easiest The method is simply dragon drop so you can do it can you So let’s go, we’ve got some stock If you have imported your video then you can click here But one thing is that experts have edited it a lot also and whatever editing you are learning then we We make the mistake of treating any client When working on any project for what happens is organizing Organizing part mostly editor I do it, you can see that at this time how much maths am I doing then whenever you If you are editing then there are many files If there are videos, search for them If you have a lot of videos and you want to edit them If you need any file in between then now you can If you go searching for this in the miss then you will This part would take a lot of time is this the thing which you see in white You have to do the smallest project first are you doing make chotu avoid this because this The one which is going to take a lot of your time is This thing is to always organize it and What needs to be done to organize yes simply you have created a folder And keep everything separate in each folder The video has to be kept in a folder Separate folder Separate folder for audios separate folder for pics and so on First of all, create a different folder for everything what can you do If you are working for a client then first of all Mention the client’s name here X I will give you this and you are going to proceed further with the files. Well, the client’s name is important, please assume If your PC has less storage then you can Create multiple projects in a project You can do this by creating multiple sequences Earn multiple coins on one project If you can, then sometimes it occurs to you that a line if there are multiple videos then for that You will not do different projects Nor can you do multiple projects in one project You can create sequences easily and So you can create a folder in it Brother of different, this one from the first video There is a folder in which its files are different This is the folder of the video like this and if you can do this and then after that this You will be projected when you share someone’s So that also becomes quite easy for you. So that is why it is very important do not skip this part so now like I have created my folder here now. I will create another folder inside it. and what should I name it stock I have given the name of the stock here, now as many There are also stock videos, enjoy them by selecting them I will subscribe to them and drop it in I will make it simple, now you see how much This clean and organized thing is happening The setup is just simple I need your If you want to import any file then click on the folder I will do it and just go to another folder And once these shows are over then I won’t do this to anyone, Dada It will be a waste of time to select my file I am not able to find much more I had already created it, so you you can see here I made a video etc Videos have been made a separate area for songs I have created a separate area, so now I am leaving I am late tagging your timeline video So it’s gone I drop it and You can see me when I am together with a saree If I top the dragon then you can see all Your files are here The video doesn’t fit very well Doesn’t fit into the screen with much room If this is the case then how to fix it now What do you have to do for this, simply choose any one Select the clip or combine multiple into one can you do it with me simply i will first choose one I will show you how to do it, you have to come in a clip Right click and click on A here Simply scale you were the frame size or your The resolution of your screen and the frame size will fit in the size of second now this remains If there are three of us, please I will drug us together and I will select it Now I will import my song from here [music] it is set exactly like if my There is talk of resolution of the timeline at this time If you do this, you will remember that we created 1080p So now this clip is also 1080p So I will show this to you as well, even now Someone needs to check the resolution of the clip How much is it? Then you simply right click have to come into properties and you have Its resolution will be shown here FC so you can see whenever she was going out of our screen and 15b its file size if it has been done then we will do it and Song [music] ok so this is corporate music type The song which is Formative video occurs in it also happens auto But I will teach you the manual Which is the manual way that I can use if i do it manually then i will do the same I will teach you that you should also know that because Auto then AI means everyone can do it in the butt Whatever happens, you should come up with it yourself tomorrow Someone gave you something hard and someone I found a video of this campus and there was singing in it If you want to be very accurate then you can do that pow because it is in i or auto generated it is not always accurate so that is why you keep this thing in mind too Any song that has a beat can be heard is that way you will come separately na you will see If you can I will keep playing with us then you You will see where I will spend it [music] a little is getting picked up So now what to do to do it accurately The first thing you have to do is wait for it to arrive So, I will tell you that you can mark it Now there are two types of marking I will do that on your timeline first I will show you Let me tell you the reason for that first When you mark this on the timeline look here, these are your marks It’s okay, I’ll go further here as well You have got your marks and I will move ahead I have B. They say that we have to learn marking here You will mark your bead but actually The scene is when you mark here If you do it then it is your own timeline That is a timeline mark, not a video You can do anything to him neither on money nor on audio Mark in the video, your duty will remain here Come on, let’s move the song now so what will happen to your mark You will have the spice to create you will do it on timeline then you have story song a If it goes then you need to save it from this What is it simply whenever you are doing whatever you always have marking on the song Okay, this is how it has to be done wherever the beat is yes you have to select any song It is not necessary to save the file in any way Are you marking someone on the video You Marks I will stay there and you will get to know easily where will it go what is the beat in it now Are you getting so much interest in this or not friend So you will understand but there are some premises It also has a lot of bits in it So it’s very difficult to highlight even in So that is why marking is important Always do more marking Because he gives you relief in a way I know it’s a relief where our beats have gone now You can do this on the floor even without marketing. You can, but there is some campus song in it Did you enjoy even one night here friend? You said friend here if from here we You just have to start the video, click next You forgot about the time you opened that project Elephant that too if you are talking about it then save time for which you must make it mandatory to kill So our marking part is over. I’ve come a little bit, now let’s move ahead a little bit This is what we are saying to all the photos [music] could put So we will not go into this part right now, which one? Where to position the clip now I am not a part of that, learn this after a month How is it done from the middle and where to add it if it happens then because right now we have the clip it is not relevant, something is different, something is different If we have a collection then we will try to make a massage now if it does then first of all from here our Our claim has started 60% right here Clip has been changed To change the clip What to do, simply press C Is This will give you the result by clicking on the shortcut key I told you but if you don’t get it If left then simply this one has to come here There is a tool and there is a result If you don’t know then listen to someone, simply come here Have a little fear on this and you will see Selection tools have its name next to it I know the shortcut as well, it is written simply You have to press C and where the beat is You have to select it there to split After that you have to select them again The selection tool will move to this part delete it This part will be deleted by doing this You have to select, simply go back here have to give If you are not able to understand this way sir time Taking happens first, I would have done the same If I knew about the shortcut then I would find the shortcut If I don’t do it then when you delete it you will what to do Simply do it here like this, this will look better You have to select this layer Yours If it is set then you won’t need to So the first beat is synced here, see take a look you can see [music] result I will tell you about the shortcuts. It happens the most, you will say this If you are repeatedly telling shortcuts then shortcuts that you should always remember, remember from the beginning Because this is what will save you the most time If it happens then you can do it manually also You can do it, it is not necessary as I told you This method is explained by deleting it simply here But you have to select and what is in between and oil If you want to give Dhaba then this is also a way You have learnt it, now I can learn its advanced level also. Shikha, I give you one more second of mine like this you can have a child and delete this as well can you For this you have to select something which you have to delete with and The gap between them will also be deleted will be deleted and the next clip will be He attacks you with this clip of yours in front of you It will happen because this method is also a shortcut which you will have to learn in the end Learn this, it will cost you a lot in the video So now you can speed up your timeline with this You can see a small clip of it Our beat has gone back and forth, it’s here But we have the clip here to do it What will Just Tree do for you? Now look, this clip is also our cone [music] it has been done which needs to be deleted swift plus oil delete Look, there is a string along with it [music] I am also lying down with you Delete [music] Delete [music] has to do It has become useless, we will use it again like I would pick up this one I select it and its next step is I am part late and Looks like not this one Let’s celebrate, after that this one The clip is going well Selected the back part [music] like this If it is already done then think about taking it further Or I can tell you right here on my PC What else can we do in this? Whatever we have was part of the basics That has been done almost as much as I have I have done the basics of it We used coloring movement and reset our emotions etc. next time etc. almost do everything I did it and as much as I could Now let’s move forward and if something like this I think I might have gone to jail, Inshallah Give your future in next video I will edit So let me go now and tell you a little bit Next where are we headed and what are we If you are going to create then first of all We are a part of this basics The first part that comes to us will come later Just a video of a course video again mains I have a line that I want to make a course for so he told me that I need a course Make a video and give it a like presentation style I will edit it a little bit Almost all the things are basic Like, tax etc. will have to be added and Like, those ads are the highlight points have to do some more presentation We will create the background tag in the style so we’ll do that second one along with this you If we move forward then there will be a second part after this The course will be the one after the video Your favorite dish is the most The demand is that of editing part from real In this I will teach from basic to advanced level How can you buy normal and good quality You can make it and as many as you want What are the customization options? Whatever number of likes there are in regions etc. No matter how many different types of They are all packed in it, Insha Allah After that we will edit the youtube video will learn to do So the trending video is of Alex who His video is heavily edited, Inshallah I will do a break down and I will tell you how from where and what is the fact that it happened to him and Where and how has it been edited So if someone slept in my room Something happened while telling me nothing happened to me Whether it has been explained or I have not because its my first time doing quotes on and There won’t be that much oil but the steel is quite big which has happened when I recorded ok so let’s do a little breakdown of the style to take a couple of videos so that whatever if I I immediately felt like I had a part in it upon seeing him You should be able to tell it in the background at this time I will give it to you and then we will see the rest my friend How to create your portfolio And yours so that the client gets impressed Later on we will talk a bit about social media towards and personal branding and in that so i am over you mean a little guide I will do it because maybe you have read personal I want to start my banking account How to create contact How to create it, what does it mean Sending messages to clients And this is how like these boundaries have come will tell you everything I don’t want you to give me templates like this I will give you this because I myself never create templates. I will tell you what is practical There are tips that you can use to learn as you You will get it and you will also get benefit It is not necessary that it will be a long term process You will get it immediately just because you applied I didn’t get the client, I didn’t get everything I am telling you, I have tried it myself and This is a long term thing that I am doing only then She likes it which I believe that you do anything with consistency Only then you start getting results inshallah you got a lot of likes She will go to the party also, I have taken her there towards the release part So let’s move on to the next part and A course edits videos and for this We are together and the future is yours So after the teaser, now we are going to edit so after teacher we’re going to edit there is a video of my client who I am editing a course video type so we will look at editing it now I was getting married, so I thought I would give her a course too I will make a part of it so that you guys know What type of different video will you go into? If you edit then so after the teacher so after the teacher we will add going to the course videos of my clients This is a course video, I want to make it a course So we will edit this course video now And in which I will tell you a little about This is how the course video is edited and your How will I get married, you see her keep learning the process as well as its meaning So what am I going to do walking as our lovers then this is a I can edit course type videos like this I am here, the background is I was provided to my client And along with this I like her I want to put some text, I want to put some infographic and I have to put some stock videos basically He has a course contact presentation type to make of Those in the back, I want to clarify a few things here. I will do the background what kind of a circle thing is this So let me tell you this first of all This footage, if I put it here open it up as you can see because there’s a In a proper way You can see it here how i did it in this circle I will tell you that, you can see it here can you First of all, whatever is yours, you should directly focus on this You can apply marks masking pack from here You can pack your money in another way Here is where you can see the circle effect she has to circle you will go here simply go own in the effects panel and simply come here You have to search the circle and just click on it Drop the dragon in the settings Let me tell you here that in the settings you Come here and let it stay as it is Is And adjust some of its settings as per your requirement You have to set it, you can see it here I’m doing too much so here’s one out if the screen is going off then because of which We need to adjust this so I will let me set it back and from here this naan If it is on your screen then you can simply stencil it. If you want to pay on Alpha then you can do it here A more accurate circle is drawn When you go to do masking then you have to take care of yourself I have to adjust but here We can easily draw circles by applying circle effects You can create effects and after that the strokes that I’m bringing here you can see the stroke or for this you Have to search here Not confirmed which Premium Pro Is it the latest version or an older version too yes but you should check it, it is the old version So now I added this here simply So I have kept the settings here, you can also You can see it here first Let me move on to something else, see the effect If it is getting bad then do this first If you do it then you will become a stroke victim yourself and along with this there is one more thing here By doing this, select any page on its report. It may have happened that you came from here and paid on this stock You have to select it, after that you can do it from here You can also change its tolerance settings ho tolerance settings and also here you You can increase or decrease its width According to me, I have put here what I think is right I felt it was kept in it and here Come and apply any color according to your stroke If I set it to white then it will be white It will simply go for its branding The line’s branding is purple along with its Accordingly, I have selected purple color here. I have done it and I am branding it Now here is our third fact which I Drop shadow has been applied in it, if you If you need it then you can apply it. If you have any You are doing video steps or else you can leave it you can also but this fact is good this top it makes the video quite good This changes the look of the video translation you can see I’ll show you ok, I have kept it in the settings Normally you can adjust it according to your needs because it makes a difference on the video And same settings on different styles etc. but you yourself did not tell him so much Adjust the software and reduce it If you do it, it will give a slightly dark look If you increase its softness then it becomes a little bloody type of look will come which looks good then Now let’s move on to editing it a bit Look, I am late, what should I do here? I am just who talks about these things You are welcoming me like this, you are my real three step let me add the steps of what i do first I should put all the text here which I The highlighted text is the one I added first I will take it, tell me the name of the course There is a heading in one of them, I have written it here. and at the same time it said model three so its with me I will not attack every tax in this because I am not making up all the titles where I just in her capsules and heading you I am adding highlights I’ll keep a little mike as my own and just like this I will show you the process I will reduce the speed of this video and also You can forward it, I will do it too but I will try it at normal speed. so that you can see my process which is fine Is now over here Photos so you can list it You need to add it to your list And when it is simple text, you can call it simple tax you can write through it like it is written here and if there is any code then it is a little bit in italic font and you can put it here as well can you And if there is a court, you can file this case here Set it up like this in the shop towards the court If you can apply it in this way then you can If you edit this course video then I will join you same type list here tell me the difference then i will give him a I will write it in list type so you can see it yes how am I writing He said posting selfie I will write about posting selfies what is this like what do you do like Any of you can do any content creation What things do you do, tell it posting selfies cute photos and different I am telling you the thing but if it is step by step I told you like it is a product activity You understood it in a second Good what is the reason for changing it, if here But this thing is telling me that posting is selfish These cute photos are telling different things there are no step by steps here there is no point voice there is no numbering voice If not, then you have to look at it like this Where is it telling these steps and where Here the client can buy some different items I am telling you so that’s why I wrote here numbered it so that what is No one is telling me step by step Please Answer you can see important point so here I type this A paragraph in the tax of in and where it is mentioning any items Some list item is telling me I am going to give it a I am adding it in elastic format where But my fonts have also changed, you can see it And both the fonts are also changed and Style of the Forces [music] I will tell you that whenever you ever see a video If you are editing then never use too many fonts in it also he should not do that reverse video and spoil it It makes us feel good butt sex video Degrades the overall video quality And most fonts can be used to make videos and If it gets bad, try one or two three points max him do his There is not much focus on the phones in the video which Numbers positive being getting a lot of hello salam alaikum how is the gas So now let’s move on to the next part On the side that are the rules of rules are dating is part of and in this I will tell you And how about likes and styles of music There is a trending style going on in it You can edit it and like it in some other way All titles can be used for effects captions and emojis are icons and what are those things like sound effects etc If we do ads this way then we can do everything If you do, then first of all you can see by the name of the part and also I have written here I have also made a sequence which I I told you how I make new I will give you your project sequence from here I came and selected the vertical 19, 20 and The 1080p one has now been created here And I also wrote one of my lines here So now we will edit it again I will do it and I will tell you how like it etc like how the butter set how to do it and how to do it let’s go Now let’s first do organizing You can create any project Are you editing any client photo? Organizing is the least among all wheel i made a rail folder here Took this along with another folder inside I will make it which will be in the name of Ra Video so that all these things of ours are one In sequence stay an organized which they mine There is me in the footage in Ra which is there in Ra I will put my videos in the folder of the client has this along with this there is a And I will play the game cricket, the sequence name in it I will give you X’s name or my full name So that all our work is in one organizer Now along with this if we have to see the stock here If he needs to do some video etc then we If you create another folder accordingly then stock for now and one more we are here Let’s create sound effects In all the likes, there is something that we Once you have created it, now simply like this See how much you want another one whom in every part we will keep every single thing This will benefit you as well in right no I am singing to you There is no butt And if tomorrow you have to give a project to someone If you give me the file, it will be your client on time. You will also get a good impression that friend, I am alive He is doing some work with the fellow Professionals work less in organizing if it reduces in this way then simply this is you It is beneficial for you and me If there is a product then it is called the level as well Sorry I am not able to go on a date so let’s move on So let’s port your simplification to Is So if you have set the distance settings If it comes or if you support it then now You can see my photo is not set a little bit remains JO Recordings How strange it can be from your mobile So let’s go and size it up to our size. Are Our most important work is now on screen What happens is the captions first of all If you create a caption then in captions I will come here in simple text and come to the text and here the frequency Write the entire script. Now what is the scene in this crack version It is not available then hopefully if you crack version do it if you are doing it then your If it will be difficult for you then generate condition file you’ll have to do it separately or else you To set the D pattern manually you will need to read the that it is very long so this is extra short it happens which you will have to do then you will see You can like and become my subscriber so now let’s do captions for it If you want to create captions in manual way If you are going then simply add your text and first of all we would have done this in the game then I will teach you the manual also How does he do it friends, let’s go First of all you can see my Puri Puri Here a condition has been created that whatever The whole sequence and the whole video are being liked The tapes with captions have now been transferred But the ones with simple and captioned pictures will come then After that click on Create Captions. do And you have to keep the subtitles on default You have to go in the captions and after coming everything will be done I want to keep the time format as is for now We haven’t created any style, remember? I will tell you at the beginning of the course In the basic part we talked about here But if we even create a style I haven’t created any styles yet. yes but I will show you how to do it the rest is the maximum length if you If you are getting more taxes then please comment like that You should keep it to 20 or 15 only because more The length of the tax should not be the characters It seems that we can keep a minimum duration yes right no it is a single relief and check if you do then have been created Then you can see how small they are here. If it is going through then we will resize them first First we will fit it on the screen where If you want to keep it then first of all any thing that you have Is the subtitles layer suitable for any one of you? You have to select it and express your sensual feelings In the graphics panel, go to here, like If you come here and go to edit then You can see its properties here It has swelled up but a little here Its properties will change because when you If you edit subtitles then If the properties change then we will do it now What We will not do it all one by one Simply what will you do like everybody together Alan First of all we will gather everyone together in the hall did and will try No, first of all everyone gets drugged and hall by doing this we will select everybody After that you can see the text here If you have 11 properties then simply Here we will first do it online Now we will make the text online in the center You can see there are a lot of them here in the center If it is exactly in the center then here Tax is not working well here at all You can see your moment resizing If it is there then you can move it from here If you can move it up and down from here then it is the most First we will increase the font size of this text Is 146 Change the fonts here first take good fonts which one do you want to use There are two trending fonts One set is black which is Lex’s In the range he has this one and square whatever it is we will cap it tomorrow then you You will know how this happens to him there is another one in the Lex series which The rest of the people do that, another one is this bold pal because i do it personally and Mostly brother, I use this font that I like him more than that but he gonna If you do that then we will see it in this real If you do black then you did this Now we have seen clearly that we we have to keep track size and what is it If we want to like then now we understand If our tax is being treated correctly then we will do it will move it a little more downwards me too right now me too A little bit more and a little bit more and that much will come then you will stroke and also its size is bigger Also in Around Around Here the shadow of a person is 14. This type of set is a bit too much it happens you can see and a little bit of color in that it is perfect And It is so perfect [music] maybe a perfect one If so, we go And let’s see what kind of and when you click on this you will see your text On| You have to select single type for this Look at this property which has been resized so much Click to hall it will be set and if it is not set then more if there is no word then if you are saying A then simply say A Second line to create second layer my tax in it’s set up I’m done with that if Whatever dots etc. are coming, delete them. I have to give, this doesn’t happen This much hey type you time it is going well in one line so we have to Time has to be adjusted accordingly now You were giving me a better time down there So I put it down and gave it to him as well You can set it accordingly As many likes as the audience can get you these marks You can do it easily directly from here we will do it Presentation so we are simply here Clicked we are set The whole thing has happened how are you It is written in the ward so we are six yes brother we don’t need it in words If you want your like numbers in this then we We will make it three, I will also make hashtag three If you give it to me, it will look better then this part Done If the customized one is less then we You can do it here also but we can customize it Honey, we will select everyone first We will take it because right now we are doing transactions on it. If you apply something like that then it won’t work properly if it happens but you don’t do it properly then there is no point in doing it does and here you have given a like to the title There is an option, you have to come in it, you have to come below it you can see it here Now what will the graphic do that no matter how many Your capsules are a graphic form in which you can see the adjustable form In Whatever you can address, normal tax If you act then type it in the form will bring subtitles here We have the same normal tax, that is the type have been added because this is too much Good option has been added in the flavour too It can help you out a lot if it does Now we have increased the screen size a little bit. Let’s take it and check the likes how much do we need so that it is perfect Now we go ahead and from here you can You can also delete the subtitles track. so you can get more space now If we move towards customization then first of all What happens to every text in Alex’s the color is changing brother is it easy The difficulty is not less, first of all you Select the text layer where The word is A, it needs to be highlighted Simply what you have to do For this I directly tell the people behind us who are our It will be deleted, so what do we do now? Yellow colour is first getting or what is backpacking and what to do with it We will select this from the middle, okay? And on this one, in this part, we What to do We will select yellow colour I will do it only when I get it done here now I am editing it in font size you can see it’s flooded, do some more ok i am done with dating now Now here is what you need to do and his by separating will make central line [music] You can see there are quite a few taxi lines here. It has become more, meaning the size has increased these two words are coming below so we can reduce it to we will do it as per its size so this is ours this is perfect now let’s see what kind it is going The style has become absolutely Alex type So now this part is like coloring This is going to give you a makeover and highlights If you have to do it manually then this is the most is the time taking part because if you Long If you are doing it then first of all it is a part Here comes this customizable eye tool it can’t depend on your mind It depends on the creativity Where do you need to increase the color and where do you need to decrease it? So all these things which have come to me just now It is not possible but we can know something about the future no, some other tools have been added which Let’s do that with Singh like that at night And in lion style but he does it with everyone Like their interview which is done on text do not do And it is on iPhone which is probably like this It creates but it is not confirmed but instead of this type of If you have to do it then you have to do it now Hope is understood So now let’s take another one where he is part three a is here We will like it and cut it like three So our three will be bigger Any style like this can be applied randomly on it You can create any style you want All of you like those who practice this You have to play with the dream effects You just make it whatever you think is better Alex’s this is what happens to him, this is what If the leg effect is looking good then just make it I made grinding a style I hope you guys like the style once it is made what must have happened then how to text like defect colours it would feel much better [music] pay attention to your party language it’s a word so why don’t we use it as one line I’ll take what it is so that there is a big one which is in a line Finance Presentation exactly where to do it came out And before that if you do it then the quality I will pack it with So these are the whole things and I told you in the last I have to see that friend you are getting proper If there is a listing or not then you have to Have to keep the like in mind And you can also see the gap according to your convenience but I am not feeling well You used the words on both [music] I’ll have to sing if I want to I am liking this too, first white and It is a combo of yellow so I will remove it I will take and I’ll make it white can see So in this way you can spend your time as per your wish You may like it, create it better if I can just it’s gone You have to do that manually as well I will show you, it’s three years now for all three If I add it, you can see how does around d stage first of all I will split all three first But this one is more rebellious, we are doing the same I will do it, I will tell you another way which you might have seen through the frames Someone may have told you before, but I I will tell you the same thing, that also seems a little easy But the more reliable method is It is going to be very useful because you can set more features in it. if you want to do framing then you can You can add only one transaction in it But in this you are different You can do this effect too will add the most Around D House create [music] you can see it now I will select what you want us to do Time, what color should you apply on time We have to set it, we will add yellow color only I make time more blue than something blue clausally it gets late blue color red Now we will do it but from the key frame If they start then how do they do it the most First, you should select this Here you will see your text property It is also there in the panel and you will click on it So you can see it here The framing is given And simply your key frame has been created. The key frame has been created here You have to come and what color do you want to add? Pay Whatever suits you will create And you will come to the second face and only on this will add the same color We will give back the properties that were his and in the same way Then we will come to the next step where the second word Say so now you can see that when I liked If we put ads on everything then what will be our effect In this way, one has been created without selecting it the cup is through her You can create it in this way also but You know what spice will come on this, you like it If I enter some transaction here I import it as late as I suppose I am at my doorstep, there are many messages but I will import only fault, ok now default But we are going so that we can tell about that place I will also tell you how to add transitions Is It has to be put on what would that mean [music] Eating means that you are different When your layers are created then friend three If you become like that then you will be different from the three You can add effects if you want but Here if you see any If you want to apply the effect then it will be applied on the whole Because simple is one layer and not one layer So in that I like any piece set I think the example is black and white I think so So you can see it’s all black and White will go, he will not go on one but here If

    that’s what I think you can see Yes, it was applied on this, but the example was applied on this If it won’t affect anyone else then it’s only me This was the meaning of eating, that is my point to you You must have understood this whenever anyone likes it Whenever you want to create an effect, on the step If you are putting text then split more Reliable rahat hai as compare to you like single on the layer because that layer suppose that if you this If you do it in three layers then one will also get deleted If there is a caste then you can create it for free Immediately turn your back to the previous one and do this I will demonstrate this song simply I have deleted it and backed it up from here split it back here And whatever my text was I put it here Just added pay and got the same pack which I was buying earlier I had installed this one, I reset it properties for this I reset the Have put can see It did not take much time but if this one If it gets deleted then you can send me any There is no clip to come back to For example, I accidentally deleted this. I went and opened the project next time. I am staying here and I have Puri here there is no layer on the complete rare if you Did my duty from the beginning and became completely real If yours is missing then your head process will be lost If it is possible then this is also a way also like is an effective one time and what of could do it friend there’s an advantage in a way it means Spreading your saree to layer together Your saree will not have a clip, it will be the same okay so i hope you get me to my point now let’s move forward So I took a little pause because We were feeling that we couldn’t do sex play in the same way what are you doing, I was saying like for quite some time If ours gets a little fresh let’s go let’s continue this it’s good What I was telling you last time is this two One way to use a triangle is to like a frame question and there is a split one then in Both methods have some advantages and disadvantages So discuss both the methods as well. We had taken some transactions that was like and the other one like was that together If it gets deleted then if this one means If you want in split one then together All your files will not be deleted and if one by one Even if you get deleted, you will have The rest of the clips are left which you can save. You can do this to create your old one but if you mean one on one layer Do you apply highlights Singh, do you do color You are the color then what is the spice that if It is your duty to delete the file It would be very difficult to get it back that’s why you can do it both ways where You will feel that it is better, then its good I will tell you another benefit of this Wali ka ki flame Wali ka this late suppos you have like synced your saree now you Are you in the mood to like it or not friend, I should see this one crying What do we do in Alex’s video You must have seen the video when people cry then here further you can do it simply by crying easily Vector graphic of you will come here and cry When you come further in the options If you make her cry then text her like this You will start crying easily, as you sink in your It will remain the same now watch me play I give you can see the same thing if you cry yes you started crying all at once You don’t need to like and subscribe If you like butt style then click on this one I have to do it because it was a split part If you cry over a clip in that Like I did it while crying so what’s the spice will come that only this layer which is You will cry in the next clip, you will see it again If you will have to cry then in a way this is There are some advantages and disadvantages of everything Meaning there are some advantages and disadvantages So you have to see this according to your choice If you want to do it then you can just see this ISP is not installed on that part now I need this effect to apply on it You have to copy it from here, paste it here If I have to do it then it will take a long time, which means my time will go and like in it once done and That saree got applied on everyone by itself because here pe frame to butt style If I do it from here then the masala he might come here if he’s mine extra g goes but right no won’t happen You can also do it from here Is there enough crying in the video of Relax? If it happens then you got an idea about it too. how to cry so let’s go now let’s do a little more further or I am thinking I am learning the basics of what race is I have understood you till here no why not grandfather grow taller codes you think in the scenery that Like full forward I participated in the release of Masala in Al I am recording it last because I thought I’d go into this a little bit in detail I will tell you, that is why I think that we You could have made it just for 15 seconds These are the concepts which help you to understand it then after that we will go to the expressway Extras like Editing is a good thing, they should do it How to apply that thing etc. lots of it how to do face Let’s complete it and then let’s go ok I feel here that brother here is someone There’s nothing special so I’ll stay here Give but here if One thing is that this like is a little less First of all I will do a split here So that brother I have a lot of fun in every clip There is no need to change here first But I will select it, you can see how I have deleted it, I will do it here Larger ad doing Copper Lion on big Did I will apply the same color on this, I am doing it Was I need a little bigger one so now you can see it so because there’s more space below I have an iPad size move it Cup Your Hand properly you must remember that the property If it is there then remove it and do the next one Add it with like because sink The story will be proper, it will also be a bit out of sync If it happens then the impact will be quite bad That’s why you need a swing, man You should be right almost all the time when Those birds keep speaking according to its audio with so that we are making a like paste because when sink is not a word and Like from top If it had been done, it would have created a lot of options So I am trying to get everything synced perfectly. Try I will do three splits first so that it is quick Our Factory How soon will I create it here? If you did a previous reset then you can do this thing first Split it as much as you want so that you can get the pack quickly Do Vyapam can you do it So this is also a true relief, now here you have What will we do first of all see if we We have to keep the size the same, first we will try they will press their selection tool We’ll take it and click it once Will you see our clip after drugging her the words are both in one line if you are having a problem then it is ok for him to go to the center we will line up, if they don’t come then we will go down By reducing the size of the clip to will reduce a little bit around itself so that Get a proper treatment done in our centre I hope you got it clear in the line You have to keep the resize to such an extent that both of your Completed with tax, he likes one line with it I should get the tax done so I’m thinking of liking this text Keep it for 20 seconds only, then for 20 seconds We have almost respect for him, that Sikh thing How Lee’s Highlights are created and In what way can we directly differentiate ourselves from others? Whatever is ours in tax, pay the tax like this can add color and together with meaning Three lines on text, one by one How can you add color and highlight? if you can then now you can go which is almost This is what happens and if you want you can add fonts etc. Change it here, you can take any account ho in case if i want to make it Alex type then This is the font in the race between Alex and Emoji Whatever happened to him happens to him, rest of you are a different type it is not necessary that you can make a release People make similar type of clothes in the same style Everybody is making it like this, you are a little Show your creativity with different fonts You can do it with your creativity There could be a lot more people these days So you can do enough Now I have a method in which I am running a style It is happening, we have done it here now How to add a little imp transition That’s you pop animation or your like zoomen zoom out or your remit tax I will tell you how to apply it First of all, here we are talking about traditions Let’s reset it as you have also done it You can download your like will also be available on the platform Story Blogs are stories that will temper you You can download many on youtube People give bags so you can download from there You can simply do any tire transition Pick up your Simply Tree Again drop now You can see it is like this from top to bottom One effect is our transition period This will happen and in another way this will also be swiped The transition has been created and in this way se pop i made here I can do it here whatever you mean pass available Is what happened scene You can put it here Please download and if you want to create your If you want to do it then I will teach you that too. I will give you a like, how to do one more we’ll drop by and see So just reset shoes on and then once When you like customize your tax I have added a different meaning to it Add transactions etc. Add colors After that just customization You can also download it from the story etc. you can do it by default also Very good, there are so many transactions here also it is not special so if you want then you can buy it separately you can download from youtube So now let’s go for it a little bit Customized if you customize the transition If you are wanting to do it, then make it yourself Simply what you want to do is a transformer I have to track the fact from here and I want to drop a transition here I will show you after my period that it is normal There is a thing about the movie which I will tell you first I have already done the basic part in part So now we will give it a little practical look let’s see it as a transition if First, you need to create a swipe transition If your text appears from bottom to top then you take a cup of water in the position and A little like has to come forward along with it Three-four or five frames are yet to come I am also together with you five times ahead You can and you can do it once also if you are three four five but together more It is better if you have easy relief then you just fold Want to do it simply and right, have your own Dhaba If you give then you will give five times But I have to go there and its position is I will draw it below, now you can see it It has been created, now we will make it a little smooth to do If you do it then first do it here If you want, you can give it to both of them together It will be easier if you give them ease of both. Factory will be created Now one more thing has been created here We can see this a little bit, shooter We will give it an angle of 360, make it 180 here Will make you do what motion is calling you this will happen you can see that the motion is good One more thing here I have seen in Transformer of the fact and what it did, your question would be that I transformed it and did these properties we get it here as well mil jati hai toh I have used transform effect what is the reason for doing that transformer We can add it here which we do normally If you can’t do it with this then to add motion you can see the approximate effect maybe there’s a little bit of motion So that makes it pretty good for us now watch the clip here’s another thing can you Means it’s straight, like a little chicken Like after effect to add it in You can do it for free if you feel light If you want to buy some chicken then you can add another one here do it and do it This is the property, do it to him Here we see the lion and the frame of this one will lower it a bit and if not then reduce this one rather this Please raise the position of the person by giving him a little like now what will happen with this little bit of love will remain The style will not look good with little movement synced quickly on tax pay so if First do yours together do it it could be much better you can see yes like a little bit back up well [music] We will give you 930 rupees so that we can reach higher Tax should not be paid, we should stay in a middle so that our If hockey like movement is created then you can use it Like this you can add this way yes we can turn it down a little bit around this much we will give if so you can see Meaning, the movements are not the same It comes straight with no bouncing effect If it is not there then you can create it can you update it a little bit If you can add some jigar then how to do it Anyway, I would recommend this you’ll get lots of them because your Time to make the transition your own will do it but steel if you like yourself If you want to make it, I will teach you a little GK What do you have to do to add your The transition has come so now a little like what will we do to add movement and We’ll take the key frame and drown it a little bit okay and then another little cup of I’ll take some frames taste and reset it back and a little sa will turn it up So this is how you can do it a little bit The movement is So in a way, a little bit got created It is happening fast so what should we do? I will give a little gap and like one hand Will delete from 20 then in the center If you do this one like this then a little bit Like you need a little to create your own Whatever you like, you will have to make efforts Here is a little bit about creating a transaction: To create Jeetli effect you can see yes, a small defect is being created somewhere So this is the thing that if you want this custom also You can create it but you will have to do it custom then it will take you a lot of time You can buy any transition pack available download it and the transition and if I did not get the transition pack, it is impossible If you call me then you will get a lot of Unlimited transactions will be available for free I can download it, you will see I I have downloaded the packs which I am trying to do I am doing 3D role impact, this is also quite good yes you can see this but there is water here Mark A goes into some transaction I don’t know about water park so I will tell you something about that I will check it and show you There is a transition so I’ll create it here. I will do it you can see how tight it is So this is the thing, it gives you a lot of time if you did you will get a lot for free So now let’s go then let’s move forward and you The transition has been created, right? you are six i want If I become a T-shirt tech then simply you Here is another transition transformer [music] so now it’s time to make this set so now we Let’s go, let’s assume that you have a lot of saree Like there’s some pop effect on all of them at the same time doing it like I’ve got a proper one here If a reset is made then it will happen on transition You can see that he will throw the proper There is a lot of fear, bigger than speed, much heavier The pocket is going a little bit higher than so I am interested in what it is like what do you say I will keep its size small one time I will keep it till then so that there is a more heavy fact Ok So I have seen it by setting it to zero, so it is quite if it feels good then I don’t think it is feeling a bit weird on zero So if you want to create transform effects If you want you can make that as well and simply do research So that the weather improves a bit then right No, I am not creating that right now Right now I have a fox in me, will I tell you? together you back if you’re putting six a How to apply it together then simply you have written here But the fact is that you are getting it right, it is good. if this is happening then what you have to do is simply To get it, right click and copy it If you want to take a copy then whatever you want Whatever attributes it has, this one Your entire clip will be copied, just one thing Remember, your clip will be copied. If you want, you can also go to the story and paste it. You can directly provide it to you which you need There is text which also gives you some soft video If you copy it in this manner then it is a copy it will go but you have copied the clip then You don’t have to present it completely, right? You have felt the effect inside it If you want to copy and paste it on others then What you have to do is simply one thing, if you This needs to be placed on a clip on a layer Simply right click and go there I have to paste attributes, is that ok Do not even press Control from Control View The whole clip gets pasted just by you Face attributes are based on reviews meaning its property is like that paste If you face the same way then your 11 will you do this here what else do you like so you can make motion here Give the effect you have created purse Do you have put the fact but with effect There is no option here right now because I didn’t do anything to him, I just Motion properties are then applied to the effect If it hasn’t happened then you have done what you have you have to add it when you do this dog ok you can see it, not on anyone else but on this It’s already done so now I have done this in a way I copied and pasted the transaction here but Now there are many tax layers, what now? do we will not pay them all at once If this much time is wasted then we will work on it together I will do a clear transition on the copy Will we all put it together to put it on our heads? Selected copy simultaneously simply and right Clicked And wherever we went we had that effect Select it no matter what the volume is That sound is whatever you Simply select the thing that you need Paste the effect that you have selected and just based it now your You can see other pop ones on Rajasthan your effect is gone Very saree you can levy it on tax you must have noticed that Whoever has seen the video of Mr. 20 Tax is being a So everyone is texting papa so there But the same thing happened to all the texts at once By selecting to tell you everything but if you are different the transition you’re going to make you have to you like each other together not different each If you need to do it separately on the clip then I hope you By now it must be clear to you people You must have come to know how colors are added Do you pay tax and how to do it manually? Like customize it now no one can do it No one came automatically on FB problem etc. your thing hasn’t arrived So it is possible in future also that I am not able to because this thing is manual I have the power right now but if for now, because If the pass has started then it is possible that I too Something of this type should be launched Then your time will be saved How do you like fonts etc.? If you have understood everything then now we will do it How about some likes, emojis etc. have to add woman and so in the next parts I I mean a lot in the first parts of YouTube It is good Shikha but tell me the set in this to do and how to add So now let’s all walk a little bit and Let’s discuss further to the tax as well as the fonts as well as If sir adds colours etc then almost done now let’s go I moved on to the next part, which is how From this we can add like emojis etc. How can you do sound effects element friends stock etc can do it ok let’s go first of all i am here Everyone thinks that the way of doing ads is copied It is pasted but the method is copy paste Doesn’t pay much for premium props I don’t know why you don’t do as much as you do Also like PC software, it works on PC no this is the wire of the cap like this If the captain is doing this then that is also right Let’s back up a little I gas with copy paste I will show you this feature now If I copy paste it here then any I am not able to understand tax properly here you can see this type of thing happening so right now at the moment If I get updated in the future then It would be nice but right now if you have the emoji set If you want to do it then an emoji is welcome which Muslims do what you are told to do You will get it on Inverto for which you will need Will have to take subscription or through someone and it will have to be taken through veto and apart from that if If you want to set emoji then you like it You can go here and find the icons Many people go here, mostly people If you download the income tax from and file it then you Download nice icons from here you can also add yours to this if I If I go to emojis, you can see it here This Modi has come, mostly the people here are the ones who do it If you are downloading it from here then Birthday spice it up this gives you each png I will have to download it in such a way that if I If I like it then I will come here I will download I will come here But there is more to it, there is no need for friends you have created a complete effect once take it and make it into a t-shirt or something you can paste it because you have done it in it also I resized it and added it simply I will also show you how to do it, like this I got my recharge done, now I am 4 years old. but even if the transition is lost then something nice I will go into my emotions like this and here transition from slightly to left to right come Now you can see this is a little bit not right if so what will I do I’ll take it all the way to the left So that It has been applied, some motion blue has been applied lets go around can you see so can you set me up like this You can add me whatever the topic may be. Like me if you are related to that then click here Speak those words according to some presentation So I am doing something finance related I am late searching You can do this one related to money can do it you can see So there is a lot more available, so what? If you have it then you can download it for free You can ask for credit If no one gives it to me then it seems like this too It is going well I can do it in future I’m on something Presentation-wise I like this one It looks much better, download it from here I will take it and simply import it So this is the part where you have to download it a little It is difficult, which means it will take a little more time It comes but other than that it is totally ok so you just got me a new mouse if mine gets spoilt this you [music] You must have understood that this is how we did the transmission here on add text you can tell me more I don’t think I’ll go into this further in detail tell me because I almost told you how how does it look you can download Finance Percentage Radha, you are getting it right according to your understanding can you address the caption also? I have taken a very wrong position at this time but style let’s put it here By romanizing it you can resize and change the position a little let’s do it so you can see So something related to the basics There is a good snake tax on tax 3 which We made it big, well remember one thing that whenever something number three comes you will be here But you can do something extra to him. so that to make it a like you can you can do that you have attention here So what type of add-on do we need on this? We will add like some attention to this type as you may have seen I can see this by searching if I go here If I write attention on this then you can see this You can add the type name here This too looks a bit foxy but You can see a little bit We will add this to it [music] It’s feeling good up there, don’t do it here And on this, the transmission that we do here I will put it right I am importing and customizing it So it doesn’t take much time to create If you can do anything then do it like this You can see this, now I also see this in Let’s try it with some more apex Because if I have the courage to add you all to my collection time will pass now and you mean one thing The point has been understood, the point has become clear Now I need some more practice So you can see a little bit of blue weather Something When you do this one for you and Whatever your transition is, it will be hidden Meaning this won’t happen on your clip but You should see that no, like play no If it were on the timeline then now we have to Let me try it in this and see how it feels K wala You can do some work yourself later it sort of happens I have a lot of pics anyway But right now I have installed the windows etc. The scene is So you just have to drug and drop it and to you is being Dada editing anyone can like it Any fact from the very beginning I don’t create so many likes these days Plugins are available, so many pieces are available, packs are available You just need to download the packs and install them It doesn’t mean he has to do something good that editing is very easy this is great No, the editing is still the same, it is of this level Just follow the editing process to do this For those heavy things which take time To do this he has to do search etc. [music] So this is how AI is working these days This will do it for us and it is not like A.I. I have come to make you better, not to There is something different to replace you It is basic as soon as it comes and you have the basic thing then You think he will replace me yes it will definitely replace you if you The basics are the same as you would need some extras Delhi does not want to learn the heavy level who is capable of giving himself some heavy skills Apply I started my statement here sorry But the date here is my transitional one. I have almost done my part Transactions have become colors, highlights have become It must have been synced and these things also happened Now that we are talking about 11th, there are more elements There are no elements in this one I was talking like this about your censor The elements are motion graphics so these you can do that too [music] Do it the way your client wants it or If you want you can do something like this to him You can also download this then I will But I will tell you the sources only. What resources? If you can do that then it is something like this I will test it from here so you can see it If you are going to create a title then you can do this type of elements can I do that I will show you you will understand something here in video already updates This thing happens, you can see this difference There are elements and this type of company This is something, you can add a lot of things You can edit stock videos You can add stock video, I told you how was the ad done and if here Any infographic or any graph type thing Add, we must have seen many in this If the graphs are added then this type of graph You can add it to your stock video shop Anything you want to download and save it To download from here you have to You will have to accept many rules for free is available you can see Look at your elements of this type a lot If yes then you and them can do this elements are called as well as these There is a stock video or you can sit this type If you do this then this is what happens If ours is related to finance then we Related to finance Tax is moving a little slow here these days There are both solutions [music] This is the second one with paper background A goes to This type of elements will start appearing on your screen whatever is there is moving from here to there So this is something that has to be created this is it, it is whatever you like, it is custom have to read all the manuals It depends on the creativity in this Like I can’t tell you this basic thing friend Learn this, I will give you a creative mind If there is grounding then you can use grounding Understand some effects, you can create them and fit them If this happens then you will get any link related to the feed if you can apply something on these things Your creativity tells him that you are here but how to like a sentence If you can present it visually then this saree which is story telling All of that is called creativity and this You did not like all these things immediately, you liked them vitamins have to be learned and the more You will see that the more you try to learn If you earn that much then it is a fact There is an overlay and you can easily see many people people must be watching him do it because the world Apart from that you can download the level Transmissions also come so lively here What is Simply Branding Modes If it would have happened then I probably wouldn’t have done the land modes I made this mistake in my beginning I am done, so I will do it here What is a brand most basically right now This is our normal footage, now you can see it How did we get the normal footage? If you want to get likes on your video then do that First of all you can see the money ones If you type, you can see it here Plain modes are enough for the black mode one If you have the option then go to normal option Clip means whatever type of clip there will be it has not happened here and along with that All these things are a bit dark They make your video yours wala You are putting facts, what do you say? That is, what is the meaning of brand to the one who Land with as many clubs as the bottom one can Don’t go, this is how you would become a blade If we come a little towards the light then you You can see that when the light is up then If I explain it to you easily, then whatever Participates out of fear There is a lighter part can add You can download it like this How do we add this it is black right now it is appearing on the screen so here we have I am not here Shikha how is this I can brand Philips then Blanket board is what it is together There is a little important thing that I Maybe I forgot to do the basics, so now We do it here basically You must have understood what the clip is Let’s plant it right so you can see it yes this is your normal clap and here it is If bedding mode is normal then this is your clip Normally it is like this, like black screen There is a light attached from above behind it and with this Will be done There are any number of circle colours This clip is kind of a black The darker the clip on the screen, the better There will be parts, no matter how dark the parts are Thereafter the mosque will become dark and I’m afraid I’ll highlight them more The winner will show whatever the parts are The category is Dal Chawal Multiply Color One If Fox is with him, the dark part in and out of these as many white parts as All those are there in your clip and you can remove them It happens but if the one below does the same If you come to the area then all the likes here all that is your clip lighter parts and whatever fear Parts are If you make it transparent then this way you Look at the lightning I added A little effect further you can do it through transactions You get to play and along with that will come on the screen just yours Whatever white color is becoming visible That’s the only transition that will come As much as I have made this one different, It is a different thing This area is as many dark parts as possible Your clips darken them in the mosque and only the dark part is visible are your white parts transparent goes and in the same way the one below goes down There is a part in which all the light is present Whatever bright parts there are, only those It is visible and all the dark parts It happens, it becomes transparent, that’s it The game has two sections which you can Mostly you do it along with this It mixes both the things in it Flirting happens on both white and dark If there is a like along with it then it is quite different Even if there were facts, we definitely would not be there Everything depends on him in editing and the rest this and that etc He does not fall in the dark in category He experiences it a little bit, but this screen The effect becomes almost as inevitable as we are This type of transition also occurs welcome screen factory she is getting Is So this is how I am late reporting here now A message comes on overlay, you can see it like this Now if you want to import from this, you can do it like this You can leave it but the way I do it I want to tell you that if you want you can even cry over it you can do it this way so that your The resolution should not be a bit bad And Uncle World is like that only But it doesn’t look that special this way because I want something a little straight So we will import this and you can import this in it as well shall we do the same thing in this as well? Branding and change will make you brand You must have understood a little that you like your The blade is to put two clips together This is called becoming a blade You can see target highlights and The white parts are not very visible will come on the screen it came on the screen Now you will see as I look at the screen But only our white part comes Only he is visible and as black as his The part is Because these are not facts, basically this We have an overlay in which the waste is reducing. You might think that in editing it will look like this Is it difficult to come to the facts? People also create such things after a long time no it does not create but most of the d Take over to look at time to time if it does then you can see it is playing I am from here Finance More likes looks a bit more but Normal The footage is there and there isn’t much light And if I give it then a little bit of one color to all of them The one who is not going so fast will go Means Difference does it to him You must have seen this as well, a bit filmy the one who passes by nothing much happens and scratches you can see like this will come [music] What all things did we learn It affects the tax pay Transition appears and colors are added alexa is there and how do you put me and what do they call it wardless etc. how If we do that then it is almost ours It’s clear now, zoom a bit let’s see out The scale is whatever the overall scale of your clip is has been taken on a scale neither one settles There is a hockey like movement in this region Does And happens instantly five woman if I could do this a little While walking I am suddenly out of the screen If one is slow then both are created here by It happens and then suddenly there is a slight pimples A fast room out with movement like that It’s suddenly light and it feels fast friend Zoom: This is a fast zoom and there is a loss Actually this is a slow game Create women like this one if you are my ad will you do the translation right here zoom out from A little bit of butt style looks good in this also if you do this one also do it to both Mixing up the dog would be even better Now it will zoom, now I have given it more movement Because more mosque engagement will keep happening so this full video if you watch this one which I De dog na your video too much Engaging will increase your retention of the audience He is a big fox and he will keep meaning to it I mean it is your video right because this is a joke One like zoom is relief and one becomes motion Because of which your audience was engaged She keeps thinking that some fact will come from you what will happen next will happen next So try this type of movement today. you can see This is a very good effect, you can make it you can and like it immediately, this love You can you do it One such also happens This way you feel right and you can do one more thing You can highlight whatever you feel like Now zoom in on it with the tax of zoom out completely If you do that then you will get flowers like this also it would have been understood If so, let’s go it deletes it At once If you want to run Fox, you can pay any tax from it. If you want you can do this to him sorry like And the thing is it’s taking some time down here need one The move also happens simultaneously downwards, you can see can I lower it a little bit now It will look like this immediately I put it in its mouth But Fox has to remove the caste word If he was going to do this then he too would get this and Hajj from us and Will enclose so that download together will read to create again [music] I said it here We need this fact here [music] That and Indian, it all depends on you how are you going to edit your Do whatever you want in the way you want don’t fool too much if you are on a plane are you making a video, do you want to fox your You should listen to the client’s demands more than that listen more what he wants then thoughts n second one let’s go we move forward Let’s sleep with some sound effects and our how to pick like song then song friend Depends on one line of video If Step K is motivational then you are motivational If the music is inspiring you can do it You can do inspiring music If any channel has a video then it is of interest to him To make someone do such a song, can you like it a little more fast because if there is a fast space song then Like I have heard a little that people are more into these gas There is relief and the other one is like fast with him with the visuals also like the visuals There is editing as well, so should this be edited More likes as per the song cents is more If retention occurs then try Keep it as short as possible and if you add a song If you are waiting then download such a song [music] Volume up dr jo song hota hai [music] here at that’s right there’s no spice when if this red go to this means in your audio Your audio volume level may be too high He has to keep the balance because that’s what likes and problems are If there are chances of it happening then take care of this as well keep it If I play together then how many likes do I have? The music is hello tension you can see green and mine is inside 12 tv and so I I have turned the volume down here so I can I will make the flowers turn into fruits there and then we’ll see So you can see it is exactly like red touch because it’s just too much If you mix both of them and balance them then That’s why we don’t want it to get red test we’re gonna balance it Percentage They will make it clear further, I have made it clear It is clear in detail so now we will Let’s clear it up a bit So the main sound effects are there is a sound effect drop it Simply your A will be very most commonly used Now you can see we have a lot of it Volume I have to adjust it more Do not keep heavy around 20% this 25% is enough so always level it up There shouldn’t be much then there are many like me you another I am late to do that, like this too volume 233 I’ll put 23 here. This is the thing you I will reduce test match like this At once Paper background came on time like you The application was placed sound effects And he is very fond of the pop sound, so are you you can add thats it don’t do it otherwise quality Keeping balance means more than keeping balance If you do it over then the video will be yours If it is bad then avoid this and this is the thing to do so so that sound effects etc. You just have to take care of the volume Sound Song He wants to do copyright song for youtube So if you are going fast then long copyright song do it do it You can get lots of royalty free content on Youtube If he gets it then he has to do something But he uploads it in the name of royalty His channel like this type of slide If you don’t have any sense then always check that yes friend this is royalty free anytime Do not edit your video and Like text which is your text also I told him to keep it in standard format That you should always be careful according to social media Keeping this device is not a big tax There should not be any small thing with the pot If you want a frame of this then that Download it for practice what is this called [music] I will remind you of the name in the next part remember you are in al so it happens to him There is also a comment section going on below If there is bio etc then it is done to protect it If the taxes behind it are not kept quiet then That is why in a way you should demean him. For myself, I call it that because like Share your video on your social media for this so this is what they call social Video optimization is done in which I don’t like having too many extra loves He should have a good right to it It should have a good title like and dates it is neither the same thing nor the Like text etc all in good format This thing would have been in good quality if it came Is Do not leave the tax screen like that in that It felt like that, no friend It gives you these details which if you You may not even know if it is new, but you Lastly, you should know when it will be released If you are going on a date then take a train [music] like there is one of this type, one of this type brings a word that is made up of You can make it yourself as you like what is photoshop open it here and like You can see this, there is one of this type You have to simply open the photos and simply click on it If you want to draw it from here then like it The more space you feel is extra you can see from here if I If I draw it you will understand it Now you can see from here if I like this Check it here so you can get a box You can create a box here sexy You can create it here and its centers Add as much text as you want in it so that whatever you want for elite instagram yes, read it like your tax is You should not be behind the like option, understand this I went a little bit, I didn’t like the explanation If it is about tax then the report date is almost I am done with our part of the list I’m thinking something is not going well because i focus more on simple in the whole course because most people Going in the same direction and another youtube video towards so almost I have worn saree in it I have already done these things, rest of it is up to you with the fonts. You can play together, there are many different people here fonts do that i am here and do that I am late, he will come You can do that but after editing the client Are you going to add any fancy thing to it? don’t do it as long as the line is right then thoughts IT THE REST YOU WILL SEE ON RULES AND C Just Practice Practice Practice Set The alarm has been sounded, let’s go to YouTube Like the video it occurs halo gas what we are doing in this area is a I am going to edit a Youtube video which It will be in trending style like Alex And Ali became aunty’s now she became dal’s and No matter how big the Me 20 is, this type of video The castes which are trending are As soon as whatever latest video is playing are you going to edit that type of video This is for youtube and this is for my client There is a video and he has demanded this she wanted the video so I typed this If the video has also been added in India then So gas is going to edit in this area There is a Youtube video which is trending Alex and aunty will be in style i.e. now Daal inaam ghazi ais type of video like this It is the latest trending If the videos are engaging then they are of this type that we are going to edit a video There will be a video of my client which I he was heading so i thought him too Make it a part of your course and I will show you in the match how I edit I will do the full video and what about me If the editing process takes place then it helps in I will also tell you how to do it I’m adding effects and how Where does he want to do what, so start Before I do that I would say that Editing is something that comes from practice not just by seeing what you are You will see in the video, so try it Practicing it will make a difference for you. thing would be that for me it is a different thing and You are editing another type of video something for another client Everything is different depending on the topic I just want to learn from this how I work I am doing this and I want to practice that thing and But long term success comes from practicing So let’s go to our video and edit it. if you start doing this then you will be in it I made a little edit here And we’ll edit the rest in this course. I’ll show you how I edit it And the game basically Rockland got me I have given it to you, now I have to make it a gauging one type of alex type of alex video This is the video of Maa Ghazi So after making this video type this First let me show you starting from the beginning how did i make it so this is let’s see The journey is not just a market is so late me show you are you get First of all by breaking it down Let’s go, what effect did I do in this have done it and what did you do first Ofcourse there was one Ra Fortis and it meant There was no effect or anything so I used it I’ll tell you how I edited it I you can see from here Here the settle was absolutely normal zoom and It’s a little bigger than here There are two more types of zones basically We have already learned that, so now so we are going to apply in this If I want to go and see it, I have zoomed in here. And I have added it and also right here I have zoomed in, okay this is the thing that happens It depends on what you make on this video what are you talking about its topic then where there is no highlight word or someone said this type of word It goes to a place where you feel that friend, this This creativity can be highlighted a bit The entire creative editing depends on If the process happens then you have zoomed and as soon as he said that no friend let’s talk about it things so I zoomed it out completely so that it looks like a page then this thing learning comes more from watching than from seeing and By practising you will be able to do this thing now Rest I have set normal tax I have set the text here can see It is bolded and you can find the settings here You can keep the font size as per your choice You can see all this and a little shadow I have placed a drop shadow which you can see You can also set it according to your needs give it to me grandfather If people like one thing, then the rest are just normal Come on, I added transmission here now you can see it here these are pisces primates which you you can download it from youtube channel It is not possible and I am telling you this I will tell you from where you can download it Do you have Axis or does someone have it In the latest friends, you can also talk to them you can download it If you want to make these then it takes time and You can make and use these as well, like I can see here I have seen anything If you have created a search then do it like this here at Journey ok here i am talking about a highlighting point so I thought it would be a little engaging because in the beginning it is on youtube Know when to start if you’re not grooving did any highlighted point happen today or not If nothing of this type of question happens then your video is not in english It starts with the video which gives you the If you make it viral then you will generate more views it happens then no when is stage of D Flying journey is not just marketing I added a little zoom It stays smooth and looks good too and Like here he is going to say some other part it begins zoomed out a little bit and then after that very lightly and taxed out so that the floor is a movement head which The video becomes engaging going forward I made a motion template and made it into a motion You will also get this from many stories You can download it and use it as per your requirement you can edit it Download the emotion from the story as well can you and along with this some people here The problem is that this template is starting is of and and animation of If it didn’t happen then it would have been fixed here is that whatever you are, first treat it as normal then copy paste this and reverse it so the animation is in reverse some time what do you do that I do it Is which seems to be quite achievable so this thing people ignore it but this is also a This animation is an important thing If yes then the video looks better on quality then reverse it Sales process I added it that way I did the movie transition here like this his normal tax position and on that I have applied the transition, you can see it Transformer like this An over stock video has been edited which Above I have mentioned its taxes like Advertise etc. you can do this even without stock video you can do it in a different way you can do it like your heart is pounding like you are trying to do then i need stock I liked it and posted it on video, so I posted it here I put it inside the pay stock video and I will put a little cost on this so that that little bit of text gets foxed and feel a bit good you can add different on this you can do it but I said that it would be too much one line needs a little balance video Let’s keep it on the normal face now You have to see this too friend What are the demands of the client According to the prayer of the client you have to walk Launching Sits now I am one or the other according to this I will search for stock videos to add here For website.com You can also download stock videos from here you can download and there are many more but my so it’s a favourite and whatever add it Now here I am going to first talk about stock videos I will search The best website is Paxcel I am Personally my favorite website is here I search anything and I mean anyone also related to you there is pass motion, this type is not sexy you can download it from here So you can download it from here and do it too. I could here It is said that it is related to planting like it feels a little wide to me There is an angle and a little planting in it People are planting seeds and behind also because I will pick it up from here download it I will take this and simply for my video I will add it to the part Sugar Now let’s make it a little better here. for this I will add tax on it only that you can see It is not written here because my mic here’s a little setup of the pay t I’ve seen it is setup so because of this right now I I will fix it later, as of now I have written it here to show you I added the second thing here So you can change its color here With a little planning and planting If it is related then I will look at it in green By doing this, Green is also looking good in a way but I will return more It’s looking a little better now, look at it here But a little bit of it is getting foxed out, so what will you do for him for this what we’ll do is a little clip this is this which goes into the metric color and looks a little we will reduce its exposure so that it is slightly sa fox come on text and more Let’s take the background and we will talk a little about it This will also blur the background a bit It has become too much for us Let’s put it on 26 so that we can know a little bit about that Also see what is happening in the background and also the video is also found to be correct Is If we look a little here then this thing You have to do absolutely everything No space should be left empty in the story And the whole thing is very clear in the video Make any place always more black He has got some marks, there is something extra in it I’ll cut from here and go as far as I can It seems that friend I will cut it I even felt like making a clear cut for first of all you have absolutely Life is close and just a little bit of space Have to leave the extras so that what is there matches If it doesn’t cut your voice further I’ll just cut it from here. After doing this, see how clear your meaning is The cut has come finally say you know Look at it a little more that the attention keeps building and brings it a little bit closer [music] We will impose tax on research here so that If it is there then we can highlight this butt I copied this and pasted it, same temperature with Is this research I am having to explain it a little bit Fox can mix this so that the audience’s attention is drawn to this Build on the cheese so this cheese a little bit I have zoomed in, now I want to zoom it back in. I will also zoom out so that it can be seen a little Engaging videos will be distributed from here will set you back normal picture everything Cross Picture Board Picture I will add So here we have returned the color to this will match him with Now here she says what are you To change the style a little bit here To change the effect a little bit, I I will write this one by one, this also Make the video increasing one by one Tax is asking a question here I I will add tax one by one, this is just for you It depends on what your thinking is Are you thinking about your step? Do you think so? butter might be in this place so he The topic will be added for you by typing The client will be different for you Everything will be different for you But the process is almost the same No, you can’t see this type of effect there. Whatever I copy, you can copy paste it exactly just want to learn how to do things I am doing this and just on my video in a manner consistent with your thank you It’s ok to add effects now over here stop video is good s ad ho power which that tomorrow talk to me there is a stock here I add the video but it means tomorrow If I’m doing it, it’ll look a little better It happened here and it is different like This is sounding a bit odd to me here If it is related to the company then you would have looked at it once more oh let’s do this one here See here at can do it absolutely this is a good word It will be enough for the audience and that means It will be effective and capture its tensions to do because the audience matters So there is a little bit of text loss here as well You should come to this type of things which highlighted text is this pay tax the one who applies it is last, meaning so that This video should remain engaging The video has to be edited on one page so that what is there is more boring and not Dada recently added looks just engaging Here I have what is there on both of them And it feels engaging and looks good and I will reduce it further a little bit here Motion if yes then I will cut it from here it’s going good A little background on White [music] typing is much better like typing here which is available You can do it at your own will, whichever you like better you can do it as per the video and There is no one in it The element should be related to the topic of the video No similar stock videos related c) Caste should be similar to the topic and not more you are out dada [music] will add it here Hot Hot and figure it out what will you do [music] [music] [music] Just Think Like Debt have me organizations you me do i want you do anything about anything about mi organisation so they really have to think about devices like date me do i want you anything about my organization so they really [music] So you see so what shall we do with it Trust him on the account Is Really it’s late to check Sync Like Date Just Think Like Debt The Wich thank you will add [music] Here I have fast something is in this first time and third About It’s Joe reaction tu oh my god Reaction ok i will tell you here as much as i can It is possible or balance is possible here zoomin Come and do it, you guys also want to do it try it especially if its there Where I am not able to understand anything This needs to be added because zoom and zoom out are the same Things that made the video engaging And she maintains the page of the video So I can zoom in as much as I can Not even so much that you can see the woman zooming out give it to me I am checking the balance Let’s keep it wherever it is, what happens with this Where do you keep this thing, it has no meaning I am not able to understand what should I put there It maintains it and balances it Because of which most of the videos get disturbed Quality is not maintained, money keeps it If it is maintained then you can see it in this also I will be where I don’t need much I’m doing it I’m keeping it black yes I’m zooming Add necessary ads so that the video passes speed is maintained something is my first reaction But I will not add this here I am a little bit mine position should be changed related to online maybe it’s no hi or sent it’s just me trying to pick something else only above you You can send information like your provisioning me because i am Feeling Information ho tu d information Better than blue your provisioning me because i am going This independence journey is for the south Times I Need Your Support You know wonders and people you provisioning over Ladies Sins and Solutions We will add this to and solution So I hope you understood this video a little bit You must have wondered how I was editing and you must have got an idea of ​​which in which way do you add text etc. and where Where to place stock videos, overlap etc. I will tell you how to set it up and the sound I will tell you a little about the basics of designing You mean whatever is needed in the video The rest will come only after practising and I will Tell me a little about your facts etc. I will give that too, there is not much need for it This is how butt gym is done in this video I will tell you exactly about that So the gas video was my last recording I related this to the video and did it because the video had expired happens I was going I had to deliver I thought of your slide so Pause this recording and complete it first. does it and then by delivering it on this The rest of the price starts so now here But I have completed it completely Now you can attach the animation to the video I will tell you the full breakdown of what all I have done it normally in basic way which The thing is that he is mostly tax there’s nothing left and I haven’t done much OK we have yes, from here I will tell you right now that what did i do next i did it like here But what you are seeing is this type of one We have to understand each other enough, I have understood 10% of the weather downloaded like I have completed this motion graphic motion I downloaded it and simply said what what is happening at all and at the same time absolutely I added it here and above it I put the transaction in the background If even a collection is added then I just searched did you have a different hobby related to this? On the video website I got this type of video Temperature was found which you can search on anyone You can do the facts, just practice The pick is done, you can stock up on anyone You can search the video if the belly side If there is a back then a story box is enough There are good websites so from there now Stocked up on templates if you can. I did this to him and at the same time as I texted him and positioned him and with it a transition with a position on I added it because you can see that this I also have another tax set here did revenue teams and that too in the same way I added the transmission in and I here at I did the transition act on all three things there is out key on this as well and output on this as well the output key and the last one and timing them together it would seem is ending ok let’s go with your video rest is normal So take a look at it once You might have noticed a little bit of motion in it. This is an effect that changes the text we have to keep it in motion, this is also an engaging If it makes you can do anything with it I can show any text set here. I will give you this, you can also create it in transition You can do this in my reset but I I will teach you how to create creates it from like I have put it here So I am late after duplicating it Now from here I will start the translation I will hide it and now I will show you This is how you have to do it Transformer you can create it and it is normal I want to learn how to edit first of all STARTING To share more you can left click on dr you can download it and show it So let me turn it down a little bit to 5:45 gave a little bit It is so set which looks quite nice, you can use it in your You can add a lot of emojis on icons you can differentiate like one motion goes a it looks like an animation The style doesn’t look very odd in steel It feels like and when a motion happens then it is enough It helps and gives experience If experience makes you better then this have you have put And now let’s move on I do it very much you can see because I like this one and the other one is this Keep the video in a gapping movement from which which is it seems to be So now let’s move ahead here is the hack do it According to the sentence I told you like a Stock Videos Next Match discussion with and this is a girl a I mean the footage related to that is I added it a little further let’s go I have inserted the same text as what is being said it’s the same statement with the same text type well you might have noticed one thing here Mostly balance is the color that has been used I have made it yellow more, I changed the color I didn’t do the story, I even did the blue story If this is done then the purpose is that more You can not use colors in your video I have to do fonts and not do anything else don’t do this extra thing because Too many fonts ruin the quality By doing this it means you can make multiple layers of the same layer It gets worse and the experience is bad This is one thing you should not do regarding waiver Create a specific branding style Related to a video This will run in space It will drive in style and this type of tax If you watch the video of LC then it will is the same brand [music] take care of yourself you are not even half overrated and not edit it at all must carry balance Rajeev added a strange transaction here why should I look at you because it looks so weird First of all, I saw that I could add translation at any time Before that you have to see what is It should not look weird, it should be smooth and similar Strange, its framing is not getting cut If the frame is not getting stuck it doesn’t mean anything who mostly spoils the viewers like this People make this mistake that the one who is not given net But he should make the transition properly If you cannot see it then it is not clear Whatever is happening, if it happens for a little while You should avoid this type of translation And in mostly youtube videos you have seen there are similes and he has to do more Extras she doesn’t want to as i can see Love Movie This type of translation Meaning Somebody, you are changing the topic by changing the topic Like you are included in top 10 videos You are trying to change the topic, type it In this way, at that time you should do this type of thing You can make a transition so that this part ends If Max is starting then there is enough answer yes you can do this to him I mean this is not the transaction we do of this type You will find many transactions You can do that and see it here Are And they look at this It’s pretty good if you can do it I thought that you will get a lot of packs You can download the movie on Google You will get it, just search and try it There is also a version, there is also a free version I have seen some people doing this type of thing It is late, this is with a different video which would have been Is This type of translation This type of thing is also very weird [music] are you making a video or any such video In which the discussion is on a serious topic If it has happened then you should avoid it completely. Is So what transition can you make now? I tell you it has become soft type that you do Thank you Sorry You have to take care of something in the video if you If you are doing it for a client then Do it as per the demand if you feel there are more normal clients i.e. those who This is a normal video, if it is on a serious topic then In that you Hi Level You don’t need to do normal basic smooth Transition Similar Transition if you can do it with that then a little Let’s go ahead and now you can see it here I have put this stock video on it Tax Write it down and also put it on the world as you can see over lee you too will be found on youtube After putting it simply bring it here and put it on the screen normally What will happen to the screen This way the background appears on your front If he goes then you can reduce his money from here You can do the most you can, as much as you feel I don’t want to keep it 100% right for me I kept it like that but if you are absolutely

    direct then won’t feel good Around tax taken so i thought it was better here If it seems so then I will do it accordingly on the right side in a way Angle direction was told I’ve done it here if I can write it down him on the side If you feel like it then you can leave this one with the sign is done But this tax on rights will not look good. I always like the opposite, so I placed opposite I have seen all these things that happen I mean, what kind of learning do you do? Now you are looking at me, you need to learn more then you cannot learn everything from India You must go and watch the video I can only tell you what are the facts etc. gets created but you have created something yourself You will have to learn it yourself by watching the video and To improve your rating you have Simply you have to go and see the elder one How will you watch the video of Mr. 20 start how is the ad doing it it is being applied in this way when cut and whatever the condition is cut There are also G type cuts which are there In what way are they placing your ad You have to do it and also your right like this Song Video [music] download it apply it on Do the test and you have to understand that too If you start editing youtube videos then Try it this way. I have kept a lot of pieces of the same simple thing I am not going to keep pissing too much Here I made a small one, one motion is enough I did not do anything to type simply take a look first [music] and best bikes Have a paper background Have a paper background The doctor we are getting is fine. translation [music] also color like this It has been given but it has not been given in this why because I was sleeping, please light some light b2b to separate what is best and what is different The second time I did it I thought that it was the last I add drops and in this it won’t feel like this and a little like n both has different feelings, that too for For that I have written a little about both of them here I left it, I didn’t give you even a minute, now let’s move on Doctor, I collected tax here made it a little bigger because the doctor you were using a very meaningful word pee you b doctor which is a highlighted highlighting word so I wrote it down in large size and The top side just puts Fox A in it This is good go Let’s move forward together Now it’s moved forward You can see I have a sound effect sir sound effect sound effect by getting it which is said in the back then That saree is worn a little over a bag too ho this is what we mean about the bag remember that we did you start kissing in the video and what The topic was a little rent effect And on the adjustment layer I did Romantic go to colors and I have framed it the way he said it and later removed it I did the saturation directly to her I do it from here so you can see it here Pay There is no framing of So I couldn’t add it directly. or I could do one more thing, a color I am lying down, I am sitting here lying down put it on top and then beat it with it the third in If you change it and simply add it, that is enough There are many ways to create something, you just have to [music] I have to write which love is better is what’s going on in your mind what do you think is a shortcut You can do the rest easily and comfortably Simply this is what I have [music] So we edited this entire YouTube video. I took it and I also took a little more of the starting I had already given it to you so see more, it’s late So in this video I have done the over He did not even know many facts Because I have made a Youtube video, I am paying tax I did the effects to him the motion graphic which is done and the motion which I have taught you in this who makes a video on youtube Samsung is for video, not video If I could walk then this is what would have happened that’s the lower third stress and whatever else There are motion graphics in these extras A goes because you can add it if you want yes if you liked the video more to laugh and good quality Complex Topics to Explain to Win Spain is all you have to offer You can add extra in the video You all liked this movie So you can add that, you can simply search Karo Templates and Mostly Nowadays Videos You get templates for editing If yes then you also have CB story blogs etc. take the best of today’s circle and from there If you have a template then customize it and add it Let me show you the network How many things can you get from here you can get almost everything I will have to buy it, now you will say this Subscriptions 4500 per monastery normally to make any It will be difficult these days according to Kailash So instead of this you can buy it from any seller you can contact me there are many you will find it on facebook You can reach them on Facebook and Instagram And you can contact them at a cheaper rate Subscription for multiple tools which are available in I can give it to him just like I would do to him I am here in this video course I am not telling you the name sir if you tell me If you want to contact me then you can contact me You can also request I will give you their contact Subscription for 49 tools [music] you will get the elements It becomes too heavy to make it like this It is not temperate to create the effects of Download it, customize it and make it You will also find load searches and Story Pack Different Space Styles Title You can see that you were wearing this type of lower I’ll show you this type of school by going to school You will easily find the titles on the story and even for free if you don’t buy it You can have fun by searching whatever you want on Youtube A lot of cricketers Sound If you do it then head towards the circus Hello gas, well in this part we are I need to work a bit on sound designing hello gas well we have this hello gas Hello gas we went to this part a little bit We will do sound designing on sound How will the designing look like? the way sound effects sound like music This is how things have to be done and what not things happen, well today the last video was this I delivered the client’s goods to me quickly I had to do it, so I donated to him immediately. I had done that and sent it in The video was almost completed Editing etc. but the power of life is gone so in this I am going to give you the sound I will teach you in this video as well A little breakdown of this video as well How I did it in this and what do you say about yourself it means what is it like to her if you have done it then please tell her completely First we will see the complete sound design we do that part because they It was hidden in the previous video, what is in this We will do that, almost the same in this he doesn’t have the thing from the previous video There is a direct difference between stock videos and so on The basics remain the same, the normal things remain the same There is just one thing which changes in every video If there is a sound then let’s go A little bit towards the designing part I was just starting it, which means it was forces We also record ourselves together If they are shown then first of all I did the transaction in the beginning Put that one in this too so you can see it yes look it is posted here There are sound effects that you get from the story will You can add whatever you want here You can also adjust the audio volume level So remember this whenever you use any sound effect do it whatever be his audio level The volume should always be kept low, always zero I will not pay because it is not a balance So then it matches with the voice So always do any sound effect Its volume should be -5 – 10 or -8 keep it in this much I have put it at 18 here. yes but I am not liking this style too much I will reduce it further I will keep it and the place will also be like this We will keep doing sound effects, now the matter has come If you want to know how to do music then you can do music Always try to edit a YouTube video if you are going to ho tum music always your non copyright He has to do it so that your client If you don’t have any problem then please tell me about the story too. You can download NCS music You will find many more on Youtube The website has epidermis sound but that There are trees and some go to a different website There is another website by the name of NCS Music Maybe you are free from it in the name of music From there also you can get background music they will get it So the part which is music is always there Remember the starting music there is youtube video He does this specially for youtube videos for whatever happens with blogs etc. I get engaged in the beginning Always creating tension, which is the audience helps out to learn English Keeping the Experience’s audience engaged If it is there then it means that it is a relief for their attention Meaning always starting The match is going on, not many overs are being played So you read this thing a lot for uploading Let’s move on to our sound effects a little bit of starting one bit of starting the music is done so that the audience can The attention is that grapher is full meaning Keep watching the video and also You should make a video according to that but video If there is no engagement then that also makes a lot of difference Does matter I have zoomed in here, I have zoomed in here also used sound effects to make it look different Create an Effect 27 something And you will find it on the story too Multiple Oasis do it try not to put it in the video because there was only one sound in everything If it happens then it means there is not much engaging it seems so when you do it separately The audience is always your reviews, they are There is relief in tension, there is relief in that Now what type of sound effect will come what are you going to see in the video So this thing has come in the movie like that tension You don’t even know which graph you do How to edit a movie without editing it Played with sound effects more It’s because your attention is always there to grab is there ever any music without sound can’t see it without the effects sound effect any movie engaging bunty If it is not there then the part is of sound which that you can’t see but you can hear And with that you can feel proud of yourself. Sometimes you can watch a horror movie in which only head game is there There would be a sound If the effects are of caste then let’s move forward if you had foxed then it was about the plane and not what was that what is this thing I did not tell this in the editing part Tell us so we can do it Focus your hands on that side if he is showing movement then whatever he does towards him The text is saying something related to that If he is saying so then add that necessary thing there It feels pretty good creates a nice effect and press From Sound editing is such that you need two or three sometimes you have to see it once in a while It’s never right, once I do it Then you get a little scared and take a break If yes then you feel that it has become more or less If it happens then a creative process takes place sound editing in video sound designing which you see two or three times and then you take a break take video editing class because I never understood anything else during If it were so then when you take a break you would It happens well here this factory reset I can do it, if it’s not going well then it’s enough there are more things So here I heard a talk on campus Connecting complaint sayings and Breaking Down Dr so this means that the complex things by reducing it and breaking it into smaller ones By converting into parts means something like this if he is trying to tell you then you can tell him what can i do what did i do campus Breaking Dr is a man again who we are how to digest We are breaking which is also the point of became a visual representation as well as a A good fact has been created, so this too look at the thing If you can present the middle one then that too is ad I will try to do and later someone does this in a way Making Engaging Videos More Engaging to make it so that the video The tension graph is Subscribe he has done another one his bubble type Is this a subscribe button, it’s not a bubble a type of button sound effect that you you can do it any way [music] [music] 27 to let let me show you get Lines but you stop watching this video and it’s probably in the point join tomorrow mains tu comment derivation status no IT when it is wasted without regard to when it has become waste you must have done as told and your friend on this I have fixed the timing and it is here Race is written to create a good effect and if the audience is a very good fool When this type of effect is seen, the audio so his tension whatever is in there it will be grabbed but its here I have created this tension effect It means it depends on your video I can never teach you like this But you can note it down yourself and give yourself an idea. I have to apply this here, friend, this fat is more can do well which suits your creative Thinking means I am This is the process that you need for the video If it happens to him then the creativity is yours If I want to increase then I will pay as much as I can for that watch the video as much as possible because the one who Dada Ki Haali LED Video Dekho Zee Field You can put all the videos related to it in it See, that will only increase your creativity. and the experience increases in a way Here, as soon as he raised his hand I made an animation at the moment as well created that rice because you see how good it is going When you click a picture, it will be typed The effect looks good if done in this way Someone is taxing you So it is quite good to see what you think feels good Good recipe I have it made from here It was downloading because you got different packs you can download it, you will find it on youtube I just pasted the reset for you for free And here my effect is ready. I I did not surprise myself with just the effect The imported I can add sound effects So you’ll have to see Selecting shortcuts is a very hot process It happens You make a lot of videos Related If I can do it then it is not always necessary do that sound effect You can search related to that because it is related to 90% is chase Yours is matching there like it is here If it matches then you can reduce it a little Volume and company [music] That means it is trending mostly This is what people prepare for because a Putting motion in video is a motion builder We have to keep it so that the audience’s attention is There is that gap in the demand of many people It happens friend, this one is the most meaningful do it because it’s a way It is right to grab the attention of many people many people are not able to create it from Do whatever you want if you do it right now So I don’t care about it that much, so I You have been taught completely properly in the reality part which is will come already Putting your best first Now he’s faking the sound then Let’s go ahead and see this too [music] [music] [music] ho ho about Here I am giving it a condition There is a film impact pack that you you can download [music] Can you buy a stomach as well as other ways? You can also download from This is me transitioning you to him [music] [music] [music] [music] It’s feeling quite good, you can leave it if you want You can, but if you add a little more positive If you want to do well, you can do it [music] who shifting things dat you think ENG Friend Solutions well please stop the video if ever do it stock video stock image then try it if someone is texting her then do a any of the important taxes or add highlight text also Because it makes the video even better Because Rest is just for improvement of video If you are not the father then don’t add this but Style if you want to make quality videos And if the client demands it, then you have to do it. will have to [music] thank you but i can solve something debt isd help dem meet dat on n wrapping effect transition has become a that it became quite good and related In the way of the video, that line was always there Focus on the button too, what does it care about If it is there then the effect is created accordingly According to that, the elements seem to be According to which emojis are used which topic He is talking according to this video the element it needs to erode element no one should ever do this one line talk is doing something and you stock or Client is serious about some emoji and some other emoji When you are in the mood, you send him a laughing emoji. These things spoil the quality a lot. so I didn’t tell this to him randomly I’ll tell you like that And you can watch it anytime in high quality video You will not see these strange transactions Anyone can watch the video of Mr. 20 yes watch the video of alex and logic You can watch Ali Abdul’s video. Videos of all the top creators never see anything irrelevant or Strange transactions don’t always happen to him A relevant transition is one that Something else that makes the video better The video is an unwrapped one here He told me about the effect of those rapes It came straight to my mind because we have posted this page on The one page saree of the moment is You can have page effect, I have mentioned that here added it Now here I am going to talk about paper sound in a way I will find it or any sound related to it I will tell you because I can add it here yes it would be a bit difficult to find [music] [music] 29 December sleeping paper If I find it, I will search later and then add it I will give it to you, I will go ahead and then this in the video to deliver Two I have this one and just I do it because I don’t like it that much It must be doing so because if you want you can download it can you you will find it everywhere you can see so that it doesn’t look like a fox effect then you can see can you tell me how weird this text looks If it is not visible properly then that money also It’s got a fox plus one that’s pop Whatever the tax is, it has come to light There is also an understanding of It is not done [music] South Products Without Images and software I give You can do that in single text where If you are adding multiple then put this there These types of sound effects look good here Never add a pay shooter because there is no picture or stop video because that type of effect is created or give her type of flowers then click here You have only typed a single dot attacks of tax you can corporate it you can do that or any other person of this type you can do it by putting transmission on it You can do it but here is the chapter for him always have to do it there when you Taxing a stock video yes that too I am single direct A means doing it at a transition or when you are yes then you can do it The rest is up to you as per your choice, how you edit If you understand the game then you should try it yourself It does matter how things are going So here it is can do it [music] [music] Organised that organisation Externally You will find Story BlocksPAP You will get it for free on the story as well and you’ll get pixels Spending Others without saying i always D List The way she is moving in this way I am applying zoom zoom outs because this Makes the video quite engaging so now you look like he’s spending a In excitement I said love, I said love It was done immediately and the tax was paid below. Now whosoever will do If I put my hand down then I will go to foreign country I will take it out this way, camera you mean camera camera should I decrease the size again [music] Distance I hope you get me point Enterprise Resources Solution S here at you will understand I am fine download it put it down first and then on that it means solve it or take it in your throat Blacken it and put it on top of it Let me tell us how it goes I will tell you both the ways in this I will select the color from here in the part And simply selected it on black Did I will teach you to do it first of all you have What to do with a stock video You can pack it as much as you want Girls All the texts you have sent him etc do it straight down drag it flat Two The whole thing below has been added So now what will you do here? Will you do this? 50% as much as you want 95 Now look at that kind of effect I have to do it simply delete it everything is back to normal just to be right what is it okay to pick up stock video You won’t see the video below anyway she had to do the extra layer and was getting So paste the stock video here below Your videos have disappeared from here what to do to get the money Grandfather now over here aa jaaye So I just do it as I remember [music] She is telling a story but a good one I will feel it if you do it so fool right and your hunger Hunger You Can Have You Can Help Usually Without Being You have to check what is it, friend? He has the power, it depends on your mind it depends on your creativity No expert can teach you that thing could which he himself is doing because his There is a creative process, this is all How have you learnt this and I have come after seeing this what I can’t tell you at this moment is What am I thinking, I cut here there are quite a few places I can tell you I can’t tell about any place now, here it is why did i do black and white because I thought I was telling a story here is that tell me one thing about batch nation so here is a black and white The effect could be better The black and white effect is there or if he was in effect a cloud Here I felt like a black and white The effect would look better, just that one Puri type is telling something so that’s why I she did it to him Was Sometimes Different Option It’s Not Like Me Lamp think about think about tha because Derivation Stage Stage Things Dat Company Is Actually Considering ho this this date stock video her and this has committed a loss of money on I put black and white because that Let me tell you about this stock here I’ve already done the video So this is a light so there is nothing to say but I’ve done it before so I I thought it would be repeated again, so why? no i am laying down black and white on this so that Nobody should know much that he is the one If there is footage then it is because Dada Show is also It is not happening and there is black and white on this Where there is more money in the part You won’t even know it there know what is it actually think dat company This is actually considering ten dates less I have kept these insects so that they do not get duplicated I have thrown it on black and white so that it looks different so that the duplicate one Flower hope you get me point let’s take one option One Option let’s just take d yesterday I’ll have to reduce its volume [music] Preparation But still I am here to tell you guys I am learning Change Management I haven’t completed any course yet I haven’t even seen any course to learn but never mind watch this tutorial I did not do any proper course but here I am creating a course for you so the course The meaning of making is what I have learnt I’ll tell you that for the purpose of telling you and you must be saying the same thing, meaning video The editing that is there did not come after seeing the course I have come after practising, whatever I have seen I have tried to do it myself, which I See, I created the effects myself. watch the tutorial on what he did yaar I packed it in a way to repair it If you try then video editing is just it’s practice it’s practice it’s practice I will come to you by doing it, not by taking any course let’s see a tutorial now Viewing thousands of tutorials you will sit and nothing will come of it until one it’s better if you watch the tutorial And then think about video editing When I start it you will not see anything If it comes then it would be better, pick up any one Watch the start of adding a video also But practice every scale It demands practice, without practice you can Take as many courses as you want High paying courses People can take courses from any top rated guru but if you don’t practice you will If you can’t learn anything then whatever you have From now on, Sir, we will give you something with consistency The process has been going on without any sensei Without practice and without action you can achieve nothing If you can’t do it then keep this thing in mind that if you have reached this far in the course So I thought I’ll remind you, I’m in the middle I started giving speeches in a way But that’s exactly what I’m saying, friend. because I would say the same thing to you too follow me [music] You do things in practice so I’m just thinking about this part you here and Tax done Everything would have become clear from the sound I edited it myself and showed it like this Wherever you need sound effects There is definitely a chance you can do it in some points i will tell you sound The effect is always to keep the volume low Never go beyond the video Always keep the mines low 5pb – 4 as per your requirement Look as much as you feel is right and don’t keep it Always keep the music on low volume Bigger voices should always be understood There should always be balance in the music and along with this I do not do pollution otherwise I will frame it by doing it he did it I will comment and this music The sound effects are always in high quality If you want to do something then look at this thing that you are You might have understood it and you might be I will watch one or two more videos and then If anything would have been left, it would be me I will clear it right now in the beginning and I have to deliver it by 6 o’clock There are a lot of things to be done, including sound to complete the effects and wherever I think I will do that so let’s go next I will meet you in the next part Office hello gas salam walekum let’s go Hello Gas Hello Gas Salam Walekum is ours will remain [music] If he is not able to tell in points then he can do it Maybe you can get some proper The latest video is from 6 days ago or they don’t know you must be watching it in the course This is the latest one from 6 days ago in 24 hours If it’s not ok then let’s go and watch this video After playing it I also posted my Open your timeline and give your like here But I will do one less thing, here I have made a clip Dragon top is also similar If it is a grill then I would like a little bit on this I will show you the text etc. on the right I have no extra 3 she has to So this is what we would do if it could be done Is So let’s run it first And if you see it then play the video how to pack it Here the first effect that happened to him is this A transition is fine, not an impact bridge There is a transaction named butt is matching with it What I have is such an impact You can get the hole transition with these buttons Jaye Motion is available and another Max Kit But this transmission is also available and stable So you can download it from there as well Rect i got this from di once This is called impact wool, so this The editor has made the transition and posted it here But that also impacts three something so I’ll tell you I am late searching for flowers So you can see when I add it here So you see what kind of a thing this will become of ours So this has kind of attracted him You can see what kind of lake it came on Is [music] So you can see things from here and a little like motion in that if he does it more then you can see yes it is motioning here but this self There is a little more motion in it, so its These thoughts are starting up there as well If there is A in it then well, in a way, has been created So let us now see its next effect yes it has been created so next you can see It is not possible that it happens after effects There is a feature called Tax Animator which is available there There is a problem with this film, there is an option If you are not a user then you should like motion You can do it with templates like this to do transaction show cricket or you You can do any emotions here It is not necessary that you also feel the same to him But if you want to make animations like this ho give you like after There is an option, there is an effect, then you can do it Whatever the text is it will animate like this If you can do it then please do that in the fonts that are here Alex does that mode in his video Black does it from here we time I want it You can see the amount selected here. There is some other type of font but mostly what is in their video So now let us see the story with this font So if we don’t have this future then we too He did it and his colour is yellow Is He also adds what we will do we will do you can see We are doing this from here, now let’s move ahead Are here First of all This one is Lex’s full face and body first of all masking happened on this it has the roto brush tool it has If you are going to do masking then simply do this If you do masking like this then you will get proper time It will cost money, I will go from here to here you will start as if i just I do ok nowadays [music] I will reduce it a little a little Select it and move it down a bit Give I will reduce the feather and also the expansion I am thinking You can see that when you do masking I have to frame it with roto brush what happens after you do it to do that just need a roto brush It is easy but what are the after effects and we can’t simply do this in it Do it, you are done, what will I do now I will delete it Now you can see that the message has been sent but if You can see a little line here. There is a problem here we’ll make it a little bigger so that a little You can also create text using this method. yes you must have seen it but the masking is something most retire here but mostly people if do it because it makes your process He does a lot of taxes and the child is late for a long time so your second fact is that you If we do the background then here first the dog Here is the rotor shoe, the second one here is this The timer that you are watching has this element You will find some time for the meeting here you can download ours and another one this name The temperature of You will get it which you can easily download yes and its back then Emotion oh it’s done there are so many templates And you will get all the extra papers I will also show you if I You can see I get tempted This type will go but there are only two of these here But click on it, let’s go to the other one. Suppose Let’s go see of buttons but all of these We have foreign tools which can help him Let’s check on it as well You can see it here, it is also available for free this laptop Just download and use it in your video There is a website here you can get a lot of information from here You can see all the updates animated. There are not many subscribers here You will get the elements now let’s go Apart from other facts, you can also see the timer here You can search, I will show you the timer also By searching stopwatch is something anything you word You will put it in whatever type of thing it is You will get a meeting Different and coming at a good time there is one this is one So you can do it too if you have a tree So here you will find a lot of elements It is available for free because you download You can do it easily from the website You can find it quite easily on Youtube You will also get many of these Finding the elements has become quite easy the other thing is the text that happened to him here So he just added something different here this is not from what is written Make 10000 Both are not happening didi The size is a little less, around a little There is a line below it and below it is of this type a text Normal has been added and it will be added in that too x is the number and l is the number behind the x Background [music] I downloaded it and I got the right no It is not now But I will search it and show you here. If you don’t pay ₹10,000 then the film will be taken over If we search here, you will get Movie If the meetings start then just one of this type overlay it happened here because you are here you can download it from youtube see this You can download many for free here It is given for free And he liked it a little bit It is customized and also in date sheet Didn’t even customize it, black from there one on top of the screen and the rest overlap The effect is happening which you like in any way you can can you do it it’s inside you can see it So now let’s go to this factory of ours Almost complete breakdown has happened now Let’s move on and see what else Thesaurus videos well that’s what I told you about back then Colors like filters on whatever is in stock in which the colors are repeated Changed, there is a RCB type filter which you can apply by downloading it here You can also do it and apply it in saturation There is a game played here along with the view But if I create an effect here I suppose the color getting will happen soon So we also have to do C i.e. Late C So here it is You Just Time I will teach you how to create a square how to create type Simply you come here and shop diya shop one Create a simple C and we will come to it here will come to the properties which are our Participate in color from the beginning and I gave it a stroke, we stroke it too, we are red but after giving the stroke we will First we will remove the inside and you will see Your effect has been created In this simple way, tax was levied on it it’s due now let’s go ahead and Friends have to learn One thing is that I got a little bit here like camera moment something People here it happened to him I’ll show you how it’s made What should I say in a way I have moved to the frame I can clear the effect as well as this the element happened to him here, is that okay The scan element is anything you can will you search Or if you just search on Google You will get the type so that would be him you can see above him Make it yellow, make it something orange, make it If it happens here then overlay the step I also have it, you can see this type There is an over here, it happened to me In live circles but here it is fire type of spark called So this can also happen to him, here are the thoughts IT is nothing more and you are one more thing You can see this full video here also in so that whatever is there we can talk about it so that there can be change if you can do it A little feather is less of it So let’s go ahead and see What are the things The whole clipart is like this one here He said like youtube something so this youtube There are many icons coming here, this also stops yes this is also one there is nothing above it The overlay is applied and it is also dated Let me give you a fire overlay from here I will pick it up to see behind the layer of 10 it’s up there you can see it here Like we have seen this one too I got it from here it is from here I will download it If it happens to him then he would still be like this If it happens to him then option player from here Download Like This Login so this type of fire it is on the side of the lock so you have to point it would have been understood My intention here is not exactly I don’t want to tell her that Similar to what you find attractive You will get it from his idea which is given here Let me clear it up, so let’s go now. that I liked in the world our I have downloaded it So this part also became clear. This something saree from youtube these small ones the thing is this I’m thinking that you If I don’t tell you much then it is the thing in me I will tell you what will come on youtube come to that so you can see it ok then you must do the same You can create another one here as well There is something very special about Alex’s video That is a different camera, two to three cameras He is shooting a video simultaneously and do this and then sync it It is a very long process and it means a lot of time We will see but its editor has done it very well Let’s take it and now it means you will enjoy the step To do it simply here he retention To increase retention for keeping balance To grab the audience’s attention He quickly changed the angle so that some New youtube video always comes It is very perfect in me separately In the video of the video you will like one thing You don’t stay in place, you keep increasing so much that your heart does not want the video Background if there is something in the effect then along with this won’t you do it in six seconds just because of the video just watching and so many whoever is there has not yet learnt, if you see it then my video is too long I am going to take 10 minutes so watch this you like anything so much [music] Let’s move ahead So here the logo has come below it Drop added is simple this date and Here again the camera angle has changed and There is movement here, there is a little movement has happened You check it means angle plus timing means so tight here it isn’t happening at all, it feels like it’s being cut It looks like this, the camera angle is quite liked That is, the hand movement is the same as you select He is not explaining, how should I tell him? so quite a lot of likes it happened to him here and second there is a logo here and on its back The drop is The place has to be packed which can be easily You can create factor like or your butt If you need a transformer in the open put it on a little bit further back it a little further ahead The translation has been created Something So right now I This type of effect do [music] [music] I am one you are three four will line up What will you do to create the biggest gap? Simple This one which happens to be [music] you can see [music] there’s something in the lick Create I will do it you can see I felt like my headphones were bandaged chalna band ho gaya what a scene this is because this Sometimes things happen to me, my friend, I feel Recordings And in one video the audio is coming properly I just checked it and then click continue If we do this then we have created this effect I’ve done it, now let’s move on First Your Business the same day You can also do it and like it here If I am missing you then create it If I give it then let’s create this as well If he takes a simple word for it will reduce [music] Us Our If box A is there then you can choose one Extra Box From here we will apply the shadow directly and what will you do to increase its capacity And whatever is there in it, we will move it downwards and color it Will reduce our box completely We should learn to do this more If you don’t have anything extra then learn to juggle This is our third creation, Alex. of the sort of You can see different If it has happened then it is simple, no rapid The size was not From the property and adjust it in place Create and show it because this is enough then further And its look is like this now people are here I have done one thing which is here for him Maybe I didn’t see it, nobody noticed it This is how roto brush is done full video Pay butt you can see A little bit is on the front, on the front layer It happens And the layer that is in auto is on top if if these layers were behind then ours would be I have already shown you a similar video of mine editing youtube video and one side you have one side zoomed the same his hand movement is with the handle It’s pretty good it’s the same thing Yes type of your Chester etc. tell me the day after tomorrow You play according to what is happening, like him Zoom in on what he keeps repeating If you focus on them, there are many more ships Do it which is a lot of fun video Like motions banta seen in a video motion banta hai I will do it in this Alex’s video The editor does this thing to him a lot, you see? It’s been 32 seconds now Simply something like this is a logo and background There’s a kitchen behind it like this, so IPA I am masked on the back layer This is what it is, it is kept and simplified whatever it is there has a cross on it or Simply apply Impact Blur Translation From this and behind that we have created these here I have put a soft video on it I will show you color have been And [music] Bus and along with him are Here you will get unlimited Templates that too are free as per your choice are customized You can see it in the templates The temperature here You will see many top ones You can see this one here on education [music] I have turned it white now whatever I start I will simply keep it straight like this do it means I said one, I am here on one I will come to the forest [music] here how to apply Nice worship will make it zero will address this background [music] [music] [music] ok you download How many? It gives color [music] [music] So I’ll have to delete this right now, brother. what happens to can see Background stock video is here Resized a bit and placed on top of a post I put it on the background and resized the mosque and put a shadow behind it, drop shadow and how many to make here [music] This tax is levied separately along with Put stock video on top of background Background Score [music] this pack is ours There was a background of type with a stock inside it video with like money overlay on it There is a side element to make it simple and The text is simple, this date, nothing, anything There would not have been any extra here the same overlays, the same elements, you The elements are blurred above the I will mark that the video is of a mask has been put out [music] of money Stroke I also note down working every again so now we What to do [music] Distance that has happened download You can also make a design on a camera It has to be done but these also have some element If you have done it then we can download it from here you can try it So I’ve seen, I’ll try one more Video It will become quite long so we will put it here Let’s pause and try another creator now watch the video of So see you in the next part There will be a part with a personal painting How to create it will be the part So let’s run it over so the one whom So if this means that whatever I have learnt till now If you see Alex’s video then everyone knows him Like if I break down in a way As much as I have seen I have noted Alex’s videos mostly feature him It has its own element and its own animation It starts with normal sea and at the same time in The thing is litchi in the video and text The text transition was very tight Texted her really well the elements and our movements She’s not very perfect [music] you can watch the rest of the video nothing if I break down then it won’t do anything Things have overlapping elements The movement is done, the tax is done Textiles have become more than just taxes It is not just about doing everything in four or five things have made a different video or you Background: He is the brother of an expired star Which editor video is available here You can search and show me by searching like this also I will give you so that you can get it on many videos This five star element will go Star ones are available here which I created this dog myself You can see the star element If you can see it here then a little bit about it How did the pack change start? First pack was applied He Directed These videos are centered around five things It also happens on edits and mostly on every video You should go to YouTube and do these five things It is also direct around the over lemon animation is text and different thing no it happens around them but in The thing is that it is the content of the content Without style your video will be nothing also not there and along with this you will get LS You know the style is different and the content is different And with this there are these four-five things There are four or five things that I will tell you visually. I am visualizing these four-five things But if you look at the back you can’t see it That is the sound design of the video separately The sound quality is quite perfect which The song he chooses is perfect You may not think it has that much impact, but the most create more impact and with And that’s their background sound effect. If you watch this video and solve it, You will not feel that you are enjoying the video There has been a I don’t understand anything creates a perfect balance which Meaning If it comes out then treat it similarly as you If you eat biryani, if there is any open item in it If it goes down then you feel proud that friend If your face gets spoilt then make biryani in this way Like this an editing is also done in the same way But what makes a perfect mixer is So if we look at Karachi then we will see a different Subscribe from ki biryani [music] It happens to be our Portfolio So what is a portfolio basically? It happens where you keep all the K’s You keep your things as if they were a showcase Take it, you can keep your things in it, any Medals etc. were made so that they could be seen better If you want to present well then do it this way There is a portfolio where you don’t Whatever work I have done, whatever I have done in the past The video has been reduced projects done for all those who are suffering from polio you present yourself well inside so that no one If any client comes, then he should show him his portfolio Send this part to a lot of people You have gone and shown a lot of niceness They do not create a portfolio just for themselves Uploads all your files to the drive Samples and whatever the client requests After some time she drove the whole folder which gives a line many times I get the impression that friend, I have this with me I don’t have that much time to wait for this I’ll take the lens and do all the projects like this Check on Drive you like directly can not play it first you click on the link go to it and from there select it in the folder which you want to save. watch it by clicking on it [music] Quite often one gets the impression that if you any type of action means If it was there then avoid it and become perfect How to make something move on the line how to design and mean good You can make a portfolio by designing one Normal basic which looks good on the line It is possible So let me show you my portfolio First How else can you build your portfolio? So mine is on Behans you can buy it from anyone else If you can make it on the website, you can see it. What a well made this is sir It is liked and whatever amount is in it is mine I will edit it but no, right now whenever somebody will come into my portfolio when they If the type shows the area then it is quite It is good if you get an impression here then this The one who is like Kalin, he definitely doesn’t friend which one where what video He must be knowing the sections made here It is written in which area which If there is a video then it will be easily available here He wants g type of video, he can do it on If he clicks then he will think it Samples of his type can be found here You used to do the same scene on Drive as well, different Create a folder and keep the samples in a different folder pulses and what happens in the drive You can save files in different folders and different Access the folder and then click on Lens. If you click, the video will play and any other good video will play Like Fan Scene was a YouTube channel so that’s why Better than this, make yourself this type so that you are who you are Dude this is good No, it is not exactly like this It is not necessary that you copy this you can go with colors you can go with red blue and whatever you feel and if you this Doing this will give you a lot of inspiration A lot of people will go here Portfolios are better for me too you can see very well is available Game Website You can get a project here for this You will also find this is a good website You can create your own photo by logging in here. And if you are from Pakistan then you are from Pakistan You are almost gone, so you leave all this and lie down You can go to the star with a great This is the platform, from here I can also send you lines etc. is also available wherever one of our own You can make a website type but not for me It seems that you are more interested in your project you can keep it etc has been a Especially in Pakistan you can do this you can and there is more he can do that Do that but your portfolio should be good So now how did I get here I have made it now you might be thinking like this if it comes to that then I have told it to him It is customized It is as simple as I will do here the video will be uploaded nothing [music] I’m late for the video [music] Picture Now I will have to upload any I will upload the image as it is late suppose This is a bit of me here too, it’s going slow hey i don’t know why Cancel, I will show you from outside how does it feel without liking A customized heading has been created, it is like this it kind of seems like If it is uploaded then it is going in this way that is my second project like I You have uploaded a picture and the one above it Thumbnail is uploaded from here so this If it seems like this then you should try this thing also. How to customize used for every area, for every video Like thumbnail for youtube videos not just any part of the video If we make it like a heart then it will be here It happened to me, this is the same picture, this is the same project a small part of it is there in this way Like the thumbs up of youtube videos If you customize it well then tell me Also post your thumbnail with youtube here You will have to make the same for different actions You can make it different by putting your own logo You can be in the background and attack him can you keep it, can you do something like this or someone you can go to a different website can you go I have used a little bit of black color here please You can make it, I made it in Photoshop He was taking a photo with me but no The gas colour code was he is fitted After that do as you please, it’s on YouTube it is of video you can keep it keep it good If you can, I did it here like having it in hand some name contact I want to do it further and submit your project here Now make it look like this, what do you want to do? Its size is like the size of a thumbnail Like this it also has a new image size that maybe you remember so that it is more don’t go out You can see the current image, my size is 800 And if you want 632 pixels then you can use Canva I want to create a document simply and by creating guides inside it Just a little bit so that the likes don’t go out too much There are all the things in the center to add For So the better your portfolio is As many likes as you get The cleaner it is, the better for the client will make an impression And now the second thing is caste is not necessary Customize your portfolio If you have made a good portfolio but your You are no better than a sample If you don’t apply then there is no benefit to the client You should take a look at it when your condition is less good If it doesn’t happen then he is no more than a client won’t give it to you for less which is less good how to do it samples once you have made it then you can walk on it What is the first thing you do if you start Do you have any youtube video, tell me about it What should you do if you want to edit a video? You should keep the sample first of all If there is nothing that makes you special, you What to do? Simply make any one piece. I will show you I had made it earlier so I will show you by playing it I give can you make this type [music] You can do this with any cousin of yours If there is anything on youtube then it is according to that You can like or reduce his anything tell him brother this is your work I am not liking the video, I am not liking it And if I make it better and give it to him then Make him a video of that and give it to him as your sample Add it to your portfolio and you will get It has been very hard for me, someone has made me so not subscribed download also update this update Like has been done on YouTube contact you can please make it easily Show likes to clients I would have shown you my sample of the increase hmm here i am a little late slow It gets loaded [music] you like this there was a random youtube podcast from I made up this detail which I If you don’t remember the character’s name then watch the podcast Like I made a video by taking it out from could you also back me up you know what simply because of this I have done D Board font which that I told you and along with that, coloring Rupesh has cried and popcorn is in it nothing else has happened to him this step one i Liked over You have all the records now. The third comes A small trailer you can add to your portfolio Add it to me and you can also add any one who You can edit any big YouTube video If you are watching the video on youtube If it’s not good then edit it Remember your friend, he has brought the money Please edit the video as well Go and open your courses here If you add it then you will get more samples It is not necessary that you must pass three max You should have five samples of honey at last After that you have to go and find a client okay and when there are clients then obviously The point is to start I will make a sample and you will do it For the experience because it is so good will be Because the less samples you give, There should be minimum requirement in the beginning Needed Then you can go ahead and find the line ok now what is the second step Just let them have their own debate, if there is any or any other profile you have created copy the link and send it to them there and Then we will see your portfolio Brother we are trying to cash in, how will you do it by making likes from sample and you can start for a sample I have to create two, don’t you think about it friend I work hard and I get paid for it In the beginning, never sing for the money it is banta his customer So our flower is clear here. Now let’s move on to our next part This is how to create your own profile Do you want to do it on social media and how? To get clients, we will move towards this part. Let’s walk a little bit and see how it goes from where we can do it okay Hello gas you all let’s go to our next towards the part which is our final part this will be the course that I will be teaching Because how can you get clients create your own personal account with others and thus make it a personal brand Through that social media account you You can give me live, I will guide you as much as possible There will be more things in me too If you want to understand the extreme level then go through the basics I will put it on the level So let’s go ahead and show you the basics how am I your It is easier than the other branding method It’s going to take some time If it is for long term then long term is less If you want to do it then that method is more If it will be better then let’s give your like first so I put the camera here what am I doing in this so the most Let’s talk about the clients first [music] guru.com The armies are strong on which you rely If you can see your like profile then fiber You all must have known me in the big Almost all the awesome fibers of Prahlad Singh to understand that the flower is the tearing fiber itself They say Because this life is wrong for many people the concept is create a form and by leaving They go away saying that brother, whatever our account may be If we don’t do it, then we will do the same thing from now on There are enough people If you want to understand then this is a misconception that have to be removed from people Understand that it means that you You want to sell service, you also reduce it How is it sold online? This whole process is called how fiber is called ok for platforms and So now let’s talk about fiber first. You know you have to make a jig and play it all these things have to be ranked From there brother did it very well I have learnt almost everything Starting from the bottom it’s fine [music] Social media optimization was so fiber’s If he can explain it to me better then I so if I have learnt like it at all then I I would also recommend Grandpa doesn’t let her I don’t do it but I think about it now of coming into Fiber has more potential than fiber so do your crane a little bit and then You wait for that if it is exactly your jig If there is a rank then there would be a lot of likes and benefits If there are clients, they come to you So if you are going to fiber then you need a little The patient will be right, you will also get some discount in the offer everything will be fine, the patient is right in everything You can’t do anything without patience If your rank of fiber is correct then your Desire means you have a client It goes a little bit in the beginning, a little bit It is hard for you in the beginning

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog

  • Premiere Pro Video Editing Full Course by Marketing Fundas

    Premiere Pro Video Editing Full Course by Marketing Fundas

    Video course

    Premiere Pro Video Editing Full Course FREE | Earn Money by Video Editing | #videoeditingcourse

    By Amjad Izhar
    Contact: amjad.izhar@gmail.com
    https://amjadizhar.blog