Skip to content
  • 0 Votes
    3 Posts
    598 Views
    zaasmiZ

    f7dcfc32-36e3-440c-969d-f3f7cfe2e3cf-image.gif
    Reff

  • 0 Votes
    3 Posts
    1k Views
    zaasmiZ

  • 0 Votes
    3 Posts
    609 Views
    wajiha AsifW
    Solution://Header Files #include<stdio.H> #include<DOS.H> #include<BIOS.H> void interrupt (*oldint65)(); //To store current interrupt char far *scr=(char far* ) 0xb8000000; void interrupt newint65();//NewInt prototype void main() { oldint65 = getvect(0x65); setvect(0x65, newint65); getch(); keep(0, 1000); } void interrupt newint65() {clrscr(); *scr=8; (*scr)=0x174D; (*(scr+2))=0x1743; (*(scr+4))=0x1731; (*(scr+6))=0x1739; (*(scr+8))=0x1730; (*(scr+10))=0x1734; (*(scr+12))=0x1730; (*(scr+14))=0x1736; (*(scr+16))=0x1734; (*(scr+18))=0x1730; (*(scr+20))=0x1734; }

    429e7ece-92cc-4cef-a09c-e90f8b391518-image.png
    3e679fbc-5b4c-4ac1-a4c8-107d83737325-image.png

  • 0 Votes
    2 Posts
    137 Views
    zareenZ

    @Love-Uzair said in My Question is about mortgage bound?:

    mortgage bound Ka koi example btae… Land ki ilawa…?

    Mortgage bonds are backed by real assets that may include land or home mortgage.

  • 0 Votes
    2 Posts
    321 Views
    zaasmiZ

    @Madiha-Ch
    Money market is a place where short term debt instruments are traded the volume of transaction is large while number of transactions are small. For example certificates of deposits and commercial papers are traded in money market.

  • 0 Votes
    4 Posts
    3k Views
    cyberianC

    @nabeel-ahmar said in How can I add Online Payment gateway Easypaisa/JazzCash as a in WordPress/Woocommerce Website?:

    I am facing an issue to create murchant account on easypesa

    Please contact easypasia to get verified accounts with documentation.

  • 0 Votes
    12 Posts
    534 Views
    zaasmiZ

    @zaasmi said in Steps to Pay PTA Mobile Tax Calculation:

    Re: Mobile Phones PTA Tax Calculator Pakistan – Tax & Duties

    S.No Mobile Phones having C&F value (US Dollars) Fixed Rate (Amount in Pak Rs.) 1 Upto 30 $ Rs. 300 2 Above 30$ and up to 100$ Rs. 2,940 3 Above 100$ and up to 200$ Rs. 4,510 4 Above 200$ and up to 350$ Rs. 6,180 5 Above 350$ and up to 500$ Rs. 17,650 6 Above 500$ Rs. 31,520

    Note: The above rate duty/taxes is for Baggage Imports and not for Commercial Imports.

    Thanks for sharing this solution for all my products and problem

  • 0 Votes
    4 Posts
    519 Views
    zaasmiZ

    @Fouzia-Suleman said in MGT201 Assignment 1 Solution and Discussion:

    IA new investor wants to add bonds and shares in his portfolio and he has two options available with the following information.
    I. Company ABC issued a five-year bond with face value of Rs.1,000. The bond offers 12% semiannual coupon payment. The market interest rate for such type of investment is 14% per annum while current market price of bond is Rs.940.
    II. The stock of company XYZ is being sold at Rs.54 per share while the forecasted dividend is Rs.6 for first year and Rs.7 for the second year. The price of the stock after year 2 is expected to be Rs.55. The Company paid most recent dividend as Rs.5 whereas the rate of return for such type of investment is 14% per annum.
    You are required to help the investor in valuation of both investment options by calculating:

    Intrinsic value of the bond. (8 marks)
    Intrinsic Value of stock today. (8 marks)
    Identify either bond and stocks are overvalued or undervalued. Justify your answer with proper calculation and reasoning. (4 Marks)

    Assignment#01
    Marks 20

    Intrinsic value of the bond
    Po=Σ Ct/ (1+r/2)n + Par/1+r/2)n
    C = coupon payments = 100012/100 = 120/2 = Rs.60
    No. of coupon payments = 52 = 10 (semi-annual) Required rate of return: 14/2 = 7% (semiannual)
    = 60Annuity factor (7%,10) + 1,000 * PV factor (7%, 10) = 60{1-1/ (1+0.14/2) 52) / (0.14/2)} + 1,000/ (1+ (0.14/2)5*2 = 60{1-1/ (1+0.07)10 /0.07} + 1,000/ (1+0.07)10
    = 421.41+ 508.35
    = Rs. 929.76

    Intrinsic value of the stock
    Do = Current dividend = Rs.5 D1 = Rs.6
    D2 = Rs.7
    Value of Stock:
    Po = D1/ (1+i)n + D2/ (1+i)n + P2/(1+i)n Po = 6/ (1.14)1+ 7/ (1.14)2 + 55/ (1.14)2 Po = 5.26+5.39+42.32
    Po = Rs.52.97
    Bond and Stock valuation Solution

    Overvaluation or undervaluation of securities
    For Bond
    Bond is overvalued because market price is more than intrinsic value i.e. Market price > Intrinsic value
    940 > 929.76
    For Stock
    Stick is also overvalued as its market price is more than its intrinsic value i.e. Market price > Intrinsic value
    54 > 52.97

  • 0 Votes
    5 Posts
    281 Views
    zaasmiZ

    @Anaya-Ch
    Please post your assignment in subject with topic so we can solve it.

  • 0 Votes
    5 Posts
    638 Views
    zaasmiZ

    CS201 ASSIGNMENT 3 SOLUTION SPRING 2021

    #include <iostream> using namespace std; #define PI 3.14159265 class Circle { private: double radius; public: void setRadius(); void computeAreaCirc(); Circle(); ~Circle(); }; Circle::Circle() { radius = 0.0; } void Circle::setRadius() { radius = 5.6; } void Circle::computeAreaCirc() { cout << "Area of circle is: " << PI * (radius * radius) << endl; cout << "Circumference of circle is: " << 2 * PI * radius << endl; } Circle::~Circle() { } class Rectangle { private: double length; double width; public: void setLength(); void setWidth(); void computeArea(); Rectangle(); ~Rectangle(); }; Rectangle::Rectangle() { length = 0.0; width = 0.0; } void Rectangle::setLength() { length = 5.0; } void Rectangle::setWidth() { width = 4.0; } void Rectangle::computeArea() { cout << "Area of Rectangle: " << length * width << endl; } Rectangle::~Rectangle() { } main() { cout<<"********************SCIENTIFIC CALCULATOR********************"<<endl; cout<<""<<endl; int run = 1; string option, choice; while(run) { cout << "\nOPTION 1 for computing Area and Circumference of the circle" << endl; cout << "OPTION 2 for computing Area of the Rectangle" << endl; cout << "Select your desired option(1-2): "; cin >> option; if(option == "1") { Circle nCircle; nCircle.setRadius(); nCircle.computeAreaCirc(); cout << "Do you want to perform anyother calculation(Y/N):"; cin >> choice; if(choice == "Y" || choice == "y") { continue; } else { break; } } else if(option == "2") { Rectangle nRectangle; nRectangle.setLength(); nRectangle.setWidth(); nRectangle.computeArea(); cout << "Do you want to perform anyother calculation(Y/N):"; cin >> choice; if(choice == "Y" || choice == "y") { continue; } else { break; } } else { cout << "Invalid Option!, Option should be from (1-2)" << endl; } } }
  • 0 Votes
    2 Posts
    228 Views
    zareenZ

    @zaasmi said in MCM610 GDB1 Solution and discussion:

    ‘In the Public Interest’ is an excessively used cliché in mass media. What do you know about it?

    Media are the communication outlets or tools used to store and deliver information or data. The term refers to components of the mass media communications industry, … By the mid-1960s, the term had spread to general use in North America and the … The meaning of electronic media, as it is known in various spheres, has …

    Reff

  • 0 Votes
    2 Posts
    151 Views
    zaasmiZ

    @cyberian said in CS420 Assignment 2 Solution and Discussion:

    You are required to develop an HTML5 based webpage which draws an Animated Solar System (i.e. moon revolves around earth and earth revolves around the sun) on canvas.
    Here is a screenshot of a sample page.

    Your Task is to make such a page suitable for portable devices. You can use concepts of HTML5, CSS and JavaScript etc.

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>CS420 - Assignment # 2</title> </head> <body> <canvas id="canvas" width="1000" height="1000"></canvas> <script> var sun = new Image(); var moon = new Image(); var earth = new Image(); function init() { sun.src = 'images/canvas_sun.png'; moon.src = 'images/canvas_moon.png'; earth.src = 'images/canvas_earth.png'; window.requestAnimationFrame(draw); } function draw() { var ctx = document.getElementById('canvas').getContext('2d'); ctx.globalCompositeOperation = 'destination-over'; ctx.clearRect(0, 0, 800, 800); // clear canvas ctx.fillStyle = 'rgba(0, 0, 0, 0.4)'; ctx.strokeStyle = 'rgba(0, 153, 255, 0.4)'; ctx.save(); ctx.translate(400, 400); // Earth var time = new Date(); ctx.rotate(((2 * Math.PI) / 60) * time.getSeconds() + ((2 * Math.PI) / 60000) * time.getMilliseconds()); ctx.translate(205, 0); ctx.fillRect(0, -12, 40, 24); // Shadow ctx.drawImage(earth, -12, -12); // Moon ctx.save(); ctx.rotate(((2 * Math.PI) / 6) * time.getSeconds() + ((2 * Math.PI) / 6000) * time.getMilliseconds()); ctx.translate(0, 28.5); ctx.drawImage(moon, -3.5, -3.5); ctx.restore(); ctx.restore(); ctx.beginPath(); ctx.arc(400, 400, 205, 0, Math.PI * 2, false); // Earth orbit ctx.stroke(); ctx.drawImage(sun, 0, 0, 800, 800); window.requestAnimationFrame(draw); } init(); </script> </body> </html>

    images folder
    c513141f-d0e8-47e0-b866-045535ab5ee1-image.png

    183cd962-9200-45ca-8868-cc3297b420b2-image.png
    images:
    canvas_sun.png canvas_moon.png canvas_earth.png

  • 0 Votes
    2 Posts
    265 Views
    zaasmiZ

    @zaasmi said in CS312 Assignment 2 Solution and Discussion:

    In continuation of assignment 1 of CS312, by using system requirements, we identified following entities in the system under observation;

    Admin / Owner
    Tour Plan
    Sites
    Activity
    Visitor
    Guide

    By considering these entities in your system, you must identify entity attributes and cardinality between provided entities. Note that you are not required to add any extra entity from your side that would result in deduction of marks. So, your Task is to;
    TASK: [Marks = 10 + 10 = 20]
    Draw ER diagram containing entities, assumed attributes and cardinalities between these entities.

    3cbd2d00-8d98-4fc8-9190-93dd10b22944-image.png

  • 0 Votes
    2 Posts
    145 Views
    mehwishM

    mostly this kind of error is caused by missing an .htaccess file in your root wordpress directory ,
    Please check that
    if . htaccess no available create a new on in root of wp and past that default Wordpress configuration.

    # BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress
  • 0 Votes
    3 Posts
    187 Views
    cyberianC
    Add a .htaccess file in root which contains - RewriteEngine On RewriteRule ^(.*)$ public/$1 [L]
  • 0 Votes
    3 Posts
    556 Views
    zareenZ

    @zareen said in PHY301 Assignment 2 Solution and Discussion:

    Label and identify meshes in given below circuit. Use Loop/Mesh analysis to find currents through all Meshes.