forum archives  :   Archive home  |   Forum home  |

Softwares & Hardwares

  »

Formula Quiz

   ( >> )
shahid_fss - 28 Mar 2006, 05:24 pm
Formula Quiz is the new software I made and finished today. It took three days including thinking for ideas and taking tests. Atlast It successfully functioned.
Idea is taken from MCQs or you can say it is also a kind of MCQ test. Very intellegent and power full formula builder and solver.
Its main feature is that each of its question will be different from previous one :D If you will attempt 10000 questions all will be different.

It works in 3 steps
1- You enter a formula i.e X = Y + Z (Every formula you enter is saved forever in database, it will be available in tests and also for other formulas)
2- It will ask you
3- It will provide you solution

It has the capability of solving complex formulas having more then one unknown items i.e
X=?
Y=?
Z=5
XYZ = X * Y * Z

Here only Z is known but it will find out how to calculate X and Y.
For example X = Z*3 and Y = Z*2 and both formulas are available in database.
First it will calculate X, then Y and when values of both X and Y are available it will calculate XYZ.
It means to calculate XYZ following formulas should be added in database
XYZ =X*Y*Z
X=Z*2
Y=Z*3

Take a look at these pictures:

Image

Image

Image

Image

Image

HERE ARE NEW IMAGES [AFTER SOME MODIFICATION]

Image

Image

Image

Image

Image

Image

Image

How is the idea???????????????
BeijingGuy - 29 Mar 2006, 12:49 am
Hilarious work shahid_fss.
Good idea but i am little confused :?
Are you doing ACCA or Programming job? :roll:
Dude if you have good skills they why you don't become full time programmer it is perfect profession my elder sister is a programmer and working in international software company and her salary is more than an accountant (200%).

btw i like your idea would we able to download it :P
Mariam - 29 Mar 2006, 11:22 am
Are you making it for ACCA students ?
shahid_fss - 29 Mar 2006, 06:12 pm
QUOTE:
Hilarious work shahid_fss.
Good idea but i am little confused :?
Are you doing ACCA or Programming job? :roll:
Dude if you have good skills they why you don't become full time programmer it is perfect profession my elder sister is a programmer and working in international software company and her salary is more than an accountant (200%).

btw i like your idea would we able to download it :P


Yes I will perform some other tests and prepair full installable software and it will be downloadable.
First thing is to make it work on all machines.

I am an ACCA Student but have a great interest in PCs.Programming is my interest (just for fun) but now I am in possition that I can use it in accounting. That is an extra skill with me know. (money means nothing to me so i can't leave acca just for money)
shahid_fss - 29 Mar 2006, 06:19 pm
QUOTE:
Are you making it for ACCA students ?


I am making it for my self just for fun :D

But it will be available on site to downlaod for every body.
paki girl - 31 Mar 2006, 02:17 am
You are most intelliegent member of the foum
You have wonderful images skills and now you said you are a programmer and doing acca .. (y)
Can i become programmer.... (just kidding) :lol:
ACCA - 01 Apr 2006, 01:28 am
Nice project (y)
Which language do you use for writing softwares?
Visual Basic or .Net ?
CaSaNoVa - 01 Apr 2006, 05:59 am
You are brilliant dude :P
rluitel - 01 Apr 2006, 07:46 am
Good job shahid... !! :thumb:

You and ACCA are the two most active member, who will keep this forum alive forever...

n hope we will get chance to use your program soon ..........
chapper - 01 Apr 2006, 04:50 pm
Though i didn't fully understand what it does :?
But looks some nice software and will be helpful for most of us.
Raincoat - 01 Apr 2006, 06:44 pm
wow nice work keep it going .. :)

QUOTE:
You and ACCA are the two most active member, who will keep this forum alive forever...


You are top 7th poster of this forum :)
Fu - 02 Apr 2006, 10:31 am
(y)(y)(y)(y)(y)(y)(y) Shahid Latif :P

QUOTE:
You and ACCA are the two most active member, who will keep this forum alive forever...


Grrrrrr you missed my name . :o
shahid_fss - 06 Apr 2006, 12:17 am
I haven't been on net for last 5 or 6 days and didn't used PC as well.
its nice to be with you people again.
First of all thanks for your appreciation.
2nd I have made some changes (xp look, tool bar, etc) and you can view new impages.

And it is now available at http://shahid-fss.netfirms.com/formula_quiz
And with reference to ACCA's post, as it is .net based software so your OS should be updated with .netframework (1.1 or later). If not then its available in your XP CD.

QUOTE:
Nice project (y)
Which language do you use for writing softwares?
Visual Basic or .Net ?


Thanks ACCA and you guessed right its VB.NET (not VB or .NET), I use Visual Studio .NET so that I can use any language at any time (if somewhere VB is not working).[/url]
shahid_fss - 06 Apr 2006, 12:52 pm
I used to work in VB 6 before .NET and now I work in VB.Net.
But now I am planing to purchase Visual Studio 2005 (if it is different from VS.NET)
I hope they will add more power to VB.
I have never use Java.

================================================================================

Here is the code (IO - file loading function) from my software.

Structure Formula
Dim No As String
Dim Subjetc As String
Dim Chapter As String
Dim Topic As String
Dim Name As String
Dim Formula As String
End Structure

Private Sub LoadFormulas()
Try
Dim intTotal As Integer 'Total Items
Dim FMLA As Formula 'Load structure
DsFormulas1.Formula.Clear() 'Clear dataset
intTotal = (FileSystem.FileLen(strFileAddress & strFileFName) / 1000) + 1
FileOpen(1, strFileAddress & strFileFName, OpenMode.Random, , , 1000)
Dim i As Integer
For i = 1 To intTotal
FileGet(1, FMLA, i)
DsFormulas1.Formula.AddFormulaRow(FMLA.No, FMLA.Subjetc, FMLA.Chapter, FMLA.Topic, FMLA.Name, FMLA.Formula)
Next
FileClose(1)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub

================================================================================
ACCA - 06 Apr 2006, 12:07 pm
:P Actually i meant
VB => Visual Basic 6
.Net => All included (Vb.net,C#.J#)

Have you tried j# language in vs.net ?
Its my favorite language because Microsoft has reall upgraded J++ into heaven by making available all SUN (java) libraries.
I can use following code in both J# and Java without any modification
class Test {
public static void main(String[] args) {
System.out.println("J# and Java same code");
}}
Nisar - 07 Apr 2006, 07:21 am
Well done Shahid and ACCA :P you both guys look very competent in accountancy and computers :)
ACCA due to your interest we are also getting good environment and learnings about computers and IT otherwise we have very less chances especially for accounts students.
wewet0664586 - 30 Nov 2008, 06:51 pm
i always saw a guy selling runescape money .but dont know if my account will be banned when i bought?
wewet0664586 - 01 Dec 2008, 08:56 pm
aiji57
gangguo210
agenting56
baxi59
wulagui77
lyjg1123 - 01 Dec 2008, 09:57 pm
一、伏安特性测试仪概 述
伏安特性测试仪是我公司在原HN-8手动型CT综合测试仪的基础上开发的新一代智能型综合测试仪。本产品是我公司在经过大量的市场调研、严格的现场测试、权威部门鉴定认证之后投放市场的,伏安特性测试仪装置采用多处理器架构和先进的制造工艺保证了产品性能稳定可靠,功能完备,自动化程度高,测试效率高,在国内处于领先水平。本仪器重量轻,携带方便,可轻松完成多项试验,是一台性价比既优的多功能实验测试仪。
伏安特性测试仪功能和特点:
2.伏安特性测试仪自动型测试仪
仅需设定最高输出电压、最大输出电流和记录步长,伏安特性测试仪装置将全自动的将伏安特性曲线测试并描绘出来,省去了手动调压、人工测试及数据处理等工作,极大的提高了测试效率,操作简单、快捷。