HackMyTution ( DurgeshSir )

Learn Python/JAVA/C/C Language/HTML/CSS/CSS3/CSS Framework/JS/Angular JS Programming with examples and also learn Computer Networks, thin client, Networking, CCC, O Level, Excel, Word, Libre Office and more by DurgeshSir
Powered By
@Impulse Technology By DurgeshSir


HackMyTution ( DurgeshSir )

Computer Main Memory & UNO

5 months ago | [YT] | 1

HackMyTution ( DurgeshSir )

What is the output of following Code.
#include<stdio.h>
#include<conio.h>
void main()
{
int i=1;
for( : :)
printf("%d",i);
getch();
}
youtube.com/live/_ugyUDGJCvk?feature=share

9 months ago | [YT] | 6

HackMyTution ( DurgeshSir )

What is the output of following Code.
#include <stdio.h>

int main(){
int a = 4;
printf("%d %d %d \n", a, ++a, a++);

return 0;
}

9 months ago | [YT] | 10

HackMyTution ( DurgeshSir )

Which function is used to read a character from the standard input in C?


youtube.com/live/NDc1pVSfA8k?feature=share

9 months ago | [YT] | 8

HackMyTution ( DurgeshSir )

What is the output of below program?
#include <stdio.h>
int main()
{
int a = 10;
switch(a)
{
case 10: printf("Ten"); break;
case 20: printf("Twenty");break;
case 30: printf("Thirty");break;
default: printf("nothing");
}
return 0;
}

Switch Case in C Language. Click on Link
youtube.com/live/mlU5_yFQle8?...

9 months ago | [YT] | 17

HackMyTution ( DurgeshSir )

What will be the output of following program ?
#include <stdio.h>
void main()
{
int a=10;
switch(a){
case 5+5:
printf("Hello\n");
default:
printf("OK\n");
}
}

Click For Switch Case Programming .
youtube.com/live/mlU5_yFQle8?feature=share

9 months ago | [YT] | 12

HackMyTution ( DurgeshSir )

'Default’ case is mandatory in a switch statement.

Switch Case in C Language. Click on Link
youtube.com/live/mlU5_yFQle8?feature=share

9 months ago | [YT] | 15

HackMyTution ( DurgeshSir )

Number of primitive data types in Java are?

9 months ago | [YT] | 8

HackMyTution ( DurgeshSir )

Which of the following is not an OOPS concept in Java?

9 months ago | [YT] | 8

HackMyTution ( DurgeshSir )

class Demo
{
public static void main(String args[])
{
int num = 8;
System.out.print(++num * 5);
}}

9 months ago | [YT] | 7