Russian defence expenditure is set to fall by RUB371 billion (USD6 billion) by 2018 under new spending plans announced by the government. Total spending will fall from RUB3.1 trillion in 2016 to RUB2.728 trillion in 2018, a reduction of 12.0% in nominal terms.
The new spending plans were outlined in "The basic directions of budgetary policy for 2017 and the planning period of 2018 and 2019", published by the Russian Ministry of Finance (MoF) in October 2016. Based on current projections the expenditure on 'National Defence' will fall by 8.5% in 2017 to RUB2.836 trillion, and a further 3.8% to RUB2.728 trillion in 2017.
Source : http://www.janes.com/article/64911/russian-defence-budget-set-to-drop-by-12
Translate
Wednesday, 26 October 2016
India Has Capacity To Produce Hundreds Of Nuclear Bombs
ISLAMABAD: A new study indicates that India has sufficient material and the technical capacity to produce between 356 and 492 nuclear bombs.
The study titled ‘Indian Unsafeguarded Nuclear Program’ which was published by the Institute of Strategic Studies Islamabad (ISSI) and was co-authored by four nuclear scholars, unveils a new and comprehensive assessment of India’s nuclear weapon capacity The launch of the study at the ISSI on Monday was attended by foreign diplomats, scholars, journalists and students.
The study titled ‘Indian Unsafeguarded Nuclear Program’ which was published by the Institute of Strategic Studies Islamabad (ISSI) and was co-authored by four nuclear scholars, unveils a new and comprehensive assessment of India’s nuclear weapon capacity The launch of the study at the ISSI on Monday was attended by foreign diplomats, scholars, journalists and students.
Tuesday, 11 October 2016
Integration By Parts Examples
FORMULA FOR INTEGRATION BY PARTS:
Now Here are few examples for you. If You Have any confusion regarding them you can comment below. So I will help you out. Thanks
Now Here are few examples for you. If You Have any confusion regarding them you can comment below. So I will help you out. Thanks
Sunday, 9 October 2016
User Defined Function In C++
First you have to create a user defined function.
For Example:
We are creating a user defined function for addition.
#include<iostream>
using namespace std;
int add(int x, int y)
{
cout<<"Enter the numbers you want to add"<<endl;
cin>>x;
cin>>y;
cout<<"Addition is = "<<x+y<<endl;
return x;
}
For Example:
We are creating a user defined function for addition.
#include<iostream>
using namespace std;
{
cout<<"Enter the numbers you want to add"<<endl;
cin>>x;
cin>>y;
cout<<"Addition is = "<<x+y<<endl;
return x;
}
Subscribe to:
Posts (Atom)