Saturday, September 17, 2022

Blinked Prgram in HTML

 <html>
<head>
<title>Blinked Program</title>
<style>
p{animation:blinking 1.5s infinite;}
@keyframes blinking {
0% {color:red;}
}
</style>
<body>
<h1> <U>Computer </h1></U>
<marquee behavior="alternate"><p> Anonymous System </p></marquee>
<h2><u>AI</h2></u>
<marquee behavior="alternate"><p>A Biggest Game changer Technology</p></marquee>
</body>
</html>


Output

 






Thursday, July 21, 2022



FINANCIAL ACCOUNTING PRACTICAL


Time Allowed : 1 Hour maximum marks:20

The company details are as follow ;

  1. Name – your name ( College Roll No)

  2. Address : Your Name ,Your Phone and mobile No.

  3. Currency symbol:Rs



Enter the following transaction of the company in Tally and show various reports

  • All payment to creditors and receipt from debtors is done through State Bank pf Jaipur.

  • Any other payment and receipt is done through Oriental Bank of Commerce or cash.

Balance sheet as on 31st March, 2020

Liabilities

Amount

Assets

Amount

Capital

6,00,000

Personal Computer

42,000

Reserves

25,000

Plant and Machinery

2,00,000

Profit and Loss Account

50,000

Furniture

20,000

Secured loan

25,000

Stock

1,00,000

10% Debentures

50,000

Debtors

1,80,000

Loan from ABC Ltd

45,000

Bills Receivables

50,000

Bills Payable

5,000

Oriental Bank of Commerce

1,65,000

Sundry Creditors

1,85,000

State Bank Of Jaipur

1,41,960

Salaries outstanding

5,000

Cash in Hand

91,040


9,90,000


9,90,000


  • The company deals in the following stocks:

Name of the items

Group

Quality

Rate

Opening stock Value

Electric bulbs

Lights

50 pcs

100

5,000

LED Lights

Lights

150 pcs

180

27,000

Coolers

Cooling Products

10 pcs

400

4,000

Ceiling fans

Cooling Products

80 pcs

800

64,000

Total




1,00,000


  • The lists of Debtors and Creditor are as follows:

Debtors

AMOUNT(Rs)

Creditors

Amount(Rs)

Arvind    

75,000

M/s Kapoor Brothers

1,10,000

Uday

60,000

Ramesh Brothers

25,000

Madan

27,000

Rakesh &Co.

30,000

Kamlesh

18,000

Nitin

20,000


1,80,000


1,85,000


  • The following transactions took place during the year 2020-2021:

sr.No

Transaction

Amount(Rs)

1

Cash deposited in Sbj

10,000

2

Paid carriage inwards

4,400

3

Purchased 40 LED Lights from Rakesh & Co. for list price Rs 180 each


4

Rakesh &Co. allows trade discount@10%


5

Sales to Uday of 50 electric bulbs.

7,500

6

10 electic bulbs returned by Uday


7

Uday paid by cheque in full settlement for current year transcations.

5,500

8

Interest paid on 10% Debentures.


9

Depreciate plant and machinery , having a useful life of 10 years.



You are required to:-

  1. Create a company as per details given above

  2. Create appropriate groups and ledger Accounts.

  3. Enter the transactions as given selecting appropriate voucher type.

  4. Display the following statements in details view:


  1. Profit and loss Accounts

  2. Balance sheet

  3. Day Book

  4. Ratio Analysis



 

Monday, June 27, 2022

Color table New

<!DOCTYPE html>
<html>
<title> W3.CSS </title>
<head>
<link rel="stylesheet" href="w3.css">
</head>
<body>
<div class="w3-container w3-teal w3-hover-green">   
<h2><b> <i> <u> Colored table heading </h2> </u> </i> </b>
</div>
<table class="w3-table w3-light-blue w3-border w3-striped">
<thead>
<tr class="w3-blue">
<th>First Name </th> <th> Last Name </th> <th> Marks </th> </tr>
</thead>
<tr>
<td> Ashok </td> <td> Singal </td> <td> 93 </td> </tr>
<tr>
<td> John </td> <td> William </td> <td> 95 </td> </tr>
<tr>
<td> Rajat </td> <td> Pathak </td> <td> 96 </td> </tr>
<tr>
<td> Nishil </td> <td> Tiwari </td> <td> 97 </td> </tr>
</table>
</body>
</html>     

 


 



Sunday, June 26, 2022

Comments in JavaScript

 <html>
<head>
<script>
/* it is single as well multiline comment */
document.write ("I am in js");
</script>
</head>
<body>
<p> Welcome to the world of javascript </p>
</body>
</html>    

 


 

Thursday, June 23, 2022

Angular JS Expression

 <html>
<head>
    <script src="ajax.js"></script>
</head>
<body>
    <h1>angular.js expression<h1>
        <div ng-app>
            <p>additin:9+5={{9+5}}</p><br/>
            <p>subtraction:5-5={{5-5}}</p><br/>
            <p>multiplication:5*5={{5*5}}</p><br/>
            <p>division:5/5={{5/5}}
        </div>
</body>
</html>

 

 


 

Sunday, June 19, 2022

Hexadecimal colors in CSS

 <html>
<body>
<h1>Specify colors using HEX values</h1>
<h2 style="background-color:#ff0000;">#ff0000</h2>
<h2 style="background-color:#0000ff;">#0000ff</h2>
<h2 style="background-color:#3cb371;">#3cb371</h2>
<h2 style="background-color:#ee82ee;">#ee82ee</h2>
<h2 style="background-color:#ffa500;">#ffa500</h2>
<h2 style="background-color:#6a5acd;">#6a5acd</h2>
</body>
</html>

 

 


 

Saturday, June 18, 2022

Rounded panel in CSS framework

 <!doctype html>
<head>
<title>w3.css</title>
</head>
<link rel="stylesheet" href="w3.css">
<body>
<div class="w3-panel w3-teal w3-round-xlarge">
<h3>rounded panel</h3>
<p> this is a rounded panel</p>
</div>
</body>
</html>

 




MCQ QUESTIONS

Loading…