picture picture

Lyrics of Marathi song – Ha Chandra tujhyasathi (हा चंद्र तुझ्यासाठी)

अल्बम : बेधुंद
गायक : स्वप्निल बांदोडकर

bedhund - swapnil bandodkar

हा चंद्र तुझ्यासाठी , ही रात तुझ्यासाठी ,
……..हा रास हि तर्र्यांची…. गगनात तुझ्यासाठी!!
हा चंद्र तुझ्यासाठी , ही रात तुझ्यासाठी ,
……..हा रास हि तर्र्यांची…. गगनात तुझ्यासाठी!!

कैभात अश्यावेळी, मज याद तुझी आली……
ये नाआआआआ आ …..

XML Interview questions & answers

1) What is XML?
The Extensible Markup Language (XML) is a general-purpose specification for creating custom markup languages.[1] It is classified as an extensible language, because it allows the user to define the mark-up elements. XML’s purpose is to aid information systems in sharing structured data.

2) What is the version information in XML?
The root element can be preceded by an optional XML declaration element stating what XML version is in use (normally 1.0); it might also contain character encoding and external dependencies information.

3) What is ROOT element in XML?
XML documents must contain one element that is the parent of all other elements. This element is called the root element.

February 5, 2012 Kavita / Poems, Shayari 0 Comments

दिलों में तुम अपनी…

दिलों में तुम अपनी  बेताबियाँ लेके चल रहे हो
तो ज़िंदा हो तुमLife - Zindagi

नज़र में ख्वाबों की
बिजलियाँ लेके चल रहे हो
तो ज़िंदा हो तुम

हवा के झोकोन के जैसे
आज़ाद रहनो सीखो
तुम एक दरिया के जैसे
लहरों में बहना सीखो
हर एक लम्हे से तुम मिलो
खोले अपनी बाहें
हर एक पल एक नया समा
देखें यह निगहाएँ

January 29, 2012 Kavita / Poems 5 Comments

कंटाळा…

आज मला खच्चून आलाय कंटाळा
नको वाटतो जिव्हाळा अन
हा माणसांचा गोतावळा

आज मला खच्चून आलाय कंटाळा……… १.

कधी वाटते झटकून टाकावी
अंगावर चढलेली संस्काराची पुट
पण त्यान झालाय कोणाच आजवर भल? म्हणूनच……

आज मला खच्चून आलाय कंटाळा………२.

मनातला गोंधळ आणि गोंधळून गेलेले शब्द
गुंता ह्यांचा सोडवायचाय पण
त्याला व्हायचंच नाहीये मोकळ, मरू दे त्याला ….

आज मला खच्चून आलाय कंटाळा………३.

दुनियादारी शिकवणारी प्रवचन आणि
आशा दाखवणार सार तत्वज्ञान
करू काय त्याच….घालू लोणच? छे साला…

आज मला खच्चून आलाय कंटाळा………४.

ऋतू आले अन गेले, सारेच्या सारे एकसारखे….
पावसाळा काय अन काय उन्हाळा
कुठे मिळेना जीवाला गारवा, मरू दे ना….

आज मला खच्चून आलाय कंटाळा………५.

कसा जाईल हो हा कंटाळा?
काय करू काय…उपाय सांगा!
विचार तरी किती करावा…कारण त्याचाही,
आता मला खच्चून आलाय कंटाळा………..६

— शिरीन आरश

MySQL Interview Questions – Part 3

67) Explain Database Basics
Databases are managed by a relational database management system (RDBMS). An RDBMS supports a database language to create and delete databases and to manage and search data. The database language used in almost all DBMSs is SQL, a set of statements that define and manipulate data. After creating a database, the most common SQL statements used are INSERT, UPDATE, DELETE, and SELECT, which add, change, remove, and search data in a database, respectively.

68) what is Database?
A repository to store data.

69) What is Table?
The part of a database that stores the data. A table has columns or attributes, and the data stored in rows.

70) Define Attributes?
The columns in a table. All rows in table entities have the same attributes. For example, a customer table might have the attributes name, address, and city. Each attribute has a data type such as string, integer, or date.