π« WE ARE HIRING π«
Apply using the link in our bio if you are interested in being a part of our 2022-2023 team! The deadline to apply is FRIDAY, June 3, 2022, at 11:59 PM.
π¨Built-in Function of the Day: C strcat() π¨
The strcat() function concatenates the destination string and the source string, and the result is stored in the destination string. It is defined in the string.h header file.
#programming#coding#codingtips
We did not expect tickets for CSCUxWiCS Game Night to sell out so fast! So we've added MORE TICKETS and changes to the event!
1. The event will be at ENG LG 06
2. The time of the event has changed to 6-8PM
3. More prizes have been added
β WE ARE HIRING β
Apply using the link in our bio if you would like to be apart of our 2022-2023 team! The deadline to apply is Monday, April 30th , 2022 at 11:59 PM.
π¨ Built-in Function of the Day: Java's toString() π¨
The toString() returns the value given to it in string format. Any object than this method is applied on, will then be returned as a string object.
10"
#java#programming#coding#codingtips
π¨ Built-in Function of the Day: SQL Server's IIF() π¨
The IIF() function returns a value if a condition is true, or another value if a condition is false.
#sql#programming#coding#codingtips
π¨ Built-in Function of the Day: Java's compareTo() π¨
The compareTo() method compares two strings alphabetically.
#java#programming#coding#codingtips
πΌ Success Story: Achia Khaleda Nila πΌ
Nila founded Women in Digital, a social enterprise that is designed to showcase the work of female creators and increase female visibility on digital platforms.
#successstory#womenincomputerscience#womeninstem#womenempowerment
There are only 5 DAYS LEFT to sign up for WiCS x RCPC Hack Night!
Donβt miss out of the opportunity to practice your technical interview skills, meet new people, have fun with your friends, and a chance to win up to $200 in total prizes! Register now using the link in our bio.
RCPC x WiCS Hack Night & Giveaway!
Want to win some prizes, meet new people, or have fun with your friends? WiCS and RCPC are hosting a Hack Night & Giveaway, with up to $200 in total prizes!π
π Feb 22nd, 7pm
π WiCS Discord Server
π Register here using the link in our bio
π¨ Built-in function of the day: Python's chr() π¨
The chr() function returns the character that represents the specified unicode
Syntax: chr(number)
Example:
a = chr(97)
b = chr(8364)
print(x+"" , ""+b)
Output:
a , β¬"
#python#programming#coding#codingtips
π¨ Built-in Function of the Day: Java: contains() π¨
TheΒ contains()Β method checks whether the specified string (sequence of characters) is present in the string or not.
#java#programming#coding#codingtips#programming