Wednesday, May 31, 2023

Class 5 ex1 Q3

 Chapter no. 1

Exercise # 1.1

Q.NO.3 Di gai fesad ko asharia mein tabdeel kijiye jb k jawab teen darga  asharia tak drust ho



i. 47%

=47/100

=0.47



ii. 58%

=58/100

=0.58




iii. 92%

=92/100

=0.92




iv. 8%

=8/100

=0.08




v. 12%

=12/100

=0.12




vi. 120%

=120/100

=1.2


Tuesday, May 30, 2023

Class 4 ex1 Q2

 Chapter no. 1

Exercise # 1.1

Q.NO.2 Darjzail kasoor ko fesad ki shakal mein likhiye 




vii. 23/60

=23x100/60

=2300/60%

=38.3%




viii. 8/3

=8x100/3

=800/3%

=266.7%

ix. 8/5

=8x100/5

=800/5%

=160%




x. 7/8

=7x100/8

=700/8%

=87.5%




xi. 5/8

=5x100/8

=500/8%

=62.5%




xii. 3/8

=3x100/8

=300/8%

=37.5%

Sunday, May 28, 2023

Class 3 ex1 Q2

 Chapter no. 1

Exercise # 1.1

Q.NO.2 Darjzail kasoor ko fesad ki shakal mein likhiye 



i. 3/4

=3x100/4

=300/4%

=75%




ii. 3/5

=3x100/5

=300/5%

=60%



iii. 4/25

=4x100/25

=400/25%

=16%




iv. 13/20

=13x100/20

=1300/20%

=65%




v. 31/25

=31x100/25

=3100/25%

=124%



vi. 21/40

=21x100/40

=2100/40%

=52.5%


Saturday, May 27, 2023

Class 2 ex1 Q1

Chapter no. 1

Exercise # 1.1

Q.NO.1   Darjzail fesad ko kasroon ki asan shakal mein waziah kijiye






viii.  33   1/2%
=33.5
Point  khatm krny sy
=335/10
=335/10x100
=335/1000
5 pr divide krny sy
=67/200




ix. 37   1/2%
=37.5
Point khatm krny sy
=375/10
=375/10x100
=375/1000
5 pr divide krny sy
=75/200
5 pr divide krny sy
=15/40
5 pr divide krny sy
=3/8





x. 87  1/2%
=87.5
Point khatm krny sy
=875/10
=875/10x100
=875/1000
5 pr divide krny sy
=175/200
5 pr divide krny sy
=35/40
5 pr divide krny sy
=7/8
xi. 5  1/4%
=5.25
Point khatm krny sy
=525/100
=525/100x100
=525/10000
5 pr divide krny sy
=105/2000
5 pr divide krny sy
=21/400




xii. 42  1/2%
=42.5
Point khatm krny sy
=425/10
=425/10x100
=425/1000
5 pr divide krny sy
=85/200
5 pr divide krny sy
=17/40


Thursday, May 25, 2023

Class 1 ex1 Q1

 Chapter no. 1

Exercise # 1.1

Q.NO.1   Darjzail fesad ko kasroon ki asan shakal mein waziah kijiye


i.     95%

= 95/100

5 pr divide krny  sy

=19/20


ii.   65%   

=65/100

5 pr divide krny sy

=13/20


iii. 75%   

=75/100

5 pr divide krny sy

=3/4


iv. 25%   

=25/100

5 pr divide krny sy

=1/4


v. 56%r 

=56/100

2 pr divide krny sy

=28/50

2 pr divide krny sy

=14/25


vi. 48% 

=48/100

2 pr divide krny sy

=24/50

2 pr divide krny sy

=12/25


vii. 8%   

=8/100

2 pr divide krny sy

=4/50

2 pr divide krny sy

=2/25

Sunday, May 21, 2023

how to Make a 3d slider with html and css

Slide 1

Slide 2

Slide 3

Slide 1

Slide 2

Slide 3

.slider-container { width: 400px; height: 300px; perspective: 1000px; margin: 0 auto; } .slider { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: slide-rotate 15s infinite; box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); } .slide { position: absolute; width: 90%; height: 90%; top: 5%; left: 5%; backface-visibility: hidden; transform-style: preserve-3d; display: flex; justify-content: center; align-items: center; color: white; font-size: 24px; font-weight: bold; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); border-radius: 10px; transform: translateZ(-200px); } .slide1 { background-color: #ff6384; } .slide2 { background-color: #36a2eb; transform: translateZ(0); } .slide3 { background-color: #cc65fe; transform: translateZ(200px); } @keyframes slide-rotate { 0% { transform: rotateY(0); } 25% { transform: rotateY(-90deg); } 50% { transform: rotateY(-180deg); } 75% { transform: rotateY(-270deg); } 100% { transform: rotateY(-360deg); } }

Certainly! The code provided is an HTML and CSS implementation of a 3D slider. Here's a description of the code and its functionality:


HTML:

- The slider is contained within a `<div>` element with the class "slider-container".

- Inside the container, there is another `<div>` element with the class "slider" that holds the slides.

- The slides are represented by `<div>` elements with the classes "slide slide1", "slide slide2", and "slide slide3". Each slide contains an `<h1>` element with the slide's content.


CSS:

- The ".slider-container" class sets the dimensions of the slider container and applies a perspective effect to create the 3D view.

- The ".slider" class represents the container for the slides and specifies its positioning and appearance.

- The ".slide" class represents each individual slide. It sets the position, dimensions, and styling of the slides, such as their background color, font size, font weight, box shadow, and border radius.

- The ".slide1", ".slide2", and ".slide3" classes define the specific styles for each slide.

- The "@keyframes slide-rotate" rule specifies the animation of the slider. It rotates the slider around the Y-axis at different percentages to create a spinning effect.


The code positions the slides in a 3D space using the `translateZ` property. Each slide is positioned at a different distance from the viewer, allowing them to overlap and create a 3D effect. The slides rotate around the Y-axis to create a spinning motion.


Please note that this code provides a basic foundation for a 3D slider, and you can further customize it according to your preferences by adjusting the styles, dimensions, animation timings, or adding additional functionality.


Let me know if you need any further clarification or assistance!

Friday, May 19, 2023

find the interval satisfying the inequality 4 - (1/2)n < -7 + (1/4)n,

To find the interval satisfying the inequality 4 - (1/2)n < -7 + (1/4)n, we can solve it step by step. Let's begin:


4 - (1/2)n < -7 + (1/4)n


First, let's eliminate the fractions by multiplying the entire inequality by the least common multiple (LCM) of the denominators, which is 4. This gives:


4 * (4 - (1/2)n) < 4 * (-7 + (1/4)n)


Simplifying:


16 - 2n < -28 + n


Now, let's isolate the variable n on one side of the inequality. We can do this by adding 2n to both sides and adding 28 to both sides:


16 - 2n + 2n < -28 + n + 2n + 28


16 < 3n


Finally, divide both sides of the inequality by 3:


16/3 < n


So, the solution to the inequality is n > 16/3.


Therefore, the interval satisfying the inequality is (16/3, ∞), where n is greater than 16/3.

by using methmatical induction , prove that the eqvation 2+4+6+....2n =n(n+1) is true for all positive integers

 To prove the equation 2 + 4 + 6 + ... + 2n = n(n + 1) for all positive integers using mathematical induction, we need to show that it holds for the base case (n = 1) and then demonstrate that if it holds for some arbitrary positive integer k, it also holds for k + 1.


**Step 1: Base Case**

Let's check the equation for the base case when n = 1:

2 = 1(1 + 1)

2 = 1(2)

2 = 2


The equation holds true for the base case.


**Step 2: Inductive Hypothesis**

Assume that the equation holds true for some arbitrary positive integer k, that is, assume that:

2 + 4 + 6 + ... + 2k = k(k + 1)


**Step 3: Inductive Step**

We need to show that if the equation holds for k, it also holds for k + 1.

We start with the left-hand side (LHS) of the equation:

2 + 4 + 6 + ... + 2k + 2(k + 1)


Using the assumption from the inductive hypothesis:

= k(k + 1) + 2(k + 1)


Factoring out (k + 1):

= (k + 1)(k + 2)


This matches the right-hand side (RHS) of the equation, which is n(n + 1) when n = k + 1:

= (k + 1)((k + 1) + 1)

= (k + 1)(k + 2)


Therefore, if the equation holds for k, it also holds for k + 1.


**Step 4: Conclusion**

By proving the base case and showing that if it holds for k, it also holds for k + 1, we have established that the equation 2 + 4 + 6 + ... + 2n = n(n + 1) is true for all positive integers by mathematical induction.

Visual Studio Review: and download link

 Title: Visual Studio Review: Empowering Developers for Efficient Software Development



Introduction:


Visual Studio, developed by Microsoft, has established itself as a leading integrated development environment (IDE) for software development. It offers a comprehensive suite of tools and features that streamline the development process, enhance productivity, and empower developers to create high-quality applications. In this review, we will explore the key features of Visual Studio and delve into why it has become a go-to choice for developers worldwide.


Key Features of Visual Studio:


1. Extensive Language Support: Visual Studio supports a wide range of programming languages, including C#, C++, Python, JavaScript, and many others. This versatility enables developers to work with their preferred languages and frameworks, making it suitable for various application development scenarios.


2. Robust Code Editor: Visual Studio provides a powerful code editor with features like IntelliSense, code navigation, code formatting, and debugging capabilities. These features enhance code readability, facilitate quick error detection, and help developers write clean and efficient code.


3. Seamless Integration with Azure and Cloud Services: Visual Studio offers seamless integration with Microsoft Azure, enabling developers to build, deploy, and manage cloud-based applications with ease. It provides tools for connecting to cloud services, debugging in the cloud, and deploying applications to Azure environments.


4. Versatile Debugging and Testing Tools: Visual Studio includes advanced debugging and testing tools that assist developers in identifying and fixing issues efficiently. The IDE offers features like breakpoints, watch windows, step-through debugging, and unit testing frameworks, making the debugging and testing process more streamlined and effective.


5. Extensibility and Integration: Visual Studio allows developers to extend its functionality through a vast ecosystem of extensions and add-ons. This extensibility enables developers to customize their development environment, integrate with third-party tools, and enhance their workflow based on specific project requirements.


6. Collaboration and Team Development: Visual Studio provides features for team development, including source control integration with Git and other version control systems. It enables seamless collaboration among team members, allowing them to work on the same codebase simultaneously, track changes, and merge code efficiently.


Download Visual Studio:


To experience the power and versatility of Visual Studio, you can download the software from the official Microsoft website. Visit the following link to access the download page:



Please note that Visual Studio is available in different editions, including the free Community edition for individual developers and small teams, as well as paid editions with additional features for larger organizations.


Conclusion:


Visual Studio stands as a comprehensive and powerful IDE that empowers developers to create high-quality applications efficiently. With its extensive language support, robust code editor, seamless integration with Azure and cloud services, versatile debugging and testing tools, and collaborative features, Visual Studio provides a complete development environment that caters to the needs of developers across different industries and project sizes. Whether you are building desktop applications, web applications, or mobile apps, Visual Studio offers the tools and capabilities to streamline your development process and deliver outstanding results. Download Visual Studio today and elevate your software development experience.

Adobe Premiere Review: and download link

 Title: Adobe Premiere Review: Unleash Your Creative Potential in Video Editing



Introduction:


In the realm of professional video editing, Adobe Premiere stands as a formidable and widely-used software that empowers content creators to craft visually stunning and captivating films, videos, and documentaries. Boasting a robust set of features, seamless integration with other Adobe Creative Cloud applications, and an intuitive user interface, Premiere has established itself as a go-to choice for both aspiring enthusiasts and seasoned professionals. In this review, we will delve into the key features of Adobe Premiere and provide you with a download link to explore its capabilities firsthand.


Key Features of Adobe Premiere:


1. User-Friendly Interface: Adobe Premiere presents users with a clean and well-organized interface, making it accessible to beginners while retaining the power and flexibility demanded by professionals. The workspace can be customized according to individual preferences, enabling users to streamline their workflow and enhance productivity.


2. Comprehensive Video Editing Tools: Premiere offers an extensive array of editing tools, allowing users to trim, cut, and arrange clips effortlessly. Advanced features such as multi-camera editing, keyframe animation, and customizable transitions provide the creative freedom required to produce visually stunning videos.


3. Professional-Grade Effects and Color Correction: With Premiere, you can apply a vast range of effects and filters to your footage, enhancing its visual appeal. The software also includes advanced color correction tools, enabling precise adjustments to achieve the desired look and feel.


4. Seamless Integration with Other Adobe Applications: Adobe Premiere seamlessly integrates with other Adobe Creative Cloud applications such as Adobe After Effects, Adobe Audition, and Adobe Photoshop. This integration enables a smooth workflow, allowing users to effortlessly transfer their projects between applications and leverage the full potential of the Creative Cloud ecosystem.


5. Audio Editing and Mixing Capabilities: Premiere offers robust audio editing and mixing features, allowing users to fine-tune soundtracks, adjust levels, and apply effects to achieve professional-grade audio quality. The integration with Adobe Audition further enhances audio post-production capabilities.


6. Enhanced Collaboration: Adobe Premiere facilitates collaboration among team members through its shared projects feature. Multiple editors can work on the same project simultaneously, making it easier to collaborate, share feedback, and ensure a smooth editing process.


Download Adobe Premiere:


To experience the power and versatility of Adobe Premiere, you can download the software from the official Adobe website. Simply visit the following link to access the download page:


[Download Adobe Premiere](https://www.adobe.com/products/premiere.html)


Please note that Adobe Premiere is a paid software, and Adobe offers various subscription plans to suit different needs and budgets.


Conclusion:


Adobe Premiere stands as a leading video editing software, providing a comprehensive suite of tools and features for both novice and professional users. With its intuitive interface, powerful editing capabilities, seamless integration with other Adobe applications, and enhanced collaboration options, Premiere empowers content creators to bring their creative visions to life. Whether you are editing home videos, producing professional films, or creating engaging online content, Adobe Premiere remains a top choice in the world of video editing. Download it today and unlock your creative potential.

English Class 10



Lesson 10: Expressing Likes and Dislikes


Urdu:

آج ہم دسویں سبق کے طور پر اپنے پسندیدہ اور ناپسندیدہ کی عبارتیں بیان کرنا سیکھیں گے. یہ عبارتیں ہمیں اپنی رائے بیان کرنے میں مدد کرتی ہیں.


English:

Today, we will learn to express our likes and dislikes as our tenth lesson. These expressions will assist us in expressing our opinions.


Urdu:

یہاں ہم کچھ عبارتیں سیکھیں گے جو اپنے پسندیدہ یا ناپسندیدہ کی عبارت کے طور پر استعمال ہوتی ہیں:


1. مجھے یہ پسند ہے (Mujhe yeh pasand hai) - I like this.

2. مجھے یہ ناپسند ہے (Mujhe yeh napasand hai) - I dislike this.

3. میری مزاج کے مطابق (Meri mizaj ke mutabiq) - According to my mood.

4. میں اسے بہت پسند کرتا/کرتی ہوں (Main ise bohat pasand karta/karti hoon) - I really like it.

5. میں اسے برا نہیں کہتا/کہتی (Main ise bura nahi kehta/kehti) - I don't say it's bad.

6. یہ میرا پسندیدہ رنگ ہے (Yeh mera pasandida rang hai) - This is my favorite color.

7. میں یہاں بہت خوش ہوں (Main yahan bohat khush hoon) - I am very happy here.

8. مجھے یہ بہت پسند آیا (Mujhe yeh bohat pasand aya) - I liked it a lot.

9. میں اسے نہیں پسند کرتا/کرتی (Main ise nahi pasand karta/karti) - I don't like it.

10. میں اس کی محبت کرتا/کرتی ہوں (Main uski mohabbat karta/karti hoon) - I love him/her.


English:

Here are some expressions used to express likes and dislikes:


1. I like this.

2. I dislike this.

3. According to my mood.

4. I really like it.

5. I don't say it's bad.

6.


 This is my favorite color.

7. I am very happy here.

8. I liked it a lot.

9. I don't like it.

10. I love him/her.


Urdu:

آپ ان عبارتوں کو استعمال کرتے ہوئے اپنے پسندیدہ اور ناپسندیدہ کی عبارتیں بہتر طور پر بیان کر سکتے ہیں. آیا آپ کوئی جملہ یا مثال بنانا چاہیں گے جس میں ان عبارتوں کا استعمال ہو؟


English:

By using these expressions, you can express your likes and dislikes more effectively. Would you like to create a sentence or example using these expressions?


Urdu:

میں امید کرتا ہوں کہ آپ کو یہ سبق مفید سمجھ آیا ہوگا. اگر آپ کے پاس کوئی سوال ہو یا مزید معلومات کی ضرورت ہو تو پوچھیں بلا جھجھک!

English Class 9



Lesson 9: Describing People and Things


Urdu:

آج ہم نویں سبق کے طور پر لوگوں اور چیزوں کی تفصیلات کو بیان کرنا سیکھیں گے. ان تفصیلات کے ذریعے ہم لوگوں اور چیزوں کے بارے میں بہت کچھ جان سکتے ہیں.


English:

Today, we will learn to describe people and things as our ninth lesson. Through these descriptions, we can learn a lot about people and things.


Urdu:

یہاں ہم کچھ تفصیلات بیان کرنے کے لئے استعمال ہونے والے الفاظ سیکھیں گے:


1. لمبا (Lamba) - Tall

2. چھوٹا (Chhota) - Short

3. گورا (Gora) - Fair

4. سانولا (Sanwla) - Dark-skinned

5. خوبصورت (Khubsurat) - Beautiful

6. خوشی سے بھرپور (Khushi se bharpoor) - Joyful

7. دوستانہ (Dostana) - Friendly

8. تیز (Tez) - Fast

9. مضبوط (Mazboot) - Strong

10. پُرجوش (Purjosh) - Energetic


English:

Here are some words used to describe details:


1. Tall

2. Short

3. Fair

4. Dark-skinned

5. Beautiful

6. Joyful

7. Friendly

8. Fast

9. Strong

10. Energetic


Urdu:

آپ ان الفاظ کو استعمال کرتے ہوئے لوگوں اور چیزوں کی تفصیلات کو بہتر بیان کر سکتے ہیں. آیا آپ کوئی جملہ یا مثال بنانا چاہیں گے جس میں ان الفاظ کا استعمال ہو؟


English:

By using these words, you can describe people and things more effectively. Would you like to create a sentence or example using these words?


Urdu:

میں امید کرتا ہوں کہ آپ کو یہ سبق مفید سمجھ آیا ہوگا. اگر آپ کے پاس کوئی سوال ہو یا مزید معلومات کی ضرورت ہو تو پ


وچھیں بلا جھجھک!

English Class 8



Lesson 8: Common Phrases for Daily Communication


Urdu:

آج ہم آٹھویں سبق کے طور پر روزمرہ کی ارتباط کے لئے عام جملوں کو سیکھیں گے. یہ جملے ہمیں دن بھر کی بات چیت میں مدد دیتے ہیں.


English:

Today, we will learn common phrases for daily communication as our eighth lesson. These phrases will assist us in day-to-day conversations.


Urdu:

یہاں ہم کچھ عام جملوں کو سمجھیں گے:


1. کیا حال ہے؟ (Kya haal hai?) - How are you?

2. میں ٹھیک ہوں (Main theek hoon) - I am fine.

3. شکریہ (Shukriya) - Thank you.

4. بہت خوبصورت (Bohat khubsurat) - Very beautiful.

5. کیا آپ میری مدد کر سکتے ہیں؟ (Kya aap meri madad kar sakte hain?) - Can you help me?

6. معاف کیجئے گا (Maafi keejiega) - Excuse me.

7. کیا آپ انگریزی بولتے ہیں؟ (Kya aap Angrezi bolte hain?) - Do you speak English?

8. کیا آپ کا نام کیا ہے؟ (Kya aapka naam kya hai?) - What is your name?

9. براہ کرم دھیرے بولیں (Barah-e-karam dheere boliye) - Please speak slowly.

10. الوداع (Alwida) - Goodbye.


English:

Here are some common phrases we will learn:


1. How are you?

2. I am fine.

3. Thank you.

4. Very beautiful.

5. Can you help me?

6. Excuse me.

7. Do you speak English?

8. What is your name?

9. Please speak slowly.

10. Goodbye.


Urdu:

آپ ان جملوں کو استعمال کرتے ہوئے اپنی روزمرہ کی باتوں کو مزید اچھا بنا سکتے ہیں. آیا آپ کوئی جملہ یا مثال بنانا چاہیں گے جس میں یہ جملے کا استعمال ہو؟


English:

By using these phrases in your daily conversations, you can enhance your communication. Would you


 like to create a sentence or example using these phrases?


Urdu:

میں امید کرتا ہوں کہ آپ کو یہ سبق مفید سمجھ آیا ہوگا. اگر آپ کے پاس کوئی سوال ہو یا مزید معلومات کی ضرورت ہو تو پوچھیں بلا جھجھک!


English:

I hope you found this lesson helpful. If you have any questions or need further information, feel free to ask without hesitation!

English Class 7

Let's move on to Lesson 7.


Lesson 7: Introduction to Conversation Skills


Urdu:

آج ہم ساتویں سبق کے طور پر بات چیت کے مہارتوں کی تعارف کریں گے. بات چیت کی مہارتیں ہمیں دوسروں کے ساتھ اچھی طرح بات کرنے میں مدد کرتی ہیں.


English:

Today, we will introduce conversation skills as our seventh lesson. Conversation skills help us communicate effectively with others.


Urdu:

یہاں ہم کچھ اہم بات چیت کے مہارتوں کو سمجھیں گے:


1. آغاز کرنا (Aaghaz karna) - Initiating a conversation

2. میان بولی (Mian boli) - Active listening

3. سوال پوچھنا (Sawal poochna) - Asking questions

4. جواب دینا (Jawab dena) - Giving answers

5. تجزیہ کرنا (Tajziya karna) - Analyzing and discussing

6. تبدیلی کا اندازہ لگانا (Tabdeeli ka andaaza lagana) - Guessing change

7. متفق ہونا (Muttafiq hona) - Agreeing

8. اختلاف کرنا (Ikhtilaaf karna) - Disagreeing

9. مذاق کرنا (Mazaq karna) - Joking

10. معذرت کرنا (Mazrat karna) - Apologizing


English:

Here are some important conversation skills we will learn:


1. Initiating a conversation

2. Active listening

3. Asking questions

4. Giving answers

5. Analyzing and discussing

6. Guessing change

7. Agreeing

8. Disagreeing

9. Joking

10. Apologizing


Urdu:

اب ہم چند مثالوں کی مدد سے ان مہارتوں کو سمجھیں گے. آپ میں سے کوئی مثال پوچھنا چاہیے؟


English:

Now, let's understand these skills with a few examples. Would you like to ask for any examples?


Urdu:

میں امید کرتا ہوں کہ آپ کو یہ سبق مفید سمجھ آیا ہوگا. اگر آپ کے پاس کوئی سوال ہو یا مزید معلومات کی ضرورت ہو تو پوچھیں بلا ج


ھجھک!


English:

I hope you found this lesson helpful. If you have any questions or need further information, feel free to ask without hesitation!

English Class 6

Sure! Let's proceed to Lesson 6.


Lesson 6: Vocabulary Expansion


Urdu:

آج ہم چھٹے سبق کے طور پر لغت کو وسعت دیں گے. لغت کی توسیع ہمیں زبان میں مزید الفاظ سمجھنے اور استعمال کرنے کی صلاحیت فراہم کرتی ہے.


English:

Today, we will expand our vocabulary as the sixth lesson. Expanding vocabulary enables us to understand and use more words in the language.


Urdu:

یہاں ہم چند نئے الفاظ سیکھیں گے. آپ یہ الفاظ دیکھ کر ان کی تلفظ سنا سکتے ہیں اور ان کے معنی سمجھ سکتے ہیں.


1. صبح (Subah) - Morning

2. شام (Shaam) - Evening

3. کتاب (Kitab) - Book

4. پانی (Paani) - Water

5. کھانا (Khana) - Food

6. سچ (Sach) - Truth

7. خوشی (Khushi) - Happiness

8. امید (Umeed) - Hope

9. دوست (Dost) - Friend

10. خریدنا (Khareedna) - To buy


English:

Here are some new words we will learn. You can see the words, listen to their pronunciation, and understand their meanings.


1. Morning

2. Evening

3. Book

4. Water

5. Food

6. Truth

7. Happiness

8. Hope

9. Friend

10. To buy


Urdu:

آپ ان الفاظ کو استعمال کر کے اپنی مکالمے میں مزیدتر بہتری لاسکتے ہیں. آیا آپ کوئی جملہ یا مثال بنانا چاہیں گے جس میں ان الفاظ کا استعمال ہو؟


English:

You can enhance your conversations by using these words more effectively. Would you like to create a sentence or example using these words?


Urdu:

میں امید کرتا ہوں کہ آپ کو یہ سبق مفید سمجھ آیا ہوگا. اگر آپ کے پاس کوئی سوال ہو یا مزید معلومات کی ضرورت ہو تو پوچھیں بلا جھجھک!


English:

I hope you found this lesson helpful. If you have any questions or need further information, feel


 free to ask without hesitation!

Wednesday, May 17, 2023

Edius video Editing and Download link

Unleash Your Video Editing Potential - A Comprehensive Review



Introduction:

In the realm of professional video editing, Edius has established itself as a powerful and versatile software solution. Developed by Grass Valley, Edius offers a comprehensive set of tools and features that cater to the needs of video editors, filmmakers, and content creators. In this review, we delve into the key aspects of Edius and explore why it has become a popular choice in the industry.


User Interface and Workflow:

Edius provides a user-friendly interface that prioritizes efficiency and ease of use. The intuitive layout and customizable workspace allow users to streamline their editing process, resulting in a seamless workflow. With a wide range of keyboard shortcuts and a well-organized timeline, navigating through projects and accessing essential functions becomes second nature, enhancing productivity.


Video Editing Tools and Features:

Edius offers a robust set of video editing tools and features that empower users to bring their creative visions to life. The software supports a vast array of video formats and resolutions, allowing for flexibility in handling various projects. From basic editing tasks like trimming and splitting clips to advanced techniques such as multi-camera editing, color grading, and 3D editing, Edius provides a comprehensive toolkit to accomplish professional-grade results.


Real-time Performance and Speed:

One of Edius' standout features is its real-time performance, even with high-resolution footage and complex effects applied. The software leverages hardware acceleration technologies, making it efficient at handling demanding editing tasks without compromising playback quality. With its ability to smoothly preview edits in real-time, Edius ensures a responsive and efficient editing experience.


Multicam Editing and Collaboration:

Edius excels in multicamera editing scenarios, allowing users to edit footage from multiple sources simultaneously. This feature simplifies the editing process for events, interviews, and other multi-angle projects, enabling seamless switching between camera angles. Furthermore, Edius offers collaboration tools, allowing multiple editors to work on the same project concurrently, fostering teamwork and enhancing productivity.


Audio Editing and Mixing:

In addition to video editing capabilities, Edius provides powerful audio editing and mixing tools. Users can adjust audio levels, apply effects, remove background noise, and synchronize audio with video effortlessly. The software supports multi-channel audio, making it suitable for projects requiring precise control over audio elements.


Integration and Exporting:

Edius seamlessly integrates with other software and hardware solutions, facilitating a smooth workflow within professional editing environments. It supports various file formats and codecs, ensuring compatibility with industry standards. Moreover, Edius provides efficient exporting options, allowing users to render projects into different formats suitable for broadcast, web, or disc authoring.


Conclusion:

Edius stands as a reliable and feature-rich video editing software, empowering professionals and enthusiasts to bring their creative visions to life. With its intuitive user interface, comprehensive editing tools, real-time performance, and collaboration capabilities, Edius has become a preferred choice in the industry. Whether you're editing films, documentaries, or online content, Edius provides the tools and efficiency required to create compelling videos.


Download link:

Please note that Edius is a commercial software. You can download the latest version or obtain a trial from the official Grass Valley website: [Edius Download](https://www.grassvalley.com/products/edius/)


Make sure to review the system requirements and choose the appropriate version that suits your editing needs.


Happy video editing!

Photoshop Review and Download link

Enhance Your Creativity with Photoshop: A Comprehensive Review



Introduction:

In the world of digital design and image editing, Adobe Photoshop has long been considered the industry standard. With its powerful tools, extensive features, and intuitive interface, Photoshop empowers both professionals and enthusiasts to transform their creative visions into stunning reality. In this review, we delve into the key aspects of Photoshop and explore why it remains the go-to software for graphic designers, photographers, and artists alike.


User Interface and Navigation:

Photoshop boasts a user-friendly interface that strikes the perfect balance between simplicity and functionality. The workspace is highly customizable, allowing users to arrange panels, tools, and menus according to their preferences. With a bit of familiarity, navigating through Photoshop becomes second nature, enabling efficient workflow and seamless editing.


Editing Tools and Features:

Photoshop offers an impressive array of tools and features that cater to diverse editing needs. From basic image adjustments like cropping and resizing to advanced techniques such as layers, masks, and blending modes, Photoshop provides endless possibilities. The software's editing prowess extends beyond just photos—it's equally adept at creating digital art, illustrations, and even complex 3D compositions.


Performance and Speed:

One of Photoshop's noteworthy strengths is its ability to handle large files and complex projects without sacrificing performance. The software efficiently utilizes system resources, ensuring smooth editing even when working on high-resolution images or multiple layers. With recent updates optimizing speed and performance, Photoshop has become faster and more responsive than ever before.


Integration and Compatibility:

Photoshop seamlessly integrates with other Adobe Creative Cloud applications, such as Illustrator and InDesign, enabling a seamless creative workflow. Additionally, the software supports a wide range of file formats, ensuring compatibility with various industry standards. Whether you're collaborating with others or preparing files for print or web, Photoshop delivers flexibility and reliability.


Learning Resources and Community:

As a widely adopted software, Photoshop benefits from an extensive community of users and resources. Adobe provides comprehensive documentation, tutorials, and online forums, allowing users to enhance their skills and explore new techniques. Countless online tutorials and YouTube channels dedicated to Photoshop further expand the learning opportunities, making it accessible to beginners and seasoned professionals alike.


Conclusion:

Adobe Photoshop remains the undisputed champion in the realm of digital image editing. Its intuitive interface, powerful editing tools, and robust performance make it an indispensable companion for graphic designers, photographers, and artists worldwide. Whether you're a professional seeking to refine your work or an enthusiast looking to unleash your creativity, Photoshop is a must-have tool in your arsenal.



Download link: 

Please note that Adobe Photoshop is a commercial software. You can download the latest version or obtain a subscription from the official Adobe website: [Adobe Photoshop Download](https://www.adobe.com/products/photoshop.html)


Remember to check the system requirements and choose the appropriate plan that suits your needs.


Happy editing and creating!


Tuesday, May 16, 2023

Physics SEM2

 Q2 )

Explain the motion of an object in the following situation which suitable example A speed is constant and velocity is varying B acceleration of a body is constant but velocity is zero C speed is constant and acceleration is zero D force is applied but acceleration is zero

Solution

A) Speed is constant, and velocity is changing:

In this scenario, the object's speed remains the same, but the direction of its velocity is changing. This situation occurs when an object moves in a circular path at a constant speed. For example, consider a car driving in a circular track at a constant speed of 60 miles per hour. Although the car maintains the same speed, its velocity is constantly changing because it keeps changing direction as it moves along the circular path.

B) Acceleration of a body is constant, but velocity is zero:

In this case, the object is not moving (velocity is zero), but it experiences a constant acceleration. An example of this is an object in free fall. Imagine dropping a ball from a height. At the moment it is released, its velocity is zero, but it accelerates downward due to the force of gravity. During its descent, the ball's velocity remains zero, but its acceleration is constant (approximately 9.8 m/s² downward).

C) Speed is constant, and acceleration is zero:

When an object maintains a constant speed and its acceleration is zero, it means that there is no change in its velocity over time. An example could be a car traveling on a straight road at a constant speed of 50 miles per hour. As long as there are no external forces or changes in conditions, the car will continue to move at the same speed in a straight line without any change in its velocity.

D) Force is applied, but acceleration is zero:

In this scenario, a force is being applied to an object, but its acceleration is zero. This situation occurs when the applied force is balanced by an equal and opposite force, resulting in a state of equilibrium. A common example is a book resting on a table. The force of gravity pulls the book downward, but the table exerts an equal and opposite force, balancing the gravitational force. As a result, the book remains stationary, and its acceleration is zero.

It's important to note that velocity and acceleration are vector quantities, meaning they have both magnitude and direction. Speed, on the other hand, is a scalar quantity that only represents the magnitude of velocity.


Physics SEM 1

 Q 1 )

The required take off speed of a commercial airplane is 12 North if dis commercial airplane take 30 seconds to covers the airport Runway Park calculate acceleration required during takeoff and runway length of airport


Solution


To calculate the acceleration required during takeoff, we need to use the formula:


acceleration = (final velocity - initial velocity) / time


Given:

Initial velocity (V0) = 0 m/s (assuming the airplane starts from rest)

Final velocity (V) = 12 m/s

Time (t) = 30 seconds


Plugging in the values into the formula, we have:


acceleration = (12 m/s - 0 m/s) / 30 s

acceleration = 12 m/s / 30 s

acceleration = 0.4 m/s²


Therefore, the acceleration required during takeoff is 0.4 m/s².


To calculate the runway length of the airport, we can use the kinematic equation:


distance = (initial velocity * time) + (0.5 * acceleration * time²)


Plugging in the values, we have:


distance = (0 m/s * 30 s) + (0.5 * 0.4 m/s² * (30 s)²)

distance = 0 m + (0.5 * 0.4 m/s² * 900 s²)

distance = 0 m + (0.2 m/s² * 900 s²)

distance = 0 m + 180 m

distance = 180 m


Therefore, the runway length of the airport is 180 meters.


Monday, May 15, 2023

how to i earn from free lancing step by step

 Introduction:

In today's digital age, freelancing has emerged as a popular and viable way to earn income while enjoying the flexibility of being your own boss. Whether you're a skilled writer, graphic designer, developer, marketer, or possess any other marketable skill, freelancing offers endless opportunities to leverage your talents and monetize your expertise. In this article, we will provide you with a comprehensive guide on how to earn from freelancing and set yourself up for success in the competitive freelance marketplace.
Sure, I can provide you with a step-by-step guide on how to earn from freelancing: Step 1: Identify your skills and niche The first step to earning from freelancing is to identify your skills and niche. You can start by creating a list of all the skills you possess, including any previous work experience, educational background, and personal interests. This will help you determine the services you can offer as a freelancer and the target audience you want to cater to. Step 2: Build your online presence As a freelancer, it's essential to have a strong online presence. Start by creating a professional website or portfolio showcasing your skills, past work, and client testimonials. You can use website builders like WordPress or Squarespace to create a website quickly and easily. In addition to a website, you can also leverage social media platforms like LinkedIn, Twitter, or Instagram to network with potential clients and showcase your work. Step 3: Find freelance jobs There are several ways to find freelance jobs, including: - Freelance job platforms like Upwork, Freelancer, or Fiverr - Social media platforms like LinkedIn or Twitter - Job boards like Indeed or Glassdoor - Referrals from previous clients or colleagues It's important to research and compare different platforms to find the best fit for your niche and skillset. Step 4: Submit proposals and bids Once you have found freelance jobs that match your skills and expertise, submit proposals and bids to potential clients. Your proposal should include a brief introduction of yourself, your skills, and how you can add value to the client's project. Be sure to personalize each proposal and address the client's specific needs and requirements. Step 5: Negotiate and close the deal If your proposal is accepted, negotiate the terms of the project, including the scope of work, timeline, and payment. Be clear and transparent about your rates and any additional costs, such as revisions or rush fees. Once the terms are agreed upon, finalize the contract and get started on the project. Step 6: Deliver quality work and exceed expectations As a freelancer, your reputation is everything. Deliver quality work that exceeds your client's expectations to build a strong reputation and gain repeat business and referrals. Step 7: Invoice and receive payment Once the project is completed, invoice the client and receive payment through the agreed-upon payment method. Be sure to follow up on any outstanding payments and maintain clear communication throughout the process. In conclusion, freelancing offers endless opportunities to leverage your skills and expertise and earn a steady income. By following these steps and consistently delivering quality work, you can establish yourself as a successful freelancer and unlock your earning potential.

Bindi Banane ka Tarika:




Bindi Banane ka Tarika:


Ajza (Ingredients):

- 250 grams bhindi (okra)

- 2 tablespoons tail (oil)

- 1 pyaz (onion), bareek kata hua

- 2 tamatar (tomatoes), bareek kata hua

- 1/2 teaspoon lal mirch powder (red chili powder)

- 1/2 teaspoon haldi powder (turmeric powder)

- 1/2 teaspoon dhania powder (coriander powder)

- 1/2 teaspoon zeera (cumin seeds)

- 1/2 teaspoon amchur powder (dried mango powder)

- Namak (salt) swad anusar

- Hara dhaniya (fresh coriander), kata hua (garnish ke liye)


Tayari ka Tarika:


1. Bhindi ko acche se dho kar saaf karein. Dhyan rahein ki bhindi sukhi ho aur beech mein se kata hua na ho.

2. Bhindi ki dono taraf se sarson ka tel lagayein aur thodi der ke liye rakh dein.

3. Ek kadai mein tail garam karein aur usmein zeera dal kar sauté karein, takleef tak.

4. Bareek kata hua pyaz dalein aur use golden brown hone tak sauté karein.

5. Tamatar dalen aur masalo mein lal mirch powder, haldi powder, dhania powder, aur namak bhi dal kar milayein. Acche se mix karein aur tamatar naram hojane tak pakayein.

6. Bhindi ko achhe se sukha lein ya tissue paper se saaf karein. Sukhi bhindi ko kadai mein dalen aur halki aanch par pakayein.

7. Bhindi ko tab tak pakayein jab tak wo ache se sek na jayein aur naram hojayein. Dhyan rahein ki bhindi crispy na bane.

8. Amchur powder dalen aur ache se mix karein. Aap chahein toh thodi der ke liye bhindi ko lid se cover karke rakh sakte hain.

9. Bindi ko garnish ke liye kata hua hara dhaniya se sajayein.

10. Garam-garam bhindi ko serve karein.


Mazeedar bhindi taiyar hai! Ise roti, naan, ya chawal ke saath serve karke mazedaar khana ka maza uthayein!


Mujhe ummeed hai ki yeh tarika aapko pasand aaya hoga. Agar aapke aur sawal hain, toh mein aapki madad karne ke liye yahan hoon!


Mazeed Recipe Nichey Hain:

Recent added

TypeScript Class 5

Common Syntax Errors in TypeScript and How to Avoid Them Syntax errors are among the most common issues developers encounter when writing Ty...