Category: Blogs

Which IT company is Best for Freshers

Your best opportunity for getting hired as a fresher is via campus placements since obviously, companies hiring directly from campuses are coming to fish fresh talents. The city boasts a rich technological ecosystem and houses several renowned companies that offer excellent prospects for freshers.Eventually, a practical way to solve not just the world’s IT problems […]

Read More

Resume format for Freshers? How to Make Resume_2024 Freshers

In this blog Explain about Resume format for freshers. How to Create best Resume format for Freshers? How to Create Resume Creating a resume involves organizing and presenting your relevant information in a clear and concise format. Here’s a step-by-step guide on how to create a resume: Contact Information Include your full name, phone number, […]

Read More

Python – input, output, if else statements

num = input(“Tell me any no. “) num2 = input(“Tell me another no. “) # Type Casting num = int(num) num2 = int(num2) print(“Total is “, num + num2) result = eval(“10+20+30”) print(result) exp = input(“Enter any arithmetic expression: “) result2 = eval(exp) print(result2) Output Learning: a, b, c = 100, 200, 300 print(a,b,c, sep=’ […]

Read More

Python – Introduction – Datatypes

Programming Paradigms – கருத்துரு Python –> is a multi programming paradigms 1. Functional Programming features – C, Python 2. Object Oriented Programming –> Compilers C++, C#, Java, Python 3. Scripting –> Interpreter Powershell, Javascript, Python 4. Modular Programming – Modula 3, Python Features of Python: 1. Simple 2. Open Source, Free 3. High Level Language […]

Read More

Python – String Practice

name1 = ‘Muthuramalingam’ name2 = “Muthuramalingam” address = “Muthuramalingam\n Chennai” #print(address) #print(“C:\new folder\first.mp3”) # Output: C:\new folder\first.mp3 # raw String #print(r”C:\new folder\first.mp3″) # \n –> Escape Characters n – new line sentence = ”’I’m\\n fine”’ #print(sentence) # String Slicing name = ‘langscape’ print(“Forward Indexing “) print(name[0], end=’*’) print(name[1], end=’*’) print(name[2], end=’*’) print(name[3], end=’*’) print(name[4], end=’*’) […]

Read More

Java Interview Questions

This blog explain about Java Interview Questions. Basic Java Interview Questions. 1. What is Java? 2.  Explain about Java Virtual Machine?  3. What are the features of Java? 4. How does Java enable high performance? 5.Differentiate between JVM, JRE, and JDK. 6. What is the JIT compiler? 7. Which Java IDE to use and why? […]

Read More

Static Binding and Dynamic Binding

Learn the Static binding and Dynamic binding in Java:- Connecting a method call to the method body is known as binding. Binding as Two types Static Binding (also known as Early Binding).Dynamic Binding (also known as Late Binding). Static Binding: When type of the object is determined at compiled time(by the compiler), it is known […]

Read More

Java – protected keyword – Assignment

Learn the significance of ‘protected’ keyword in Java by doing the below Assignment. Step #I1) Create a package ‘India’2) In this package, create a public class ‘Parent’3) Have below ‘default’ variables and methodsString name=”abcd”;int age = 60;void attendFunctions(){}void goToShop(){} Step #II1) In the same package ‘India’, create a public class ‘Sibling’. Make this class as […]

Read More

What is an Array in Python

Learn this blog what is an array in python, how to calculate elements, length of the elements, Add elements in an array, How to Remove elements in array What is an Array in Python An array is a special variable, which can hold more than one value at a time. If you have a list […]

Read More

Python Recursion

Learn with this blog how to work On Python Recursion Function and Examples. Python Recursion: A function is said to be a recursive if it calls itself. For example,  lets say we have a function abc() and in the body of abc() there is a call to the abc(). Python Recursion Example: In this example we are defining a user-defined function factorial(). This function […]

Read More