Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Nazmul

Pages: [1] 2 3
1
There are some PhD positions available at our research group (LEADS - Life and Economy Applications of Data Science) at University of Newcastle, Australia.

The PhD Scholarship Opportunity is available for both the CSE and SWE graduates.

The Link: https://www.linkedin.com/pulse/phd-scholarships-computational-intelligence-software-pablo-moscato

Area of research:
Software Engineering,
Program Analysis,
Computational Intelligence,
Machine Learning, and
Data Analytics.

IELTS: The applicants need to have IELTS score of 6.5 or above at the time of applying.

Expression of Interest: Interested applicants are encouraged to send their CV to Associate Professor Hongyu Zhang (hongyu.zhang@newcastle.edu.au) and/or Professor Pablo Moscato (pablo.moscato@newcastle.edu.au) before applying.


With Regards,
Mohammad Nazmul Haque
PhD Candidate (Computer Science)
Casual Academic, School of Electrical Engg and Computer Science
The University of Newcastle
Callaghan NSW 2308, Australia

and
Senior Lecturer  (On Study Leave)
Dept. of CSE,CIS & CS
Daffodil International University

2
The Time is going out. Last date of application is 31-Aug-2013. The university of Newcastle offers many HDR scholarship to international students. Interested prospective applicants can visit this page for detail information. http://www.newcastle.edu.au/students/research-higher-degree/scholarships/index.html

There are many scholarships available in Computer Science Department. Students who have completed BSc can apply for M.Phil degree and can get scholarship. If you have MSc degree with thesis then you can apply for PhD. I believe it will be a good opportunity of CSE@DIU students.

Best of Luck.

3
Job market for DIU student / Dot Net Programmer Needed (Urgent)
« on: April 16, 2012, 05:08:49 PM »
I am very glad to offer 2 positions to DIU CSE Graduate for the Post of Software Developer (dot net framework)

Eligibility criteria:
•        Must be an ex-student of DIU from CSE department.
•        One Year experience is recommended (Fresher can also encouraged to apply)
•        Good communication ability in English (Both written and spoken).

Potential candidates satisfying the job requirements are invited to apply with complete resume via online through e-mail to:

acd_206@yahoo.com [Animesh Chandra Dey, DIU CSE Alumni]

The candidates are requested to provide contact Phone/Cell number in the CVs.

4
Job market for DIU student / Job for DIU CSE Graduate
« on: April 02, 2012, 11:00:41 AM »
Dear CSE graduate of DIU,
You can apply for the job posted below. Final Year Student can also apply for the position. There are 4 job in 2 different category. Applicant has to mention me as Reference in their CV.

Job Title: PHP Programmer.
No. of Vacancies: 02 (two)

Job Title: .Net Programmer.
No. of Vacancies: 02 (two)

Job Nature: Full Time

Educational requirements:
B.Sc. in Computer Science & Engineering is preferable.

Others qualification:
1.   Basic Knowledge on the programming language.
2.   Basic knowledge on Database programming.

Salary:
   Negotiable.

Office Hour:
02.00 PM-10.00 PM

Send your CV to career@adasoftltd.com within April 15, 2012

Contact us: AdaSoft International Limited
      2/1-A, Block-G, Lalmatia, Dhaka



5
Common Forum / Re: regarding ablution seat
« on: March 29, 2012, 12:03:59 PM »
Dear Madams,
It is indeed an essence for Muslim to have ablution and your proposed solution is excellent. I hope that DIU authority will soon take necessary steps to resolve the issue. Because the authority always showed their great positive steps to uplift the flag of DIU.

6
Dear Arefin Sir,
I use citycell Zoom at my Home. Here is the speed test result of my Zoom Connection:

7
Congratulation to DIU-CDC for being Runnerup in National Debate Championship.

8
আজকে একটি কমন সমস্যার সমাধান দেবো।
হয়তো বিপদে এটি অনেকের কাজে লাগবে।পেনড্রাইভ বা মেমোরি কার্ডের ফাইল অনেক সময় অদূশ্য হয়ে যায়।মনে হয় যেন এতে বুঝি কোন ফাইলগুলো মুছে গেছে। কিন্তু propertise গেলে দেখা যায় জায়গা ঠিকই দখল করে আছে।তার মানে ফাইলগুলো সুপার হাইড হয়ে গেছে।আসলে ভাইরাসে কারনেই এই সমস্যা হয়। এছাড়াও এই ফোল্ডার গুলোর নামে EXE ফাইল তৈরী হয়, এগুলোকে ডিলিট করে দিতে হবে।আজকে আপনাদের এই সমস্যার একটি কার্যকর সমাধান দেবো।
এরকম সমস্যা হলে run এ গিয়ে cmd লিখে enter চাপুন। এবার আপনার পেনড্রাইভ বা মেমোরি কার্ড যে ড্রাইভে আছে তার অক্ষর(যেমন L: হলে L ) টাইপ করুন।এখন নিচের কমান্ড লিখে enter চাপুন-
attrib -s -r -h -a /s /d
আশাকরি আপনার সমস্যার সমাধান হয়ে যাবে এতেই।
ঐ কমান্ডগুলোর অর্থটাও বুঝে নিন-
এখানে attrib বলতে attribute এর সংক্ষিপ্ত রুপ বোঝায়।
s = system file or super hidden
r = read only
h = hidden
a = archive
/d = directory
/s = sub directory

- = remove the specified attribute

9
Giving input form keyboard sometime become hazy during contest time. So, we use file i/o. Here i am going to give a sample code which takes inputs from file and produces output to file (text file)

Suppose we want to take input from the "input.txt" file and want to store the results in the "output.txt" file.
You will have to include one function call before taking first input:
Code: [Select]
freopen("input.txt","r", stdin); freopen function opens the "input.txt" data file in read mode "r" and sends it to standard input (stdin)

Place another freopen call for putting the outputs into file as below:
Code: [Select]
    freopen ("output.txt","w",stdout);it opens the "output.txt" file into write mode "w" and acts as standard console output (stdout)

Important note: Never forgot to close these streams before end of the program

Code: [Select]
    fclose(stdin);
    fclose(stdout);
    return 0;
}

Now your program is ready to take input from file and produce output into file.

10
For the beginner,
They will find very unusual sometime regarding taking inputs. Taking input is very strict in programming contest. No extra message is allowed to instruct the user. For example:
Code: [Select]
printf("Please Input the value of n:");
Some problems will say, "The Program will continue till the END OF FILE"
some will say "Stop taking input if N=0" etc etc.
Some important ways to take input will be described here:

1. If you are asked to take an integer number (n) as input till the End Of File/ (EOF):
 
 
Code: [Select]
int main(){
    int n;
    while(scanf("%d", &n)==1){
         ...........
         ...........
    }
    return 0;
}

scanf() returns number of data read. If no data is given( EOF is reached) it will get 0 and terminates the loop. For giving EOF signal to program you have to press ctrl+z

or, If there is nothing said in the problem description about how long you will take the inputs, in that case you also have to follow this way.

2. If you are said to take an integer number n and it is said that the end of input will be indicated by a case with n=0:

Code: [Select]
int n;
while(1){
    scanf("%d", &n);
    if(n==0)
       break;
    ........
    ........
}

3. If the problem statement says something like "The input can contain multiple test cases. The first line of the input indicates the number of test cases. For each test case take an integer number input" :

Code: [Select]
int n, test;

scanf("%d", &test);
while(test--){
     scanf("%d", &n);
     ................
     ................
}

4. In the previous input technique, after taking the input of test, if it was said to take a string (char str[100]) as input then we would had done that as below:

Code: [Select]
int test;
char str[100], dummy;

scanf("%d", &test);
dummy= getchar();
while(test--){
     gets(str);
     ................
     ................
}
As "str" is a string, after giving the input of test when we press the enter button, str takes that newline character as the input, which creates big problem while processing. That is why another character variable dummy is used right after taking the input to the test variable.

5.If the problem statement says to take a set of characters as input till the end of file:

Code: [Select]
char str[100];

int main(){
    while(gets(str)!=NULL){
          .......
          .......
    }
    return 0;
}

I hope that this will help beginners to start solving problems in Programming Contest.

11
Job market for DIU student / Internship for DIU-CSE Student
« on: March 03, 2012, 12:29:08 PM »
Dear all,
I want  to inform you that there is an internship positions available in an outsourcing software Company. There will be training period of six months (as internship) after that they will get the job as permanent employee. Office hour will be 2:00PM-10:00PM (exception may occur during Deadlines)

Position 1: Web Developer (PHP)

Requirements:

    * Fundamental Knowledge about programming
    * must have commitment to stay long time (at least 1.5 years)
    * Basic Database Knowledge
    * Committed to work hard
    * Courage to meet deadline
    * be able to work in team as good team player


Salary:
5,000-6,000 (During Internship Period)

Interest and confident students (final year CSE student only) are requested to send their resume to my e-mail address: nazmul@daffodilvarsity.edu.bd within 04/03/2012 (Mid-night).

12
Programming Competition / Re: ACM-ICPC at DIU ?
« on: December 15, 2011, 05:00:20 PM »
Dear Arefin Sir and All,

By the grace of Almighty ALLAH, very positive attitude for Programming Contest by DIU (this practice is absent in other Universities) and tremendous effort of Prof. Ahkter Sir, DIU is going to arrange ACM-ICPC Asia Regional Contest 2012.
This will be a great milestone for DIU and a great challenge in ahead of CSE department of DIU. We have to do well in the contest as we are a Host of the Prestigious event. Prof. Akhter sir has already formed work plan with us for the upcoming contest.

13
IT Forum / Re: Team Selection Contest for Daffodil Pre-ACM 2011
« on: October 23, 2011, 10:17:22 AM »
Result of Team Selection Contest for
 
Rank   Name   Solved   Time       A           B           C           D       Total att/solv
1   Mujib Mahfuz Rashed   3   194   4/82   1/20   1/32   0/--   6/3
2   Shaiful Abdullah Salauddin   3   321   8/81   1/27   2/53   0/--   11/3
3   Sanaullah Summon   2   199   3/75   1/84   1/--   0/--   5/2
4   Imran Rana Reza   2   211   5/73   1/58   0/--   0/--   6/2
5   Mamun Bithi Dipu   1   78   4/--   2/58   0/--   0/--   6/1
6   Farhad Muntasir Pavel   1   150   5/70   2/--   0/--   0/--   7/1
7   Marjan Aynun Gazi   0   0   0/--   0/--   0/--   0/--   0/0
                        
   Submitted/1st Yes/Total Yes         29/70/5   8/20/5   4/32/2   0/--/0   41/12




Mohammad Nazmul Haque
Lecturer, Dept. of CSE
Daffodil International University

14
IT Forum / Team Selection Contest for Daffodil Pre-ACM 2011
« on: October 20, 2011, 10:39:10 AM »
DAFFODIL INTERNATIONAL UNIVERSITY
102 Sukrabad, Mirpur Road, Dhaka-1207

Date: 20/10/2011

Team Selection Contest for
Daffodil Pre-ACM 2011


Dear Students,

Daffodil International University is organizing National Computer Programming Contest 2011 named Daffodil Pre-ACM 2011 to give a platform for the young talents to come together to prepare for upcoming ACM Dhaka Regional 2011.

A team selection Contest for DIU Students will be held on:

Date: 22/10/2011 (Saturday)
Time: 11:00 AM – 01:00 PM
Venue: Lab 202


Interested Students are requested to attend the team selection contest for get a chance to be the member of DIU Programming Contest Team.


Mohammad Nazmul Haque
Lecturer, Dept. of CSE
Daffodil International University

15
IT Forum / Re: Achievements of DIU Teams at SUST CSE Carnival 2011
« on: September 29, 2011, 01:26:49 PM »







Pages: [1] 2 3