Left Sidebar
How to make functions in Kotlin -1 ?
This post explains the basics of implementing functions in the Kotlin programming language. Functions in Kotlin are declared by using the fun keyword. Here is a simple Hello Kotlin function. fun say…
Which are the best job search sites in India? Killer Launch
In this series on the best job sites in India we will be evaluating Killer Launch is a great job search site and provides the following facilities. Job Search, both free and paid premium version. …
Interview Question, Data Comparison
Consider the following situation. 4 friends A,B,C, and D purchase something for ₹ 45,000. A paid half of sum of B,C and D. B paid 1/4 of the sum of A,C and D. C paid 1/8 of the sum of A, B and D. H…
How to draw Pyramid Shapes using Kotlin
Consider the following figure O OO OOO OOOO This will be drawn using nested loops so let us make a chart i No of Os 1 1 2 2 3 3 4 4 T…
Latest Post--- Kotlin Class
Kotlin Class Kotlin Class Drawing Shapes using Kotlin Nested Loops. Shapes Using Kotlin.
What is a List in Python? and some problems on lists.
A Python list is a collection for items of all types. The List is Iterable and is a sequence as well. For more on this topic please go to Iterables in Python . A list is mutable. Its contents can b…
How are variables created in Python? using pointers in Python
We have all studied the C Programming language and understand the ideas behind pointers. However is a quick recap. Let us declare 2 variables in some program. The code would be int a=3,b=4; These 2 v…
What are the operators in the Python Programming Language
What are the operators in the Python Language? Python Arithmetic Operators are + +2, 2+3, 4+8 etc - -5,5-9, 9-5 * 4*5 / 5/4 // floor division 5//3 ** Exponent 2**3 % remainder 6%2 Bitwise opera…
Data Comparison Quiz --- Three
Data Comparison Test This test is made up of two given variables namely A and B and you are required to compare their values. There will always be 4 options A, B, C and D to choose from. You choose …
Varanasi Software Junction --- Calendar
Varanasi Software Junction --- Calendar Contact us for software training, education or development
Data Comparison Test --- Two
Data Comparison Test This test is made up of two given variables namely A and B and you are required to compare their values. There will always be 4 options A, B, C and D to choose from. You choose …
Drawing Shapes in Python --- Assignment
Drawing Shapes using Python Drawing different shapes by using nested loops is a regular assignment for students of Computer Programming. It is a great way of learning programming and developing prog…
Python Loops --- Basic Assignments.
Try these questions on Python Loops. Loading…