Input
Console.WriteLine("ज्ञानदीपमध्ये C# शिका");
Output
ज्ञानदीपमध्ये C# शिका
-------------------------------------------------------------------------
Input
string Dnyandeep="ज्ञानदीप";
Console.WriteLine(Dnyandeep);
Output
ज्ञानदीप
-------------------------------------------------------------------------
Input
string Dnyandeep="ज्ञानदीप";
Console.WriteLine("सुस्वागत "+Dnyandeep);
Output
सुस्वागत ज्ञानदीप
-------------------------------------------------------------------------
Input
string Dnyandeep="ज्ञानदीप";
Console.WriteLine($"{Dnyandeep}मध्ये आपले स्वागत आहे.");
Output
ज्ञानदीपमध्ये आपले स्वागत आहे.
-------------------------------------------------------------------------
Input
string DnyandeepInfotech="ज्ञानदीप इन्फोटेक प्रा. लि.";
string DnyandeepFoundation="ज्ञानदीप फौंडेशन";
Console.WriteLine($"{DnyandeepInfotech}या कंपनीतर्फे वेबसाईट आणि सॉफ्टवेअर विकसित केले जाते.तर {DnyandeepFoundation} या सार्वजनिक विश्वस्त संस्थेतर्फे संगणक प्रशिक्षण दिले जाते.");
Output
ज्ञानदीप इन्फोटेक प्रा. लि.या कंपनीतर्फे वेबसाईट आणि सॉफ्टवेअर विकसित केले जाते.तर ज्ञानदीप फौंडेशन या सार्वजनिक विश्वस्त संस्थेतर्फे संगणक प्रशिक्षण दिले जाते.
-------------------------------------------------------------------------
Input
string name = " ज्ञानदीप ";
Console.WriteLine($"[{name}]");
string name1 = name.TrimStart();
Console.WriteLine($"[{name1}]");
string name2 = name.TrimEnd();
Console.WriteLine($"[{name2}]");
string name3 = name.Trim();
Console.WriteLine($"[{name3}]");
Output
[ ज्ञानदीप ]
[ज्ञानदीप ]
[ ज्ञानदीप]
[ज्ञानदीप]
-------------------------------------------------------------------------
Input
string dipl = "ज्ञानदीप इन्फोटेक प्रा. लि.";
Console.WriteLine(dipl);
dipl = dipl.Replace("इन्फोटेक प्रा. लि.", "फौंडेशन");
Console.WriteLine(dipl);
Output
ज्ञानदीप इन्फोटेक प्रा. लि.
ज्ञानदीप फौंडेशन
-------------------------------------------------------------------------
Input
string dipl ="dnyanDeep";
Console.WriteLine(dipl.ToUpper());
Console.WriteLine(dipl.ToLower());
Output
DNYANDEEP
dnyandeep
-------------------------------------------------------------------------
Input
string welcome = "I say सुस्वागतम्, and You say greetings";
Console.WriteLine(welcome.Contains("सुस्वागतम्"));
Console.WriteLine(welcome.Contains("hello"));
Console.WriteLine(welcome.Contains("स्वागत"));
Output
True
False
True
-------------------------------------------------------------------------
Input
string welcome = "I say सुस्वागतम्, and You say greetings";
Console.WriteLine(welcome.StartsWith("I"));
Console.WriteLine(welcome.Contains("hello"));
Console.WriteLine(welcome.EndsWith("greetings"));
Output
True
False
True
-------------------------------------------------------------------------
Console.WriteLine("ज्ञानदीपमध्ये C# शिका");
Output
ज्ञानदीपमध्ये C# शिका
-------------------------------------------------------------------------
Input
string Dnyandeep="ज्ञानदीप";
Console.WriteLine(Dnyandeep);
Output
ज्ञानदीप
-------------------------------------------------------------------------
Input
string Dnyandeep="ज्ञानदीप";
Console.WriteLine("सुस्वागत "+Dnyandeep);
Output
सुस्वागत ज्ञानदीप
-------------------------------------------------------------------------
Input
string Dnyandeep="ज्ञानदीप";
Console.WriteLine($"{Dnyandeep}मध्ये आपले स्वागत आहे.");
Output
ज्ञानदीपमध्ये आपले स्वागत आहे.
-------------------------------------------------------------------------
Input
string DnyandeepInfotech="ज्ञानदीप इन्फोटेक प्रा. लि.";
string DnyandeepFoundation="ज्ञानदीप फौंडेशन";
Console.WriteLine($"{DnyandeepInfotech}या कंपनीतर्फे वेबसाईट आणि सॉफ्टवेअर विकसित केले जाते.तर {DnyandeepFoundation} या सार्वजनिक विश्वस्त संस्थेतर्फे संगणक प्रशिक्षण दिले जाते.");
Output
ज्ञानदीप इन्फोटेक प्रा. लि.या कंपनीतर्फे वेबसाईट आणि सॉफ्टवेअर विकसित केले जाते.तर ज्ञानदीप फौंडेशन या सार्वजनिक विश्वस्त संस्थेतर्फे संगणक प्रशिक्षण दिले जाते.
-------------------------------------------------------------------------
Input
string name = " ज्ञानदीप ";
Console.WriteLine($"[{name}]");
string name1 = name.TrimStart();
Console.WriteLine($"[{name1}]");
string name2 = name.TrimEnd();
Console.WriteLine($"[{name2}]");
string name3 = name.Trim();
Console.WriteLine($"[{name3}]");
Output
[ ज्ञानदीप ]
[ज्ञानदीप ]
[ ज्ञानदीप]
[ज्ञानदीप]
-------------------------------------------------------------------------
Input
string dipl = "ज्ञानदीप इन्फोटेक प्रा. लि.";
Console.WriteLine(dipl);
dipl = dipl.Replace("इन्फोटेक प्रा. लि.", "फौंडेशन");
Console.WriteLine(dipl);
Output
ज्ञानदीप इन्फोटेक प्रा. लि.
ज्ञानदीप फौंडेशन
-------------------------------------------------------------------------
Input
string dipl ="dnyanDeep";
Console.WriteLine(dipl.ToUpper());
Console.WriteLine(dipl.ToLower());
Output
DNYANDEEP
dnyandeep
-------------------------------------------------------------------------
Input
Console.WriteLine(welcome.Contains("सुस्वागतम्"));
Console.WriteLine(welcome.Contains("hello"));
Console.WriteLine(welcome.Contains("स्वागत"));
Output
True
False
True
-------------------------------------------------------------------------
Input
string welcome = "I say सुस्वागतम्, and You say greetings";
Console.WriteLine(welcome.StartsWith("I"));
Console.WriteLine(welcome.Contains("hello"));
Console.WriteLine(welcome.EndsWith("greetings"));
Output
True
False
True
-------------------------------------------------------------------------
No comments:
Post a Comment