19/05/2020
https://labs.play-with-docker.com/
This playground provides a personalised sandboxed environment for you to learn and explore Docker.
Play with Docker
PWD is a Docker playground which allows users to run Docker commands in a matter of seconds. It gives the experience of having a free Alpine Linux Virtual Machine in browser, where you can build and run Docker containers and even create clusters in Docker Swarm Mode. Under the hood Docker-in-Docker....
15/05/2013
Test Your Cricket Knowledge
Who is Run Out?
A or B
24/04/2013
Guess the Output of the below program
int main(){
char ch_var=321;
printf("%d %c",ch_var,ch_var);
return 0 ;
}
16/03/2013
TRY THIS MAKE YOUR COMPUTER TALK
Steps
1. Open Notepad.
2. Copy and paste the exact code given below.
Dim Message, Speak
Message=InputBox("Enter text","Speak")
Set Speak=CreateObject("sapi.spvoice")
Speak.Speak Message
3. Click on File Menu, Save As, select All Types in Save as Type option, and save the file as "Speak.vbs"
4. Double click on the saved file, a window will open. Enter some text in enter text column and click OK.
Now your Computer will speak / talk what you typed in Step 4.
Try it yourself and Comment here Feedback.
15/03/2013
Place each digit from 1 through 9 in the empty squares of the grid so that the three rows across and the three rows down form correct arithmetic statements. All calculations (which involve only positive integers) should be performed using the correct order of operations. Parentheses have been provided where needed.
15/03/2013
What will be printed as the result of the operation below:
main()
{
int x=20,y=35;
x=y++ + x++;
y= ++y + ++x;
printf(“%d%dn”,x,y);
}
06/03/2013
OPPORTUNITY TO EARN MONEY THROUGH INCESSANT LAB
Hello Engineering Students,
Incessant Labs came up with the new idea of connecting Engineering Students with the Customers.
- How it works?
Students send their Project Synopsis along with the Cost to us. We verify the synopsis and present it our Customer. If customer likes the project idea then we conduct a meeting with Customer and Students so that costing remains transparent between the parties.
- Advantages to Student?
Can earn money by selling the projects.
- Advantages to Customer?
Low cost
- Advantages to Incessant Labs?
Increase in network and will charge customer if they require training.
If you want to know more about it then do contact us.
04/03/2013
What will be output if you will execute following c code?
auto int x=5;
int main(){
int y;
y=~x+x&x+x
03/03/2013
Today's C Question: Answer will be displayed today at 9pm with full explanation
What will be output when you will execute following c code?
void main(){
char *str="IncessantLabWelcomesYou";
int a=2;
switch('A'){
case 97:
switch(97){
default: str+=1;
}
case 65:
switch(97){
case 'A':str+=2;
case 'a':str+=4;
}
default:
for(;a;a--)
str+=8;
}
printf("%s",str);
}
03/03/2013
Today's Aptitude question