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

Java must be saved with an extension .javax

18 hours ago | [YT] | 4

Software Technology Empire

The 'for' loop can be replaced by 'while' loop with necessary modification in the code.

1 day ago | [YT] | 4

Software Technology Empire

What will be output of the following program?
class Demo
{
public static void main(String[] args)
{
int i=1;
for(;i<3;i+=2)
{
System.out.print(i);
}
}
}

2 days ago | [YT] | 4

Software Technology Empire

What is output of the following code?
class Demo
{
public static void main(String[] args)
{
int i=0;
for(;i<3;i++)
{
System.out.print(i);
}
}
}

3 days ago | [YT] | 3

Software Technology Empire

What is output of the following code?
class Demo
{
public static void main(String[] args)
{
int x=0;
x=x+2;
x+=2;
System.out.print(x);
}
}

4 days ago | [YT] | 5

Software Technology Empire

What will be output of following code?
class Demo
{
public static void main(String[] args)
{
boolean b;
System.out.print(b);
}
}

5 days ago | [YT] | 4

Software Technology Empire

Which software attribute ensures it uses minimal memory and processor cycles?

6 days ago | [YT] | 7

Software Technology Empire

What type of software is built into devices like washing machines or cars?

1 week ago | [YT] | 9

Software Technology Empire

Which of the following is NOT a characteristic of software?

1 week ago | [YT] | 7

Software Technology Empire

What is a generic software product?

1 week ago | [YT] | 7