Financial Accounting and Analysis Assignment

Financial Accounting and Analysis Assignment

Question (1):

Solutions:

Given,
Cost of machine = Rs 15 lacs
Scrap value of machine = Rs 8 lacs
Machine’s estimated useful life = 4 years
Depreciation Rate = 20%.

The WDV of the asset for the four years is:

write down value (WDV):

The write down value (WDV), is the "net book value of an asset computed by deducting the accumulated depreciation from the value shown in the account books.

Depreciation:

Depreciation is defined as the reduction of recorded cost of a fixed asset in a systematic manner until the value of the asset becomes zero or negligible.


Rate of depreciation:

Depreciation Rate is used by the company for calculation of depreciation on the assets owned by them and depends on the rates issued by the Income-tax department.

Annual Depreciation = (Cost of Asset – Net Scrap Value)/Useful Life

Rate of depreciation = 1 - (8/15)^(1/4) = 0.145.

Accumulated depreciation:

Accumulated depreciation is the total amount an asset has been depreciated up until a single point. Each period, the depreciation expense recorded in that period is added to the beginning accumulated depreciation balance.

Accumulated depreciation for four years was: 15×0.2×4 = 12.

Profit on sale is 12 - 8 = 4.


Question (2):

Solutions:

Accounting steps in order to prepare the financial statements:

(1) Examine transactions by analysing the source document

Source documents are typically retained for use as evidence when auditors later review a company's financial statements, and need to verify that transactions have, in fact, occurred.

They usually contain the following information:

(a) A description of a business transaction

(b) The date of the transaction

(c) A specific amount of money

(d) An authorizing signature

(2) Records transactions in the journal

All accounting transactions are recorded through journal entries that show account names, amounts, and whether those accounts are recorded in debit or credit side of accounts.

(3) Post record entries to the ledger account

After journal entries are made, the next step in the accounting cycle is to post the journal entries into the ledger. Posting refers to the process of transferring entries in the journal into the accounts in the ledger. Posting to the ledger is the classifying phase of accounting.

(4) Complete the worksheet by preparing the account balance

Accounting worksheets are most often used in the accounting cycle process to draft an unadjusted trial balance, adjusting journal entries, adjusted trial balance, and financial statements.

8 Steps of Preparing Accounting Worksheet

Name of business organization and preparation date.
Drawing column and mentioning the head of the column.
Unadjusted Trial Balance.
Adjustment column.
Adjusted trial balance column.
Income statement column.
Retained earnings statement.
Balance sheet.

(5) Prepare the financial statement

The preparation of financial statements involves the process of aggregating accounting information into a standardized set of financials.

(6) Record and post the adjusting entry

Adjusting entries are made in your accounting journals at the end of an accounting period after a trial balance is prepared. The purpose of adjusting entries is to adjust revenues and expenses to the accounting period in which they occurred.

(7) Record and post the closing entry

The closing entries are the journal entry form of the Statement of Retained Earnings. The goal is to make the posted balance of the retained earnings account match what we reported on the statement of retained earnings and start the next period with a zero balance for all temporary accounts.

(8) Prepare the final balance sheet

Preparing the final accounts is the last stage of the accounting cycle. They help in determining the financial position of the business at the end of the financial as well as the accounting year. These include Trading account, Profit and loss account, and Balance sheet.

Question (3):

Solution:

Given,

Profit before taxes = Rs 50 lakhs

Dividend declared per share = Rs2

Price of the share prevalent on stock exchange = Rs 200

Applicable tax rate = 35%

Share capital of company 5 lakh shares of Rs 10 each

Calculate-
Earnings per share
Dividend Pay-out Ratio
Price earnings ratio

Calculation:

Earnings per share = Profit/Share capital,

EPS= 50 × (1−0.35) lakhs / 5 lakhs = 6.5.

Dividend Pay-out Ratio = Dividend per share/Earnings per share,

DPratio = 6.5/2 = 0.31

Price earnings ratio = Price per share/Earnings per share,


PEratio = 200/6.5 = 30.77

Question 3 (b):

Solution:

Given,

Plant acquired = 160000
Claim received for loss of plant in fire = 45500
Unsecured loans given to subsidiaries = 595000
Interest on loan received from subsidiary companies = 72500


Cash flow statement from investing activities of Alpha Creative Ltd for the year ended March31, 2019



Plant acquired (160,000)

Unsecured loans given to subsidiaries (595,000)

Interest on loan received from subsidiary companies 72,500



Net cash from investing activities (682,500)

NOTES

Alpha Creative Ltd had cash outflows for Acquisition of Plant and Loans to subsidaries, and cash inflow from Interest of loan.

Item "Claim received for loss of plant in fire" is not cash flow.


Reference: Ques Answer






Data Science Tools

http://www.wolframalpha.com/
http://www.randomservices.org/
http://onlinestatbook.com

Responsive Web Design - The Viewport

What is The Viewport?

The viewport is the user's visible area of a web page.
The viewport varies with the device and will be smaller on a mobile phone than on a computer screen.

Setting The Viewport

HTML5 introduced a method to let web designers take control over the viewport, through the <meta> tag.
You should include the following <meta> viewport element in all your web pages:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta> viewport element gives the browser instructions on how to control the page's dimensions and scaling.
The partwidth=device-width sets the width of the page to follow the screen-width of the device (which will vary depending on the device).
The initial-scale=1.0 part sets the initial zoom level when the page is first loaded by the browser

Pixel Art Maker

<html>

<head>
    <title>Pixel Art Maker!</title>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Monoton">
    <link rel="stylesheet" href="styles.css">
</head>

<body>
    <h1>Lab: Pixel Art Maker</h1>

    <h2>Choose Grid Size</h2>
    <form id="sizePicker">
        Grid Height:
        <input type="number" id="inputHeight" name="height" min="1" value="1"> Grid Width:
        <input type="number" id="inputWidth" name="width" min="1" value="1">
        <input type="submit" id="submit">
    </form>

    <h2>Pick A Color</h2>
    <input type="color" id="colorPicker">

    <h2>Design Canvas</h2>
    <table id="pixelCanvas"></table>

    <script src="designs.js"></script>
</body>

</html>
...............................css.......................

body {
  text-align: center;
}

h1 {
  font-family: Monoton;
  font-size: 70px;
  margin: 0.2em;
}

h2 {
  margin: 1em 0 0.25em;
}

h2:first-of-type {
  margin-top: 0.5em;
}

table,
tr,
td {
  border: 1px solid black;
}

table {
  border-collapse: collapse;
  margin: 0 auto;
}

tr {
  height: 20px;
}

td {
  width: 20px;
}

input[type="number"] {
  width: 6em;
}

.......js............................
// Select color input
function myColor() {
    var x = document.getElementById("colorPicker");
    x.setAttribute("type", "color");
    document.body.appendChild(x);
}
// Select size input
height = document.getElementById("inputHeight");
width =  document.getElementById("inputWidth");

// When size is submitted by the user, call makeGrid()
makeGrid(height, width);

function makeGrid() {
  // Your code goes here!
  var tbl = document.createElement("table");
  var tblBody = document.createElement("tbody");
  for (var i = 0; i < 2; i++) {
    // creates a table row
    var row = document.createElement("tr");
    for (var j = 0; j < 2; j++) {
      // Create a <td> element and a text node, make the text
      // node the contents of the <td>, and put the <td> at
      // the end of the table row
      var cell = document.createElement("td");
      var cellText = document.createTextNode("cell in row "+i+", column "+j);
      cell.appendChild(cellText);
      row.appendChild(cell);
    }
 
}
}


Portfolio website code

html--------

<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="Mariedyth Gayas | Aspiring Frontend Ninja">
  <meta name="keywords" content="mariedyth gayas, aspiring frontend developer, portfolio samples">
    <title>Portfolio - Mariedyth Gayas</title>
    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="styles.css">
</head>
    <body class="portfolio">
      <div class="portfolio-container">
        <div class="header-box">
          <img class="logo" src="https://i.imgur.com/hBo5ry3.png" alt="mariedyth gayas logo">
        <div class="header-title">
        <h1>MARIEDYTH GAYAS</h1>
        <h2>FRUSTRATED FRONT-END NINJA</h2>
      </div>
    </div>
  </div>
  <div class="portfolio-items">
      <h3>Featured Projects.</h3>
          <img  class ="section-image" src="https://i.imgur.com/DQpAt6W.jpg" alt="developer desk">
      </div>
    <div id="work-sample-container">
      <div class="container">
        <div class="image">
          <img src="https://i.imgur.com/1T5lqxc.png" alt="the yellow cape website">
            <div class="overlay">
              <a href="https://www.theyellowcape.com" target="_blank">
              <div class="text">
                <h4>The Yellow<br>Cape</h4>
            </div>
          </div>
        </div>
      </a>
      <div class="label">
        <p>Nonprofit Organization</P>
        </div>
      </div>
      <div class="container">
        <div class="image">
          <img src="https://i.imgur.com/GswLvgt.jpg" alt="dave-carey-website">
            <div class="overlay">
              <a href ="https://www.davecarey.com" target="_blank">
              <div class="text">
                <h4>Dave<br>Carey</h4>
            </div>
          </div>
        </div>
      </a>
      <div class="label">
        <p>Motivational Speaker</p>
      </div>
      </div>
      <div class="container">
        <div class="image">
          <img src="https://i.imgur.com/8i74Kv6.jpg" alt="ehtac solutions website">
            <div class="overlay">
              <a href="https://www.ehtacrecruitment.com" target="_blank">
                <div class="text">
                  <h4>EHTAC<br>Recruitment</h4>
                </div>
              </div>
            </div>
          </a>
          <div class="label">
            <p>Recruiting Agency</p>
          </div>
        </div>
      </div>
   </body>
</html>


.....csss...............

img, embed, object, video {
  max-width: 100%;
}
body {
  font: "Source Sans Pro, Helvetica Neue, Arial, sans-serif";
  font-size: 18px;
}
h1 {
  font-size: 3vw;
  margin: 0;
  color: #000000;
}
h2 {
  font-size: 1.85vw;
  margin: 0;
}
h3 {
  font-size: 2.5vw;
  margin-bottom: 20px;
  margin-top: 50px;
  margin-left: 15px;
}
h4 {
  font-size: 1.5vw;
}
.portfolio-container {
  display: flex;
  flex-wrap: wrap;
}
.header-box {
  text-align: center;
  display:block;
  width: 100%;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
}
.header-title {
  margin: 0;
}
.logo {
  max-width: 20%;
  height: auto;
}
.section-image {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  background-size: cover;
}
#work-sample-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  text-align: center;
}
.container {
  position: relative;
  max-width: 30%;
  padding: 15px;
}
.image {
  display: inline-block;
  position: relative;
  width: calc(33.33%-10px);
  height: auto;
}
.overlay {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ff4a9e;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform:scale(0);
  transition: .3s ease;
}
.container:hover .overlay {
  transform: scale(1)
}
.text {
  color: #ffffff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
/*most laptops and desktop*/
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .portfolio {background-color: #ffffff;}
  .overlay {background-color: #ffb3ba;}
  .portfolio-container {background-color: #bae1ff;}
}
/*most tablets, iPad (Portrait)*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .portfolio {background-color: #ffffff;}
  .overlay {background-color: #ffdfba;}
  .portfolio-container {background-color: #ffb3ba;}

}
/*most tablets and iPad (landscape)*/
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .overlay {background-color: #ffffba;}
  .portfolio-container {background-color: #bae1ff;}
}
/*most smartphones*/
@media screen and (min-width: 320px) and (max-width: 480px;) {
  body {font-size: 13px;}
  .overlay {background-color: #ffdfba;}
  .portfolio-container {background-color: #bae1ff;}
  .image {display: flex;} {flex-flow: flow-wrap;}
}

...........................................another......................https://codepen.io/MDDeniz/pen/yjWmMR....................................
html...


<head>
  <meta charset="uft-8">
  <title>Portfolio Site</title>
  <link rel="stylesheet" type="text/css"
        href="style.css">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  
</head>

<body>
  
 <!-- Header Section -->
  
 <header class = "bcolor bordercolor">
 <div class="column">
 <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Udacity_Logo.svg/95px-Udacity_Logo.svg.png" alt="logo">  
                                                                                                                          
<!-- Udacity Logo Image Source: Wikipedia -->

</div>
    <div>
    <h1 class="headerright name">Deniz Mehmed</h1>
    <h3 class="headerright title">Front-End Developer</h3>

    </div>
 </header>                         

                                 
<!-- Image Section -->
                                 
<div>
   <img src="https://upload.wikimedia.org/wikipedia/commons/c/c4/Backlit_keyboard.jpg" alt="computer image" width="100%">
                                                                                           <!-- Backlit Keyboard Image Source: Wikipedia -->
                                                                                                                        
  </div>
  
                                                                                           <!-- Footer Section -->
                                                                                           
                                                                                           
  <div class="bcolor bordercolor">
       <h1 class="title">Featured Work</h1>
 </div>       
     
  <footer>  
    
  <div class="container">
    
                                                                                                                                               <h2 class="sitecolor box">Memory Game</h2> 
      
    
      <h2 class="sitecolor box">Feed Reader    Testing</h2>
    
     <h2 class="sitecolor box">Restaurant Reviews</h2>
    
    <p class="box">Sharpen the saw!</p>
    <p class="box">Keep abreast of several web sites at   once.</p> 
   
    <p class="box">For serious<em> FOODies</em>!</p>
      
    </div>
    </div>
    
                                                <!-- Memory Game Image Source: everystockphoto -->                            <div class="container">                                         
 <img class="box" src="http://s3.amazonaws.com/everystockphoto/fspid30/13/38/47/35/wolves-wolf-memorygame-13384735-o.jpg" alt="Memory Game" width=100%>
        
                                                                                          <!-- Feed Reader Image Source: everystockphoto -->                  
   
  

<img class="box" src="http://s3.amazonaws.com/everystockphoto/fspid30/80/93/86/7/snagit-screenshot-twitter-8093867-o.jpg" alt="Feedreader" width=100%> 
                                                                                         
 <!-- Restaurant Reviews Image Source: everystockphoto -->
  
 
<img class="box"
     src="http://s3.amazonaws.com/everystockphoto/fspid/16/71/93/61/square-16719361-o.jpg" alt="Resturant Reviews" width=100%>
                                                                                

  
</div>
                                                                                     </footer>
  
</body>

................css.........

.headerright{
  text-align: right;
}

.bcolor{
  background-color: #add8e6;
}

.bordercolor {
        border-width: 3px;
        border-style: solid;
        border-color: #000080;
    }

.logoleft{
  text-align: left;
}
.name {
  color: #808000;
}
.title {
  color: #ff4500;
 }

.container {
  display: flex;
  flex-wrap: wrap;

 }

.box {
  
  width: 33.3%;
  
}

.memory{width: 33.33%; order: 1;}
.feeder{width: 33.33%; order: 2;}
.restaurant{width: 33.33%; order: 3;}

.sitecolor {
  color: #6a5acd;
}
.column {
    float: left;
    width: 33.33%;
}
.columnright {
    float: right;
    width: 33.33%;
}

Blog commenting site list



List of all On Page and Off Page Optimization activities to rank websites high on search engines.

List of all On Page and Off Page Optimization activities to rank websites high on search engines.

On page optimization:

Website SEO Analysis
Keyword competition & Analysis
Title tags
Meta Tags Optimization
Meta Description
H1 Tags
ALT Tags
URL Structure
Internal Linking
Original, Effective & Keyword Reach Content
Sitemaps
Robots.txt Creation
Blog installation & posting
W3C Validation
Track of target keywords
Webmaster Accounts Setup on Google, Yahoo, and Bing
Canonical URL Check and Setup
Images and their alt attributes
Creating Goals in Google Analytics
Generating Traffic Analysis Reports


Off Page Optimization:

Directory submission
Classified Submission
Social bookmarking
Article Submission
Press Release Submission
Blog submission
Forum posting
Link Building
Do Follow Blog Commenting
Business Reviews
Local Listings & Yellow Pages
RSS feed submission
Infographics
Content Curation Submissions
Css gallery Submissions
Search Engine Submissions
Video Submissions
Pinging Submissions
Web 2.0 Submissions
Document Sharing
Photo Sharing
Social Media Promotion in Social Networking Sites
Search Engines Ranking Positions (SERP) Check
Yahoo Answers
Blog Directory Submission


SEO Tools :

Google Keyword Planner
Google webmaster tool
Google Analytics



..............................................................................................................

Digital marketing professional with 1+ years of experience in the following areas:

• Search Engine Optimization (SEO) - optimization and promotion of websites applying the best techniques to achieve top rankings in search engines. 

• Local SEO - Optimization of local businesses/websites for search engines rankings. 

• Strategy & Planning - SEO/SEM strategy for websites to increase traffic, improve reach & generate leads/sales. 

• Digital Analytics (Omniture/Site Catalyst, Google Analytics) - Analysis and reporting of website traffic, user behavior, referral/campaign effectiveness against key metrics. 

• Social media marketing - organic and paid promotion on Facebook and other social media channels. 

• Search engine marketing (SEM) - Creating and managing PPC campaigns and display advertising through Google Adwords. 

Specialties: SEO, Web Analytics - Google Analytics, Omniture, Site Catalyst, SEM - Google Adwords, PPC, Web Marketing, Web Designing (XML, HTML, JavaScript, usability, CSS, WYSIWYG layout tools), Mobile SEO, Local SEO


..................................................................................................

Wordpress Web Development, Web Design & Development, Search Engine Optimization , Open Source Development, Web Re-design & Re-development & E-Commerce Solution.

We works on your marketing goals to deliver performance based results. We are all about Thinking, ideas, actions , Performance, & results.

1000 High PR directory submission list

http://handtucher.net
http://hbnu.org/
http://omcommunication.net/
http://nodahan.com
http://link-minded.com/
http://www.technically-speaking.org
http://zebralinks.com/
http://www.promotebusinessdirectory.com
http://www.adverttree.com
http://www.dizila.com
http://www.usgeo.org
http://www.ec3d.com
http://www.royallinkup.com/
http://www.abovealldirectory.com
https://www.sound-directory.com/
http://bestseodirectory.net/
http://www.ec123.net
http://www.alabamaindex.com/
http://www.idahoindex.com
http://www.bobresources.com
http://www.brestlinks.com
http://www.xtians.com/
http://www.realplayerlive.com
http://www.evolvingcritic.com
http://www.ecctrade.com
http://www.rowma.com
https://www.1websdirectory.com
http://www.generalbusinesswebdirectory.com
http://www.pakranks.com
http://www.ewebresource.com/
http://www.happal.com
http://www.momsdirectory.net
http://www.seanwise.com
http://www.balti.biz
https://www.thedirectorylistings.org/
https://web-directory-sites.org
https://www.directory-listingsnow.org
http://www.list-listings.org
http://www.linkdirectorylistings.org
http://www.freedirectory-listings.org
http://www.generalshoppingdirectory.com
http://www.latesttopdirectory.org
http://www.moderntopdirectory.org
http://www.internetdirectory1.org
https://www.dondir.com
http://www.business-web-directorysite.org/
http://www.netdirectorylistings.org
http://www.generaldirectorylistings.org
http://www.generaldirectorylistings.org
http://www.marketinginternetdirectory.com
http://www.tkseo.net/
http://www.lemon-directory.com/
http://field-by.com
http://www.10directory.com/
http://www.stagdirectory.com/
http://www.jseo.biz
http://www.linkresell.com
http://www.addurltolinkdirectory.com/
http://www.hamsterdirectory.com/
http://www.d1mm.net
http://www.textlinkdirectory.com
http://www.addbusiness.net/
http://www.alligatordirectory.com/
http://www.cafeatlantico.info/
http://www.pelicandirectory.com/
http://www.seodirectoryonline.org/
http://www.w3catalog.com
http://www.usalistingdirectory.com
http://weddo.info/
http://zexro.info/
http://mugro.info/
http://www.ananar.com
http://www.addlinkzfree.com
http://www.nonar.com
http://www.bedwan.com/
http://www.blpdirectory.info/
http://www.omcommunication.net
http://www.webdirectory1.biz
http://www.mydannyseo.com
http://www.directory5.org/
http://www.targetsviews.com
http://www.directory3.org/
http://www.postfreedirectory.com/
http://www.linkdir4u.com/
http://www.tgp-internet.com
http://www.submit2ukdirectory.com
http://www.all-products-services.com/
http://wldirectory.com
https://www.mddir.com/
http://ruce.org/
https://morefunz.com
http://www.herlight.com
http://www.visionwebdirectory.com/
http://www.bestseodirectory.net
http://top1directory.com
http://www.orangelinker.com
http://www.info-listings.com
https://somuch.com
http://www.seolinkcloud.org/
http://www.submiturlwebsitestore.com
http://www.operationuplink.org
http://linkingdirectly.com
http://www.sites-plus.com
http://www.ranaf.com
http://www.qualityinternetdirectory.com/
http://www.robolinks.com
http://approvalchances.com/
http://www.open-directory.co.uk
http://www.go2net.co.uk/
http://www.poordirectory.com/
http://www.craigslistdirectory.net/
http://www.ask-directory.com/
http://www.elojo.info
http://www.businesslinkdirectory.biz/
http://submitlink.com.ar/
http://www.rajaf.com
https://thalesdirectory.com/
https://thalesdirectory.com/
http://www.domainnamesseo.com/
http://networkeddirectory.org/
http://www.uniquesubmitter.com/
http://www.linkedin-directory.com/
http://cesdirectory.com/
http://www.victechsupport.com
http://www.abstractdirectory.org/
http://www.orbitaldirectory.com/
http://www.ukinternetdirectory.net
http://www.fileindex.net
http://www.sitepromotiondirectory.com/
http://www.submissionwebdirectory.com/
http://www.allstatesusadirectory.com
http://free-link-directory.info
http://www.thelinkssys.com
http://www.domico.info
http://www.firmpay.com
http://www.overlandagency.com
http://www.weblink-directory.com/
http://www.directorylinkservice.com/
http://www.tagshub.com/
http://www.rubydir.com/
http://www.cyandir.com/
http://www.freeprwebdirectory.com
http://www.beegdirectory.com/
http://www.suggest-url.net
http://generalwebdirectory.org/
http://www.indigodir.com/
http://d-i-r.com/
http://www.marketingwebdirectory.com
http://www.directory-listingssite.org
http://www.h-log.com
http://www.directory2010.info
http://www.pr3plus.com/
http://www.jeitacave.net
http://www.reliancedir.com/
http://www.onpaco.com/
http://www.alistdirectory.com/
http://www.lavaseek.net
http://www.yawd.org
http://www.dealdirectory.com
http://www.cafelaunch.com/
http://www.purpledir.com
http://www.browndir.com/
http://www.orangedir.com
http://www.graydir.com/
http://www.ampledirectory.com/
http://www.ayogi.com/
http://www.webglance.com
http://www.tfwd.org/
http://www.directory7.biz
http://www.seoway.info
http://www.directoryws.com
http://www.webdirectory.co.in
http://www.gainweb.org/
https://www.zopso.com/
http://www.247webdirectory.com
http://www.alive-directory.com/

Digtal Marketing Study Classes

https://cognitiveclass.ai/learn/data-science/............data science ibm .................................................................