Welcome to Instructbd

Friday, 26 February 2016



Skype for Mobile




Skype is an application that provides video chat and voice call services. Users may exchange such digital documents as images, text, video and any others, and may transmit both text and video messages.Join the millions of people using Skype today to stay in touch with the people who matter most. There’s so much you can do, right from the palm of your hand. Skype is the most popular free voice-over IP and instant messaging service globally.Users can also call landlines and mobiles at competitive rates using Skype credit, premium accounts and subscriptions.



Features:


• Find all your friends and family in an instant - With over 250 million people using Skype, you’re bound to bump into someone you know.
• Talk with your fingers - No matter where you are, your friends are always at your fingertips with free instant messaging.
• Free voice and video calls to all your friends and family on Skype.
• Send short clips from your favorite movies and TV shows in a Skype chat.
• Low cost calls to mobiles and landlines too - Keep in touch, even if they’re not on Skype, with low cost calls and SMS to mobiles and landlines on the other side of town or the world.
• Share your favourite snaps. Send it over Skype to friends and family and you won’t have to worry about email size limits or expensive MMS charges.
• Chat with anyone, anywhere - Skype’s available on smartphones, tablets, PCs, Macs, and even TVs. Whatever device your friends or family use, Skype just works. Simple.
• Video messaging – Record life’s everyday moments and share them with the people who matter most, with free and unlimited video messaging over Skype. * Operator data charges may apply. We recommend using an unlimited data plan or WiFi connection.


DETAILS:

Title: Download Latest Version of Skype 
File size: 36.4 MB 
Requirements: Varies with device
Languages: Multiple languages
License: Freeware
For more information visit Skype Homepage.


Download





Latest Version of WhatsApp for Mobile


WhatsApp Messenger is a cross-platform mobile messaging app which allows you to exchange messages without paying for SMS. It uses the Internet to send text messages, images, video, user location and audio media messages to other users using standard cellularmobile numbers.


Feature:

- Send unlimited messages
- Send high-quality video and make voice calls
- Group chat with friends, family and others
- Share your thought by photos and videos
- Express yourself with hundreds of free stickers!

Details:

Title: Latest Version of WhatsApp for Mobile
Version : 2.12.483
File size: 30 MB
Type: Instant messaging
Requirements: Android Only
Languages: Multiple languages
License: Freemium
Developer(s) : WhatsApp Inc.

Minimum requirements:
    ○ Android OS 2.1 or above
    ○ Unlimited internet data plan recommended
    ○ Tablet devices are not supported


Third-Party Sources:
     ○ qcom.c: LGPL 2.1 (WhatsApp Modifications)


For more information visit WhatsApp Homepage.


Find the output of the following program


Note: At First, Solve this Programme Without Using Computer. Then run it in your Computer to Check your Answer.



a) What is the output of the following program?

#include <stdio.h>
int main() {
int x;
char y;
x = 100;
y = 'D';
x += 5;
y --;
printf("%c %d",x, y);
return 0;
}


b) What is the output of the following program?


#include <stdio.h>
int main() {
int a, b, c;
a = 10;
b = 5;
c = 3;
a = a / b ;
b = c * a;
c = b % c;
a = a + b;
c = b * a - c; 
printf("%d %d %d\n",a,b,c);

return 0;
}



c) What is the output of the following program for the inputs below?                                                       
    i) 100 15 10           ii) 50 -10 5
   iii) -10 -10 -10       iv) 11 5 8
   v) 5 1 100              vi) 4 200 3
   vii) 1 2 3               viii) 12 550 -40


#include <stdio.h>
int main()
{
   int a, b, c;
   scanf("%d%d%d",&a,&b,&c);
   if( a == 5 || b > 10 && c <= 15)
              printf("A");
   else if( a >= 2 && b < 6 || c >= 13)
              printf("B");
   else if( a == 5 && b <= 8 && b == 5)
             printf("C");
   if( a <= 5 || b > -10 || a <= 15)
            printf("D");
   else if( a >= 0)
            printf("E");
    if( c%4 > 2 || b == 10 && c > 5)
            printf("F");
    if( a%3 < 1 && b > 144 && c <= 7)
            printf("G");
    else
           printf("H");
           printf("\n");

return 0;
}


If you encounter any problem to solve this programme. Please let us know, we'll help you to solve those programme

Safari Browser 5.1.7 Latest Version for PC


Safari is a web browser developed by Apple based on the WebKit engine. First released in 2003 with Mac OS X Panther, a mobile version has been included in iOS devices since the introduction of the iPhone in 2007. It is the default browser on Apple devices. A Windows version, now discontinued,was available from 2007 to 2012.At one time, web browsers simply got you to the Internet. Easy to use, Safari stayed out of your way and let you effortlessly navigate from site to site.


Feature:


• The blue inline progress bar is replaced with a spinning bezel and a loading indicator attached to it.

• The button to add a bookmark is now attached to the address bar by default.

• The reload/stop button is now superimposed on the right end of the address bar.

• Completely passes the Acid3 standards test

• Cover Flow browsing for History and Bookmarks
• Improved developer tools, including Web Inspector, CSS element viewing, JavaScript debugger and profiler, offline table and database management with SQLsupport, and resource graphs
• Nitro JavaScript engine that executes JavaScript up to eight times faster than Internet Explorer 8 and more than four times faster than Firefox 3
• Native Windows look on Windows (Aero, Luna, Classic, etc., depending on OS and settings) with standard Windows font rendering and optional Apple font rendering
• Support for CSS image retouching effects
• Support for CSS Canvas
• Speculative loading, where Safari loads the documents, scripts, and style information that are required to view a web page ahead of time
• Support for HTML5
• Top Sites, which displays up to 24 thumbnails of a user's most frequently visited pages on startup


Details:

Title: Safari 5.1.7
Filename: SafariSetup.exe
File size: 36.71 MB

Requirements: Windows XP / Vista / Windows 7 / XP 64-bit / Vista 64-bit / Windows 7 64-bit / Windows 8 / Windows 8 64-bit / Windows 10 / Windows 10 64-bit
Languages: Multiple languages
License: Freeware
Author: Apple Inc
For more info about Safari go to Homepage.





Monday, 22 February 2016


Programming Problem, Programming Problem Practice, programming, Programming Problem, practice coding

Note: At First, Solve this Programme Without Using Computer (Use manual tracing for better coding). Then run it in your Computer to Check your Answer.



(a)

     #include <stdio.h>

      int main()
      {
        int x=10,y=20, z=5;
        y = ++x;
        x += 12;
        y = x++;
        x *= 2;
        z = ++y;
        printf("%d %d %d”,x,y,z);

      return 0;
     }

b)
     #include <stdio.h>

      int main(void) {

      int i,j,k,p=0;
      for(i=0,j=1;i<=3;i++,j+=3)
      {
           k=j+j*i;
           p=p+k;
      }
      printf("\nValue is=%d",p);

    return 0;
    }


c)
   #include <stdio.h>

    int main(void) {

    int i,j,p,q=0,r;
    for(i=0,j=1;i<3;i++,j+=2)
    {
      p = j*j+i;
      q = p+q+1;
      r = 2*p - q -10;
      printf (“\n %d %d %d”,p,q,r);
    }
    printf("\nSummation =%d",p+q+r);

    return 0;
    }



If you encounter any problem to solve this programme. Please let us know, we'll help you to solve those programme

Ads







Programming Problem, solve Programming Problem, Programming, Programming Practice,

Note: At First, Solve this Programme Without Using Computer. Then run it in your Computer to Check your Answer.


(a) when x is given as 1, 5, 0 respectively ?
     #include <stdio.h>
       int main()
     {
        int x;
        scanf(“%d”,&x);
        switch(x!=5){
                 case 0:
                             printf(“A”);
                             break;
                 case 1:
                             printf(“B”);
                             break;
                 case 2:
                             printf(“B”);
                             break;
                 default:
                             printf(“C”);
         }
    return 0;
     }


b)
      #include <stdio.h>
        int main()
     {
         int x=5;
         switch(x!=0)
      {
              case 0:
                          printf(“Red”);
                          break;
             case 1:
                         printf(“Green”);
             default:
                         printf(“Blue”);
                         break;
        }

 return 0;
}


If you encounter any problem to solve this programme. Please let us know, we'll help you to solve those programme

Friday, 19 February 2016




Imo is a free video calling platform which allows you to make free unlimited video calls, chats and voice calls. In imo, you will granted adorable stickers to express your feelings in a adorable way. Imo app allows you to get connected with the people where ever in the world.

Feature:

- Send unlimited messages and make free video and voice calls over your 2G, 3G, 4G or Wi-Fi connection
- Make high-quality video and voice calls
- Group chat with friends, family and others
- Share your thought by photos and videos
- Express yourself with hundreds of free stickers!
- Encrypted chats and calls
- Avoid SMS and phone call charges. But Data charges may apply

Details:

Title: Latest Version of imo for Mobile
File size: 8 MB
Requirements: Android & iPhone Only
Languages: Multiple languages
License: Freeware

Download




Download Latest Opera Mini Browser For Mobile


Opera Mini is one of the world’s most popular browsers that supports on almost any phone. Get super faster connections and extend your mobile data for free.Opera is the best choice for browsing the web on your smartphone. Get faster connections on slow networks for free.The secure, easy-to-use browser that connects you anywhere, anytime.

Feature:

→ Smooth interface.
→ Download manager.
→ Customizable themes.
→ Extensions.
→ Speed dial.
→ Discover provides fresh news content.


Details:

Title : Latest Opera Mini Browser For Mobile
File size : 3.7 MB
Requirements : Android Phone Only
Languages : Multiple languages
License : Freeware
Author: Opera Software


Download UC Browser for Mobile

The U3 Kernel, Fast and Smart Designed for Android phones with armV7 chips For Android 2.3 and above. UC Browser is one of the best browsing Software in the World. Download and enjoy High Speed Browsing!

Feature:

◘ Super speed downloads with a resume option when interrupted and a smart file manager.
◘ Seamlessly switch between UC Browser across your devices by syncing your open tabs and bookmarks.
◘ Customizable speed dials, themes and add-ons, plus unique and user-friendly features make your browsing easier and fun!
◘ Great Virtual Wi-Fi System. You can easily share your internet with your phone or another computer.



Details:

Title: UC Browser 10.9.0.731 for Mobile
File name : UC Browser V10.9.0.731_android_pf145_(Build160316181738)
Version No.:10.9.0.731
File size: 15.1 MB
Requirements: Android Phone Only
Languages: Multiple languages
License: Freeware
Author: UCWeb Inc.



UC Browser


Tuesday, 16 February 2016



Download Latest version of DriverPac Solution online or Offline



DriverPac Solution is very useful software and the most popular program for automated drivers installation. DriverPack Solution simplifies the process of reinstalling Windows on any computer. No more problems of searching and installing drivers. Everything will be done in couple of mouse clicks. its also simplifies the process of reinstalling Windows on any computer. No more problems of searching and installing drivers. Everything will be done in couple of mouse clicks.

Developers Details:

Program goal – Automate drivers installation process.
Software development began – May 2008.
Lead developer - Arthur Kuzyakov.
Developers team - Our team has over ten members, and counting! These are the people participating directly in the program development.
Ownership - Sole ownership of Arthur Kuzyakov.
License - This software is distributed under the GNU GPL license (free software).
Contact information: info@drp.su.

For more information visit Driver Pack Solution Homepage.



                     Online Download                                 Offline Download (Torrent)
                 (File Size Around 2.3 MB)                         (File Size Around 4.54 GB)




Followers

good Code

Onclick Anti-adblock

Search This Blog

Popular Posts

PropellerAds