rss
twitter
    Find out what You Want :)
Home    Downloads    Corner    Market    News sites    About Us

Saturday, January 8

MGT 101 Assignment#2 Another Solution


Assignment # 2
Financial Accounting (MGT 101)


QUESTION: 1

1. Calculate new provision.

Debtors
205,000
Write off
5000
Debtors – Write off Bad debts
205,000 – 5000 = 200,000

New Provision  
(200,000 * 5/100)
10,000

2. Calculate the amount of Provision for doubtful debts to be appeared in Profit and
Loss Account.

Bad debts
8,000
Add : Write off
5,000

13,000
Add : New Provision
10,000

23,000
Less : old Provision
6,000
Provision for doubtful debt
17,000

3. Calculate the amount of Sundry debtors to be shown in Balance Sheet.

Debtors
205,000
Less : Write off bad debts
5,000

200,000
Less : New Provision
10,000
Sundry debtors in balance sheet
190,000

QUESTION: 2
Mr. Ali
For the year ended on 30 June 2010
(Debtors Control Account)

Date
No
Narration
Debit

Date
No
Narration
Credit



Opening balance
25,000


Discount allowed
2,000


Credit sale
50,000


Receipts from debtors
35,000







Bad debts
10,000






Sales return
5,000






Closing balance
23,000


Total
75,000


Total
75,000

Thursday, January 6

Eng 101 GDB


English101 -GDB 
A Constant Challenge to Our National Pride and Sense of Identity”
Write your own views about the topic.80-100 words.

Solution : 
Effectively, English has become the language of power in Pakistan. If you want a good job, fluency (if not accuracy) in English is essential. Young graduates may not be able to write grammatically, but if they can manage anasal twang, they will have placed one foot on the bottom rung of the corporate ladder.

Even to sell products and services, the use of English appears necessary. A jingle on TV currently promoting a cell phone company proves my point: ‘Hamari sub ki voice hai! Yeh hi smart choice hai!Talk-shawk! Talk-Shawk!’
The compulsory Urdu classes at school are never taken seriously,with the teacher often being the least respected member of the faculty.

Despite all this striving for fluency, the standards keep falling. I have seen many bright young people struggling to cope in an institution where English is the medium of instruction
.

Wednesday, January 5

CS302 Idea Solution


Cs302 idea solution



Question#1:

Solution:
The characteristic equation of the JK flip-flop is:
Q_{next} = J\overline Q + \overline KQ
and the corresponding truth table is:
Truth table for JK flip_flop_____________________________
J
K
Qnext
Comment
0
0
Qprev
hold state
0
1
0
reset
1
0
1
set
1
1
Qprev
toggle

Question#2:

Provide to-the-point (max 4 to 5 lines) answer to the following:
 What is the main difference between a gated S-R latch and an edge-triggered S-R flip-flop?


 Solution:

There is no real difference.
1- A latch only uses one output
whereas a flip-flop has two.
2-In a latch one of the inputs
is used as a set.
The second is used as a reset.
3-In a flip-flop the first input sets the first output and resets the
second. The second input resets the first output and sets
the second.

4-A number os flipflops are often used as a part of a (shift)
register. Then both outputs are used and the shift is made
by a clockpulse.

5- A flip-flop (and thus a latch) can be edge triggered or
level-triggered. This depends on the internal structure of
the IC.

Q#3
Solution:
 How many flip-flops are required to produce a divide-by-32 device?
Solution:

32=2^5 => 5 bit longNumber divisible is 2*5=10 bit longQuotient & Remainder both are 5 bit eachso total 25 flip-flops at least (+ may be some other auxilliary register also)

CS 101 Assignment # 3


CS101 Assignment#3
100% Correct


<html>
<head>
<title></title>
<script language="javascript">
function gpa_check()
{
            if(window.document.frm.gpa.value=="")
            {
                        window.document.all.frm.gpa.style.background = 'pink';
                        alert("Please enter GPA");
                        window.document.all.frm.gpa.style.background = 'white';
                        window.document.frm.gpa.focus();
                        return false;
            }
            if(isNaN(window.document.frm.gpa.value))
            {
                        window.document.all.frm.gpa.style.background = 'red';
                        alert("Please enter numeric value only");
                        window.document.all.frm.gpa.style.background = 'white';
                        window.document.frm.gpa.focus();
                        return false;
            }
            if((window.document.frm.gpa.value<1) || (window.document.frm.gpa.value>4))
            {
                        window.document.all.frm.gpa.style.background = 'lightskyblue';
                        alert("Numeric value must be between 1 and 4");
                        window.document.all.frm.gpa.style.background = 'white';
                        window.document.frm.gpa.focus();
                        return false;
            }
            if((window.document.frm.gpa.value<=1) || (window.document.frm.gpa.value<2))
            {
                        window.document.all.frm.gpa.style.background = 'lime';
                        alert("Fair :: You got D grade");
                        window.document.frm.gpa.focus();
                        return true;
            }
            if((window.document.frm.gpa.value<=2) || (window.document.frm.gpa.value<3))
            {
                        window.document.all.frm.gpa.style.background = 'lime';
                        alert("Good :: You got C grade");
                        window.document.frm.gpa.focus();
                        return true;
            }
            if((window.document.frm.gpa.value<=3) || (window.document.frm.gpa.value<4))
            {
                        window.document.all.frm.gpa.style.background = 'lime';
                        alert("Very Good :: You got B grade");
                        window.document.frm.gpa.focus();
                        return true;
            }
            if(window.document.frm.gpa.value==4)
            {
                        window.document.all.frm.gpa.style.background = 'lime';
                        alert("Excellent :: You got A grade");
                        window.document.frm.gpa.focus();
                        return true;
            }
}
</script>
</head>
<body>
<form action="http://www.vu.edu.pk" method="post" name="frm">
<table cellpadding="0" cellspacing="0" border="0" bgcolor="#CCCCCC" width="800" align="center">
            <tr><td height="20"></td></tr>
            <tr>
                        <td align="center"><h2>Roll No :: Assignment 3 (CS101)</h2></td>

            </tr>
            <tr>
                        <td align="center">
                                    <table cellpadding="0" cellspacing="0" border="1" width="400" align="center">
                                                <tr>
                                                  <td width="66" height="50" align="center" bgcolor="#CCCCCC"><strong>GPA</strong></td>
                                                  <td bgcolor="#CCCCCC"> &nbsp;<input name="gpa" type="text" size="30" /></td>
                                                </tr>

                                                <tr>
                                                 <td height="50" bgcolor="#CCCCCC">&nbsp;</td>
                                                 <td bgcolor="#CCCCCC"> &nbsp;<input type="submit" value="Grade" onClick="return gpa_check();" /></td>
                                                </tr>
                                    </table>
                        </td>
            </tr>
            <tr><td height="20"></td></tr>

</table>
</form>
</body>
</html>


Discus Your Study Problems Here

Is This Blog Is Useful For You?

Face Book Fans