Software Technology Empire

Hello Friends,
Welcome to my educational channel. My name is Deepali Diwase – Shinde. I am passionate about teaching and sharing my knowledge.
“Knowledge without action is meaningless”.
I have created this channel to provide quality and interactive educational videos to students who want to learn and grow.
Here students will be able to learn computer science subjects’ step by step.
Contents of the channels are Computer programming languages, Installation guide for different software, Technology.
I hope my contents will help you.
To get new videos subscribe to channel and stay with us.
More videos are on the way.

Thank you.
You can connect to me:
 Facebook : facebook.com/softwareTechnologyofficial



Software Technology Empire

The String class in Java does not need to be imported explicitly before using it.

6 hours ago | [YT] | 1

Software Technology Empire

Every loop in Java has a condition that should be true in order to proceed for execution.

1 day ago | [YT] | 6

Software Technology Empire

class Mydemo
{
public static void main (String[] args)
{
int x = 1;
for(x=1;x<=10;x++)
{
if(x % 2 == 0)
System.out.println(x);
}
}
}

2 days ago | [YT] | 6

Software Technology Empire

What will the output of following java code?
class Mydemo
{
public static void main (String[] args)
{
int x = 5;
while(x>0)
{
System.out.print(x--);
}
}
}

3 days ago | [YT] | 4

Software Technology Empire

What will the output of following program
class Mydemo
{
public static void main (String[] args)
{
int x = 9;
do
{
System.out.println("Hello!");
}while(x<5);
System.out.println("How are you?");
}
}

4 days ago | [YT] | 4

Software Technology Empire

What is the result of this code?

int x = 6;

if (x > 2)

x = x + 3;

System.out.print(x);

5 days ago | [YT] | 7

Software Technology Empire

The switch statement can be used instead of _____

6 days ago | [YT] | 5

Software Technology Empire

Which of the following operator is known as the ternary operator?

1 week ago | [YT] | 5

Software Technology Empire

The remainder operator in Java is ___

1 week ago | [YT] | 7

Software Technology Empire

Which of the following keyword is used to declare a variable?

1 week ago | [YT] | 8