anyswer without asking anyone

Status
Not open for further replies.

reddragon

In the zone
ok I just want to check how much you are aware of 'non tech savvy things'

I know u can tell me whats the price of E6600 core 2 duo processor or Liteon dvd writer , . I am sure u know whats the price of BSNL dataone plans , or price of Apple ipod 30 gb , or k750i or smokin-joes' pepeeroni pizza . I know u know when Crysis will be realeased .



tell me without asking anyone ( parents specially )

whats the price of 1 kg fresh potato ?:idea:





teasing en?
 

iMav

The Devil's Advocate
should be around 12 here in mumbai not sure been some time since i shopped for vegetables
 

rahul.ims

Right off the assembly line
gx_saurav said:
Rs 9/kg in lucknow

Onion is Rs 11/kg

Parwal is Rs 6/kg

I just came from the market :D

gr8 man...u seems to be a very non-tech savvy too...
have a pretty gud knowledge...he he he :lol:
its 16 here in b'lore
 

gxsaurav

You gave been GXified
The prices I gave was from a place knows as Hindi speaking people as "Galla mandi" & English speaking people as "Commodity Market". :D

There the farmers bring there stuff in trucks etc & sale to traders, & from this place it is distributed to all over Lucknow. It is just 2 KM away from my home so we buy from there, & if required we buy from the occasional "thela" here.

Where do u guys buy veggies from usually?
 

zyberboy

dá ûnrêäl Kiñg
reddragon said:
ok I just want to check how much you are aware of 'non tech savvy things'
tell me without asking anyone ( parents specially )

whats the price of 1 kg fresh potato ?:idea:
teasing en?
lol...u have seen the film "vinodayathra" isn't?..but ur location is mumbai

I think less than 10 rs here in kerala...not sure
 

rahul.ims

Right off the assembly line
hey its very true that b'lore is really expensive for nething u go 4.
usually we buy from branded veg stores only but sumtimes v catch up with the regular pedellars('thela'), as v all frnds r staying together so v don't bother to go out till the store to buy on or 2 kgs.....
 

RCuber

The Mighty Unkel!!!
Staff member
Hooo this is a really tough one. Will try my best to answer it.

Code:
Public Class Veggi
    Public Quantity As Double
    Public Rate As Double

    Public ReadOnly Property Cost() As Double
        Get
            Return Quantity * Rate
        End Get
    End Property

    Sub Main()
        Dim Potato As New Veggi
        Potato.Quantity = 1 'KG
        Potato.Rate = 10
        MessageBox.Show("The Cost of " & Potato.Quantity & " KG of Potato @ Rs." & _
                        Potato.Rate & "/KG = " & Potato.Cost, "Total Cost", _
                        MessageBoxButtons.OK, MessageBoxIcon.Information)
    End Sub

End Class

Pls let me know if the above calculates the exact cost of 1 Kilo of potato.
 

rahul.ims

Right off the assembly line
charangk said:
Hooo this is a really tough one. Will try my best to answer it.

Code:
Public Class Veggi
    Public Quantity As Double
    Public Rate As Double
 
    Public ReadOnly Property Cost() As Double
        Get
            Return Quantity * Rate
        End Get
    End Property
 
    Sub Main()
        Dim Potato As New Veggi
        Potato.Quantity = 1 'KG
        Potato.Rate = 10
        MessageBox.Show("The Cost of " & Potato.Quantity & " KG of Potato @ Rs." & _
                        Potato.Rate & "/KG = " & Potato.Cost, "Total Cost", _
                        MessageBoxButtons.OK, MessageBoxIcon.Information)
    End Sub
 
End Class

Pls let me know if the above calculates the exact cost of 1 Kilo of potato.

hey did u execute the code.....:shock: i'm waiting 4 d result, BTW where r u executing the code...as v all want the place specific result....is ur compiler compatible with dat..:rolleyes:
 

RCuber

The Mighty Unkel!!!
Staff member
It compiled fine but its still in BETA Stage ;) , have to send it to QA for finding bugs.

EDIT: Ok the next beta released :D

Here is the Code. Added Windows Form and textboxes. Attached Screen Shot.

Code:
Public Class frmVeggi
    Inherits System.Windows.Forms.Form

    Private Sub btnCalculate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculate.Click
        Dim Potato As New Veggi
        Potato.Quantity = Convert.ToDouble(txtQuantity.Text)  'KG
        Potato.Rate = Convert.ToDouble(txtRate.Text)
        MessageBox.Show("The Cost of " & Potato.Quantity & " KG of Potato @ Rs." & _
                        Potato.Rate & "/KG = " & Potato.Cost, "Total Cost", _
                        MessageBoxButtons.OK, MessageBoxIcon.Information)
    End Sub

    Public Class Veggi
        Public Quantity As Double
        Public Rate As Double

        Public ReadOnly Property Cost() As Double
            Get
                Return Quantity * Rate
            End Get
        End Property
    End Class

End Class
 
Last edited:

fun2sh

Pawned!... Beyond GODLIKE
16rs in BANGALORE wen i was in there few days ago. now me in MOTIHARI. no idea abt here coz i hav not been to market til yet
 
Status
Not open for further replies.
Top Bottom