ru
Feedback
Programming World👨‍💻

Programming World👨‍💻

Открыть в Telegram

All programming language tutorials,courses and more..! For HTML: @html_web_learn For CSS: @CSS_web_learn For JS: @JavaScript_js_learn For PHP: @learn_php_web For Programming courses @Programmingworld_dev For CEH,Cybersec: @technical_stark

Больше
1 412
Подписчики
Нет данных24 часа
-57 дней
-1330 день
Архив постов
Goldman Sachs Off Campus Recruitment Drive | BE/BTech/ME/MTech | 2020 & 2021 Batch | Across India Goldman Sachs off-campus initiative that aims to attract top Engineering talent across India to join the Engineering division at Goldman Sachs, Bengaluru. Selected candidates have the opportunity to secure a 2020 internship/fulltime offer. The Goldman Sachs Group, Inc., is an American multinational investment bank and financial services company headquartered in New York City. It offers services in investment management, securities, asset management, prime brokerage, and securities underwriting. Company Name : Goldman Sachs Company Website : www.goldmansachs.com Job Location : Across India Position : Analyst/ Interns Last Date To Apply: August 17, 2019 11:59 PM IST Eligibility Criteria : This program is open to all students across pre-final & final year of graduation and post-graduation, and is ideally suited to those with less than 12 months of work experience. We’re looking for students with high programming skills and analytical aptitude 2020 Analyst – graduation year of 2020 2020 Intern – graduation year of 2021 Graduation Year: 2020 Analyst: Graduation in 2020 (Full-time hire – May/June intake) 2020 Summer Internship: Graduation in 2021 (Intern hire April/July intake) Goldman Sachs Selection / Interview Process: Assessment: Complete the assessment within the test deadline/duration The test will have 4 sections that need to be answered in 2 hours; All sections are mandatory 1 submission per individual 120 minutes Structure: Section 1 – The coding section will have 2 programming questions (30 minutes) Section 2 – The Multiple Choice section will have 10 MCQs (30 minutes) Section 3 – The advanced section will have 1 program question (45 minutes) Section 4 – The subjective section will have 2 questions (15 minutes) Interview Shortlisting: Basis assessment scores and divisional criteria Results to be shared with shortlisted students in August/September Interviews: Shortlisted candidates will be informed via registered email ID 1 day Interview process (August/September). Date and venue will be communicated to shortlisted students Interview results/offers to be announced a few days after the interviews 2020 Analyst & 2020 Intern offer to be rolled out to the selected candidate(s) – via letter of intent Further communication from the Goldman Sachs team to selected students via registered email ID Registration Process Students to registers between July 29, 2019 to August 17, 2019 11:59PM IST Encourage you to share the email with students across all departments and other faculty/placement officers to maximize participation Post the Assessment, shortlisted students will be directly contacted via registered email ID for further information Selected students will be given a Goldman Sachs 2020 Intern of Analyst offer (subject to selection criteria and interview process) Online Assessment Date: August 18, 2019 | 11:00AM – 3:00PM IST How To Apply: Goldman Sachs Registration Process: Click on the Register button At My GS Events click to register as a new user Enter all your details and click on Submit* Once registered as a new user click on Register for Events Under “Place of Study,” select India Select and click on the Engineers Campus Hiring Program to register Enter details to the questions asked and click on ‘Submit’ to complete registration *While registering: If your college/university is not reflected in the selection choose “other” in the dropdown and mention your school’s name in the free text box Apply Link : Click Here https://www.goldmansachs.com/careers/students/programs/india/engineers-campus-hiring-program.html Sample online test https://www.hackerrank.com/tests/b3apmre7hf8/redirect

[100% off]Java Programming Bootcamp – Become Complete Java Developer(27 hour) Coupon Still Working https://tricksinfo.net/java-programming-bootcamp-become-complete-java-developer/

photo content

Hello Everyone , TNQT Results have been finalised. Select / Reject mails will start getting despatched from 5 onwards. It is a big list, please be patient. All mails will be sent by tonight.

30 Most Asked C Programming Interview Questions & Programs in Technical Interviews – Telegraph https://telegra.ph/30-Most-Asked-C-Programming-Interview-Questions--Programs-in-Technical-Interviews-08-08

os.doc0.61 KB

dbmss.doc0.71 KB

software testing.doc0.36 KB

c--.doc0.93 KB

c#.doc0.64 KB

java.doc0.46 KB

php.doc0.35 KB

data structure.doc0.33 KB

🚨All Programming Language basic interview questions that may ask!

Today INFYTQ questions
+3
Today INFYTQ questions

Infytq hands-on programs with solutions

programs.pdf4.36 KB

TCS slot3 Coding problem and solution

#include<stdio.h> #include<string.h> int htod(char *n){ int l=strlen(n)-1,sum=0,a=0,base=1; for(int i=l;i>=0;i--){ if(n[i]>='0' && n[i]<='9'){ a=n[i]-'0'; sum+=a*base; base=base*17; } else if(n[i]>='A' && n[i]<='G'){ a=n[i]-55; sum+=a*base; base=base*17; } } return sum; } int main(){ char s[4]; scanf("%s",s); int q=htod(s); printf("%d",q); }