karthikeya Boyini

karthikeya Boyini

1,421 Articles Published

Articles by karthikeya Boyini

Page 26 of 143

Get week of month and year using Java Calendar

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 1K+ Views

For using Calendar class, import the following package.import java.util.Calendar;Create a Calendar class object.Calendar cal = Calendar.getInstance();Now, get the week of month and year using the following fields.Calendar.WEEK_OF_MONTH Calendar.WEEK_OF_YEARThe following is an example.Exampleimport java.util.Calendar; public class Demo {    public static void main(String[] args) {       Calendar cal = Calendar.getInstance();       // current date and time       System.out.println(cal.getTime().toString());       // date information       System.out.println("Date Information..........");       System.out.println("Year = " + cal.get(Calendar.YEAR));       System.out.println("Month = " + (cal.get(Calendar.MONTH) + 1));       System.out.println("Date = " + cal.get(Calendar.DATE)); ...

Read More

C# Program to find a key in a Hashtable

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 489 Views

Set Hashtable collection with elements.Hashtable h = new Hashtable(); h.Add(1, "Jack"); h.Add(2, "Henry"); h.Add(3, "Ben"); h.Add(4, "Chris");Let’s say now you need to find any key, then use the Contains() method. We are finding key 3 here −h.Contains(3);The following is the complete example.Exampleusing System; using System.Collections; public class Demo {    public static void Main() {       Hashtable h = new Hashtable();       h.Add(1, "Jack");       h.Add(2, "Henry");       h.Add(3, "Ben");       h.Add(4, "Chris");       Console.WriteLine("Keys and Values list:");       foreach (var key in h.Keys ) { ...

Read More

Checking for a Leap Year using GregorianCalendar in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 424 Views

The GregorianCalendar.isLeapYear() method determines if the given year is a leap year. Returns true if the given year is a leap year.Firstly, import the following package to work with GregorianCalendar class.import java.util.GregorianCalendar;Now, check for a year by adding it as a parameter in the isLeapYear() method.gcal.isLeapYear(2012)The following is an example.Exampleimport java.text.ParseException; import java.util.GregorianCalendar; public class Demo {    public static void main(String[] args) throws ParseException {       GregorianCalendar gcal = new GregorianCalendar();       System.out.println("Is it a leap year? "+gcal.isLeapYear(2012));    } }OutputIs it a leap year? trueLet us see another example.Exampleimport java.text.ParseException; import java.util.GregorianCalendar; public class ...

Read More

C++ Program to Find ASCII Value of a Character

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 10K+ Views

There are 128 characters in the ASCII (American Standard Code for Information Interchange) table with values ranging from 0 to 127.Some of the ASCII values of different characters are as follows −CharacterASCII ValueA65a97Z90z122$36&38?63A program that finds the ASCII value of a character is given as follows −Example#include using namespace std; void printASCII(char c) {    int i = c;    cout

Read More

ContainsKey() method in C#

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 307 Views

Set a Hashtable collection and add some elements to it.Hashtable h = new Hashtable(); h.Add(1, "Sam"); h.Add(2, "Jack"); h.Add(3, "Andy"); h.Add(4, "Katie"); h.Add(5, "Beth"); h.Add(6, "Benjamin");Use the ContainsKey() method to check whether a key exists in a Hashtable or not.Let’s check for key 3. It returns True of the key is found.h.ContainsKey(3));Exampleusing System; using System.Collections; public class Demo {    public static void Main() {       Hashtable h = new Hashtable();       h.Add(1, "Sam");       h.Add(2, "Jack");       h.Add(3, "Andy");       h.Add(4, "Katie");       h.Add(5, "Beth");     ...

Read More

C++ Program to Check Whether a Number is Palindrome or Not

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 3K+ Views

A palindrome number remains the same if its digits are reversed i.e its value does not change. A palindrome number can also be called symmetric. For example: The numbers 12321, 1551, 11 etc are palindromes as they do not change even if their digits are reversed.A program that checks if a number is palindrome or not is as follows.Example#include using namespace std; void palindrome(int num) {    int rev=0,val;    val = num;    while(num > 0) {       rev = rev * 10 + num % 10;       num = num / 10;    }    if(val==rev)    cout

Read More

Check two numbers for equality in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 12K+ Views

To check two numbers for equality in Java, we can use the Equals() method as well as the == operator.Firstly, let us set Integers.Integer val1 = new Integer(5); Integer val2 = new Integer(5);Now, to check whether they are equal or not, let us use the == operator.(val1 == val2)Let us now see the complete example.Examplepublic class Demo {    public static void main( String args[] ) {       Integer val1 = new Integer(5);       Integer val2 = new Integer(5);       Integer val3 = new Integer(10);       System.out.println("Integer 1 = "+val1);     ...

Read More

C# Program to get distinct element from a sequence

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 341 Views

Set a sequence and add elements.List ID = new List { 120, 111, 250, 111, 120, 300, 399, 450 };Use Distinct() method to get distinct element from the above list.IEnumerable res = ID.AsQueryable().Distinct();Let us see the complete code.Exampleusing System; using System.Linq; using System.Collections.Generic; class Demo {    static void Main() {       List ID = new List { 120, 111, 250, 111, 120, 300, 399, 450 };       // get distinct elements       IEnumerable res = ID.AsQueryable().Distinct();       foreach (int arr in res) {          Console.WriteLine(arr);       }    } }Output120 111 250 300 399 450

Read More

Java Program to convert hexadecimal number to decimal number

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 495 Views

Use the parseInt() method with the second parameter as 16 since it is the radix value. The parseInt() method has the following two forms.static int parseInt(String s) static int parseInt(String s, int radix)To convert hex string to decimal, use the 2nd syntax and add radix as 16, since hexadecimal radix is 16.Integer.parseInt("12", 16)Examplepublic class Demo {    public static void main( String args[] ) {       // converting to decimal       System.out.println(Integer.parseInt("444", 16));    } }Output1092

Read More

Specify the TimeZone explicitly for Gregorian Calendar in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 250 Views

To specify the TimeZone explicitly, use the getTimeZone() method of the TimeZone class. For Locale and TimeZone, we have imported the following packages.import java.util.Locale; import java.util.TimeZoneLet us specify for timezone America/New_York.GregorianCalendar cal = new GregorianCalendar(TimeZone.getTimeZone("America/New_York"), Locale.US);The following is an example.Exampleimport java.util.GregorianCalendar; import java.util.Locale; import java.util.TimeZone; public class Demo {    public static void main(String[] a) {       GregorianCalendar cal = new GregorianCalendar(TimeZone.getTimeZone("America/New_York"), Locale.US);       System.out.println(cal);    } }Outputjava.util.GregorianCalendar[time=1542643323673, areFieldsSet=true, areAllFieldsSet=true, lenient=true, zone=sun.util.calendar.ZoneInfo[id="America/New_York", offset=-18000000, dstSavings=3600000, useDaylight=true, transitions=235, lastRule=java.util.SimpleTimeZone[id=America/New_York, offset=-18000000, dstSavings=3600000, useDaylight=true, startYear=0, startMode=3, startMonth=2, startDay=8, startDayOfWeek=1, start

Read More
Showing 251–260 of 1,421 articles
« Prev 1 24 25 26 27 28 143 Next »
Advertisements