Posts

Laziodisu Scholarship For Foreign Students

Laziodisu Scholarship   2018 2019  Sapienza University Of Rome  Università degli Studi di Roma "La Sapienza Universtiy Of Rome Tor Vergata   Università degli Studi di Roma "Tor Vergata" University Of Rome Tre  Università degli Studi Roma Tre Students freshman or of consecutive years studying in any of the above mentioned three universities or in any university of the Lazio region of Rome is entitled to get the Laziodisu Scholarship. The LAZIODISU grant is a sum of money and accommodation assigned to Italian and International students registered at Lazio region universities in Rome who have good academic results and low income. The assignment of grants has the purpose of promoting higher education. The amount of money received by the students varies according to the student's permanent address. You will be asked to produce the following documents  : 1. Family Member Composition 2. Family Income previous year (If you were to get admitted...

Italy Study Visa From India And Foreign States

INTRODUCTION Want to maximize your chances of going abroad for Studying in Italy With Scholarship And Fee Exemption here is a Blog with a few tips which are sure to help.  The  Blog  focuses mainly on obtaining a  Student / Study Visa And Scholarship For Italy  From  Kolkata / Delhi / Mumbai In INDIA  For Obtaining a  Bachelor's Degree / Master's Degree / PhD / Research / Exchange Programmes IN ITALY.  LOTS OF PEOPLE ARE WILLING TO GO AND STUDY IN ITALY FROM INDIA DUE TO SCHOLARSHIPS, FEE EXEMPTIONS AND A VERY ECONOMIC ABROAD STUDY DESTINATION FROM INDIA. I HOPE THIS BLOG WILL MOTIVATE YOUNG STUDENTS ENOUGH SO THAT THEY CAN FEARLESSLY COMPLETE THEIR DREAM OF GOING ABROAD AND STUDYING IN ITALY EUROPE WITHOUT HAVING TO THINK OF HUGE LOANS IN ORDER TO COMPLETE THEIR STUDIES. ALL YOU NEED TO HAVE IS PATIENCE AND DETERMINATION. "  Strength: A River Cuts Through A Rock Not Because Of Its Power, But Its Persistence " For Courses Such...

INNOVATION NEW PROJECTS AND DEVELOPMENT OF ALTERNATIVES ENGINEERING ECONOMICS EXTRA ASSIGNMENT BA IN ENGINEERING SCIENCES ANDREA FRONZETTI COLLADON UNIVERSITY OF ROME TOR VERGATA Università degli Studi di Roma "Tor Vergata" Uniroma2

Image
INNOVATION NEW PROJECTS AND DEVELOPMENT OF ALTERNATIVES ENGINEERING ECONOMICS EXTRA ASSIGNMENT  BA IN ENGINEERING SCIENCES UNIVERSITY OF ROME TOR VERGATA  Università degli Studi di Roma "Tor Vergata" Uniroma2   ANDREA FRONZETTI COLLADON

Implementing Queue In Java

import java.util.*; class arrayQueue {     protected int Queue[] ;     protected int front, rear, size, len;     //Constructor     public arrayQueue(int n)     {         size = n;         len = 0;         Queue = new int[size];         front = -1;         rear = -1;     }       //Function to check if queue is empty     public boolean isEmpty()     {         return front == -1;     }       //Function to check if queue is full     public boolean isFull()     {         return front==0 && rear == size -1 ;     }       //Function to get the size of the queue     public int getSize()     {         return len ;  ...

ICSE ISC 2017 ROUTINE DECLARED

The Council for the Indian School Certificate Examination has declared the Indian Certificate of Secondary Education (ICSE) Board Examination, and Indian School Certificate (ISC) Board Examination timetable for 2017. The ICSE Grade 10 examination will begin on February 27, 2017 and end on March 31, 2017. While, the ISC Class 12 board examination will begin on February 6 (with its practical examination) and get over on April 5, 2017. Most of the ICSE schools will begin their prelim examinations from this month to prepare students for the board examination. Last year the 10th class board examination began on February 29, 2016, it went on till March 31, 2016. Candidates can check a proper schedule of the examinaton on the CISCE site. Here's the  ICSE  and  ISC  link for the time table. http://www.cisce.org/notice_board.aspx http://www.cisce.org/notice_board.aspx http://www.cisce.org/notice_board.aspx

Anagrams In Java ISC ICSE CBSE Class 12

import java.util.*; class Anagram{     public static void main(){         String s;         Scanner sc=new Scanner(System.in);         System.out.println("Enter a word");         s=sc.next();         Anagram ob=new Anagram();         ob.display("",s);     }     public void display(String p,String w){         if(w.length()<=1)         System.out.println(p+w);         else{             for(int i=0;i<w.length();i++){             String a=w.substring(i,i+1);             String b=w.substring(0,i);             String c=w.substring(i+1);             display(p+a,b+c);         }     } ...

Encoding In Java ISC CBSE Class 12

import java.util.*; class Encode{     public static void main(){         Scanner sc=new Scanner(System.in);         String s,t="",str="",p;         int c,k,l;         System.out.println("Enter the code");         s=sc.next();         l=s.length();         if(l>200){             System.out.println("Invalid Code");             return;         }         for(int i=l-1;i>=0;i--){             c=s.charAt(i)-48;             c=9-c;             t=t+Integer.toString(c);         }         for(int j=0;j<=l;j+=2){             p=t.substring(j,j+2);       ...

Decoding In Java ISC CBSE Class 12

import java.util.*; class Decode{     public static void main(){         Scanner sc=new Scanner(System.in);         String str,s="";         int i,l,j,ss,r,sr=0;         System.out.println("Enter a sentence");         str=sc.nextLine();         l=str.length();         for(j=0;j<l;j++){                 if((str.charAt(j)>=65&&str.charAt(j)<=90)||(str.charAt(j)>=97&&str.charAt(j)<=122)||(str.charAt(j)==32)){                    s=s+(int)str.charAt(j);                 }//if             }//for j             ss=Integer.parseInt(s);             while(ss>0){       ...

Denomination Of Notes Currency In Java Isc Icse CBSE

import java.util.*; class Denomination{     public static void main(){      Scanner sc=new Scanner(System.in);      int n,nn,c=0,s=0,i;      int a[]={1000,500,100,50,20,10,5,2,1};         System.out.println("Enter a multidigit no.");          n=sc.nextInt();          nn=n;          if((n+"").length()>5){              System.exit(1);             }             else{             for(i=0;i<=8;i++){                 c=n/a[i];                 if(c!=0){                 System.out.println(a[i]+"  *  "+c+"      "+a[i]*c);           ...

Integer To Roman In Java ISC CBSE Class 12

class Roman{     public void accept(int n){      int c=0,i,j;      int a[]={1000,900,500,400,100,90,50,40,10,9,5,4,1};      String aa[]={"M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"};          if(n>9999){              System.exit(1);             }             else{             for(i=0;i<=12;i++){                 c=n/a[i];                 if(c!=0){                 for(j=1;j<=c;j++)                 System.out.print(aa[i]);             }                 n=n%a[i];             }     ...

Transpose Matrix In Java

//Transpose Matrix import java.util.*; class Matrix{     public static void main (){         Scanner sc=new Scanner(System.in);         int i,j,N;         System.out.println("Enter the value of N");         N=sc.nextInt();         int a[][]=new int[N][N];         for(i=0;i<N;i++){         for (j=0;j<N;j++){         System.out.println("Enter any number");         a[i][j]=sc.nextInt();     }}     for(i=0;i<N;i++){         for (j=0;j<N;j++){     System.out.print(a[i][j]); }System.out.println(); } } }

Magic Square In Java

import java.util.*; class MagicSquare{     public static void main(){         Scanner sc=new Scanner(System.in);         int n,x,i,j;         System.out.println("Enter size of an array");         n=sc.nextInt();         int a[][]=new int[n][n];         i=0;         j=(n-1)/2;         x=1;         do{             if(a[i][j]!=0){                 i=(i+2)%n;                 j=(j+1)%n;             }//end of if             a[i][j]=x++;             i--;             j--;             if(i<0)           ...