computerguru-blogs
computerguru-blogs
Computerguru
11 posts
All About Computer & Computer Programming
Don't wanna be here? Send us removal request.
computerguru-blogs · 2 years ago
Text
Top 100 Cloud Computing Most Asked Questions in 2023
Cloud Computing Multiple Choice Questions
Here are top 100 Most Asked in exam MCQ:
1.Full form of KMS I Microsoft KMS is _____________
Key Management Services.
Key Management Sences.
Key Management Store.
Key Managed Store.
2.What does a full template include that a basic template does not ________
Disk Layout.
MAC Address.
Installation files.
Settings.
3. Virtualization provides optimizations techniques to dever the application______
Desktop.
Application.
Server.
Network.
4.CEN NetScaler SD-WAN is a set of appliances that optimum_______ performance.
LAN
MAN
WAN
INTERNET.
5.Which of the following storage supports fast cloning of virtual machine?
FC
NFC
SAS
ISCSI (Read More)
4 notes · View notes
computerguru-blogs · 2 years ago
Text
How Do I Create A Text File In Python?
Introduction
In python, Creating a new text file is a simple process using  the built-in file handling function. Before creating a file we need to know about file handling function. file handling is a in-built method in python , which is used to handle different types of file operations like read , write, update, delete etc .
Know We have to see different types of file operations,
1. How do I create a text file in python?
 Suppose we will create a text file exam.txt in python.( Read More)
1 note · View note
computerguru-blogs · 2 years ago
Text
Array Vs Lists in Java (With Examples)
Define List In Java
In Java,  A List is an ordered collection of an object in which values can be stored. It allows insertion, delete, update and positional access elements in list with index number. List created by the following classes(ArrayList, LinkedList , Stack, Vector).
The list method is found in java.util.List package. using this package  we can iterate list in forward and backward directions. The implementation of classes of list are ArrayList, LinkedList, Stack, vector. The arrayList and linkedList are widly uesd in java. The vector class is deprecated scince java5 
How to create a List in JAVA
Implementation of Array List:-
Syntax: List<String> lst1=New ArrayList<>();
Implementation of Linked List:-
Syntax: List<String> lst2=new LinkedList<>();
Different types of Methods of List in Java.
Some of List methods are commonly used in java are:
add() - It is used to add new Element in a list.
addAll()- It is used for add all elements of a list to a new list.
get() - It is used to access any element in a list.
set() - It is used for change element in a List. (More)
0 notes
computerguru-blogs · 2 years ago
Text
Why Java Is Platform Independent(Easy Definition)? And JVM is platform dependent
Java Is Platform Independent(Easy Definition)
Java is considered platform independent because it can run on any device or  any operating system as long as there is a Java Virtual Machine (JVM) installed.
The JVM acts as a bridge between the Java code and the device or operating system it is running on. When a Java program is written, it is first translated into a special format called bytecode. Read more
0 notes
computerguru-blogs · 2 years ago
Text
What is the worlds smallest drone with camera
Worlds Smallest Drone With Camera DISHIN Foldable  Drone With HQ Wi-Fi Camera Remote Control for Quadcopter with Gesture Selfie, Flips Bounce Mode, App One Key Headless Mode functionality(Black color),
The DISHIN Foldable Drone is a great option for beginners or anyone looking for a compact  or smallest and portable drone for casual flying. With its foldable design, it's easy to take with you wherever you go, and it's also a easy to store when not in use. The drone features a 1080p HD camera for taking aerial photos and videos, read more
0 notes
computerguru-blogs · 2 years ago
Text
What Artificial Intelligence Still Can't Do Right Now?
Artificial Intelligence Still Can't Do Right Now?
Artificial Intelligence (AI) has come a long way in recent years, and its capabilities have expanded significantly. However, there are still some things that AI cannot do as of now. Here are some of the limitations of AI: Common Sense Reasoning: AI systems lack common sense reasoning, which is the ability to understand the world and the context in which it operates. read more
0 notes
computerguru-blogs · 2 years ago
Text
Which Technology Is Making Quantum Computing Easier To Access And Adopt?
What type of Technology is making quantum computing easier to access and adopt?
There are several technologies and platforms that are making quantum computing more accessible and easier to adopt:
1.Cloud-based quantum computing platforms: Several companies, including IBM, Google, Amazon, and Microsoft, offer cloud-based quantum computing platforms that allow users to run quantum algorithms and experiments remotely using web interfaces or APIs. Read more
0 notes
computerguru-blogs · 3 years ago
Text
Write a program in python to calculate simple interest?
In this tutorial, we will learn how to calculate simple interest using python programming. Using these following steps to write a program in python to calculate simple interest.
We use a Python input() function that takes an input from the user.
Calculate the simple interest using this Read more...
2 notes · View notes
computerguru-blogs · 3 years ago
Text
Write a Program in Python to Swap two numbers?
 Python program to swap two numbers without using third variables and Python program to swap two numbers using third variables Read more.
1 note · View note
computerguru-blogs · 3 years ago
Text
Looping statements in python(with example) ?
Introduction to for loop in python :
  In Python, for loops are frequently used to repeat over iterable items like list, tuples, or strings. Crossing is the method involved with rehashing across a series. Assuming we have a segment of code that we need to rehash a specific number of times, we utilize for loops. A for-loops is commonly utilized in an iterable item, for example, a rundown or underlying reach capability. Read more
1 note · View note
computerguru-blogs · 3 years ago
Text
Python List (With Example) -- Computerguru ?
List :- List is a inbuild data type of python, It is a collection of different types of data. It is used to store different types of data in a single variable. List are denoted by square brackets Read more
2 notes · View notes